blob: df1c0904a6f546684f1bf97c56efd1b2856309a1 [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/rust/rustc_library.gni")
rustc_library("fidl-fuchsia-amber-ext") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:hex",
"//third_party/rust_crates:serde",
]
test_deps = [
"//third_party/rust_crates:proptest",
"//third_party/rust_crates:proptest-derive",
"//third_party/rust_crates:serde_json",
]
sources = [
"src/lib.rs",
"src/types.rs",
]
}
fuchsia_unittest_package("fidl-fuchsia-amber-ext-tests") {
deps = [ ":fidl-fuchsia-amber-ext_test" ]
}
group("tests") {
testonly = true
public_deps = [ ":fidl-fuchsia-amber-ext-tests" ]
}