blob: bcef8aa614258c0c2b327d015410a97a4af4e5d9 [file] [log] [blame] [edit]
# Copyright 2021 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")
assert(is_host,
"ffx_daemon_protocol_testing is for use with the host toolchain only")
rustc_library("ffx_daemon_protocol_testing") {
version = "0.1.0"
edition = "2024"
with_unit_tests = true
deps = [
"//src/developer/ffx/fidl:fuchsia.developer.ffx_rust",
"//src/developer/ffx/lib/protocols:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:async-trait",
"//third_party/rust_crates:log",
]
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
deps = [ ":ffx_daemon_protocol_testing_test" ]
}