| # 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/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_server", |
| "//src/intl:icudtl", |
| ] |
| } |
| |
| group("cpp") { |
| deps = [ ":intl_wisdom" ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":cpp" ] |
| } |