blob: e7e0363c94143a02dc0665fbf749963642964a22 [file] [log] [blame]
# Copyright 2017 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/rust_binary.gni")
import("//build/package.gni")
rust_binary("echo_client_rust_bin") {
name = "echo_client_rust"
deps = [
"//garnet/public/rust/fidl_crates/garnet_examples_fidl_services",
]
}
package("echo_client_rust") {
system_image = true
deps = [
":echo_client_rust_bin",
]
binaries = [ {
name = "echo_client_rust"
} ]
}