blob: 04385831c015135e0c945f97f0aadc16922c564f [file] [log] [blame]
# Copyright 2022 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("echo_client_testing") {
edition = "2021"
deps = [
"//examples/components/routing/fidl:echo-rustc",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:tracing",
]
sources = [ "src/main.rs" ]
}
fuchsia_component("echo_client") {
component_name = "echo_client"
manifest = "meta/echo_client.cml"
deps = [ ":echo_client_testing" ]
}