blob: 3df5ecfd79cffca4420baf151e638d70ab67d906 [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/package.gni")
import("//build/rust/rustc_test.gni")
import("//build/test/test_package.gni")
import("//build/testing/platforms.gni")
rustc_test("bin") {
name = "kms_test_client"
edition = "2018"
source_root = "src/main.rs"
deps = [
"//sdk/fidl/fuchsia.kms:fuchsia.kms-rustc",
"//sdk/fidl/fuchsia.mem:fuchsia.mem-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/mundane:mundane",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:thiserror",
]
}
test_package("kms_test_client_pkg") {
deps = [ ":bin" ]
tests = [
{
name = "kms_test_client"
},
]
}