blob: 48b8f31c55932fc0b311bac6b65558aeb0f35d11 [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/rust/rustc_test.gni")
rustc_test("ethernet_tx_rx") {
edition = "2018"
deps = [
"//src/connectivity/wlan/lib/common/rust:wlan-common",
"//src/connectivity/wlan/testing/hw-sim:wlan-hw-sim",
"//src/lib/fuchsia-async",
"//src/lib/network/ethernet",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:pin-utils",
]
sources = [ "src/lib.rs" ]
}