| # 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("//src/sys/build/components.gni") |
| |
| fuchsia_component("intl_wisdom_client") { |
| manifest = "meta/intl_wisdom_client.cmx" |
| deps = [ "client:intl_wisdom_client" ] |
| } |
| |
| fuchsia_component("intl_wisdom_server") { |
| manifest = "meta/intl_wisdom_server.cmx" |
| deps = [ "server:intl_wisdom_server" ] |
| } |
| |
| fuchsia_package("intl_wisdom") { |
| deps = [ |
| ":intl_wisdom_client", |
| ":intl_wisdom_resources", |
| ":intl_wisdom_server", |
| ] |
| } |
| |
| resource("intl_wisdom_resources") { |
| sources = [ "//third_party/icu/common/icudtl.dat" ] |
| outputs = [ "data/{{source_file_part}}" ] |
| } |
| |
| group("cpp") { |
| deps = [ ":intl_wisdom" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":cpp" ] |
| } |