blob: 140c6c52480108056d90293699fb898069d48b64 [file]
# 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")
if (is_host) {
rustc_library("ffx_daemon_service_echo") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.developer.bridge:fuchsia.developer.bridge-rustc",
"//src/developer/ffx/lib/services:lib",
"//src/lib/fuchsia-async",
"//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_service_echo_test($host_toolchain)" ]
}