blob: df82cc8c2d3ade6d635c1df07e9a6c2c1159e130 [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/package.gni")
source_set("lib") {
sources = [
"intl_wisdom_server_impl.cc",
"intl_wisdom_server_impl.h",
]
public_deps = [
"//garnet/examples/intl/fidl:wisdom",
"//garnet/public/lib/component/cpp",
"//third_party/icu:icu",
]
deps = [
"//garnet/public/lib/fidl/cpp",
"//garnet/public/lib/icu_data/cpp",
]
}
executable("intl_wisdom_server") {
sources = [
"main.cc",
]
deps = [
":lib",
"//zircon/public/lib/async-default",
"//zircon/public/lib/async-loop-cpp",
]
}