blob: 32f5fd00dd0ca5c66ce41597e32386455de5330a [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_client.cc",
"intl_wisdom_client.h",
]
public_deps = [
"//garnet/examples/intl/wisdom/fidl:wisdom",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//third_party/icu:icu",
]
}
executable("intl_wisdom_client") {
output_name = "intl_wisdom_client"
sources = [
"main.cc",
]
deps = [
":lib",
"//garnet/examples/intl/wisdom/fidl:wisdom",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//src/lib/fxl",
"//src/lib/icu_data/cpp",
"//third_party/icu:icu",
"//zircon/public/lib/async-default",
"//zircon/public/lib/async-loop-cpp",
]
}