blob: c7dae72a69f9e8fe38512451f69952abb7feb42c [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/rust/rustc_library.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
rustc_library("fidl_fuchsia_amber_ext") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.amber:fuchsia.amber-rustc",
"//src/sys/lib/fuchsia_url:fuchsia_url",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:hex",
"//third_party/rust_crates:proptest",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_derive",
"//third_party/rust_crates:serde_json",
]
}
test_package("fidl_fuchsia_amber_ext_tests") {
deps = [
":fidl_fuchsia_amber_ext",
]
tests = [
{
name = "fidl_fuchsia_amber_ext_lib_test"
dest = "fidl_fuchsia_amber_ext_tests"
environments = basic_envs
},
]
}