blob: bfc9bf10b3bb1fb53ee5e16b76e5f22ff576a509 [file] [log] [blame]
# Copyright 2020 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_binary.gni")
rustc_binary("bin") {
name = "time_test_client"
edition = "2018"
deps = [
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-runtime",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:chrono",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:tracing",
]
sources = [ "src/main.rs" ]
}
fuchsia_component("component") {
component_name = "time_test_client"
manifest = "meta/time_test_client.cml"
deps = [ ":bin" ]
}
fuchsia_package("time_test_client") {
package_name = "time-test-client"
deps = [ ":component" ]
}