| # 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("bin") { |
| name = "wget-rs" |
| deps = [ |
| "//garnet/public/rust/fidl_crates/garnet_public_lib_fsl_fidl", |
| "//garnet/public/rust/fidl_crates/garnet_public_lib_netstack_fidl_net_address", |
| "//garnet/public/rust/fidl_crates/garnet_public_lib_network_fidl", |
| ] |
| } |
| |
| package("wget-rs") { |
| system_image = true |
| |
| deps = [ |
| ":bin", |
| ] |
| |
| binaries = [ { |
| name = "wget-rs" |
| } ] |
| } |