blob: c3a5c3e88e527c6e303dbcc7f40ef09049ea0b16 [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/components.gni")
import("//build/host.gni")
import("//build/rust/rustc_binary.gni")
import("//build/rust/rustc_test.gni")
import("//build/sdk/sdk_host_tool.gni")
rustc_binary("cmc") {
name = "cmc"
with_unit_tests = true
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.component.decl:fuchsia.component.decl-rustc",
"//sdk/fidl/fuchsia.data:fuchsia.data-rustc",
"//src/lib/directed_graph",
"//src/lib/fidl/rust/fidl",
"//src/sys/lib/cm_json",
"//src/sys/lib/cm_rust",
"//src/sys/lib/cm_types",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:clap",
"//third_party/rust_crates:json5format",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:maplit",
"//third_party/rust_crates:regex",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:serde_json5",
"//third_party/rust_crates:strsim",
"//third_party/rust_crates:structopt",
"//third_party/rust_crates:tempfile",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:valico",
"//tools/lib/cml",
"//tools/lib/reference_doc",
# TODO: Obfuscated deps, move back to test_deps to re-obfuscate before uploading
"//third_party/rust_crates:assert_matches",
]
non_rust_deps = [ ":cmc_test_schemas" ]
test_deps = []
sources = [
"src/compile.rs",
"src/features.rs",
"src/format.rs",
"src/include.rs",
"src/main.rs",
"src/merge.rs",
"src/opts.rs",
"src/reference.rs",
"src/util.rs",
"src/validate.rs",
]
inputs = [
"test_block_dev.json",
"test_block_shell_feature.json",
]
}
sdk_host_tool("cmc_sdk") {
category = "partner"
output_name = "cmc"
deps = [ ":cmc" ]
}
source_set("cmc_test_schemas") {
inputs = [
"test_block_dev.json",
"test_block_shell_feature.json",
]
}
rustc_test("cmc_integration_test_bin") {
name = "cmc_integration_test"
edition = "2021"
source_root = "tests/integration_test.rs"
deps = [
"//sdk/fidl/fuchsia.component.decl:fuchsia.component.decl-rustc",
"//sdk/fidl/fuchsia.data:fuchsia.data-rustc",
"//sdk/fidl/fuchsia.io:fuchsia.io-rustc",
"//src/lib/fidl/rust/fidl",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
sources = [ "tests/integration_test.rs" ]
}
fuchsia_component_manifest("example_component_manifest") {
testonly = true
restricted_features = [
"dynamic_offers",
"allow_long_names",
]
component_name = "example"
manifest = "meta/example.cml"
}
fuchsia_component("example_component") {
cm_label = ":example_component_manifest"
deps = [ ":example_component_config_values" ]
testonly = true
check_references = false
}
fuchsia_unittest_package("cmc_integration_test") {
deps = [
":cmc_integration_test_bin",
":example_component",
]
}
install_host_tools("install") {
deps = [ ":cmc" ]
outputs = [ "cmc" ]
}
fuchsia_structured_config_values("example_component_config_values") {
testonly = true
cm_label = ":example_component_manifest"
values = {
my_flag = true
my_uint8 = 42
my_string = "test_string"
my_vector_of_string = [
"hello, world!",
"hello, again!",
]
}
}
group("tests") {
testonly = true
deps = [
":cmc_integration_test",
":cmc_test($host_toolchain)",
]
}