blob: 53ced642cefb30df03fc98693d25a721551e0acf [file] [log] [blame]
# Copyright 2019 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/package.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("virtio_net_test_util") {
name = "virtio_net_test_util"
edition = "2018"
deps = [
"//src/lib/fuchsia-async",
"//src/lib/network/ethernet",
"//src/lib/network/fidl_fuchsia_hardware_ethernet_ext",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:structopt",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/main.rs" ]
}