| # Copyright 2022 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") |
| |
| group("config") { |
| deps = [ |
| ":config_example", |
| ":config_example_with_json_values", |
| ] |
| } |
| |
| group("tests") { |
| testonly = true |
| deps = [ "integration_test" ] |
| } |
| |
| fuchsia_package("config_example") { |
| deps = [ |
| "cpp", |
| "rust", |
| ] |
| } |
| |
| fuchsia_package("config_example_with_json_values") { |
| deps = [ |
| "cpp:cpp_with_json_values", |
| "rust:rust_with_json_values", |
| ] |
| } |