blob: d49fd5dedbc86e2260fc2572316e7b3d61b42a82 [file]
# Copyright 2019 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/rust/rustc_library.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
source_set("cm_schema_json") {
inputs = [
"cml_schema.json",
"cmx_schema.json",
]
}
rustc_library("cm_json") {
with_unit_tests = true
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.io2:fuchsia.io2-rustc",
"//src/sys/lib/cm_types",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:json5",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:url",
]
non_rust_deps = [ ":cm_schema_json" ]
test_deps = [ "//third_party/rust_crates:matches" ]
}
test_package("cm_json_tests") {
deps = [ ":cm_json_test" ]
tests = [
{
name = "cm_json_lib_test"
dest = "cm_json_tests"
environments = basic_envs
},
]
}
group("tests") {
testonly = true
deps = [ ":cm_json_tests" ]
}