blob: 7b1464b82137ad5f96865b2cb95c6bb9693bf610 [file] [log] [blame]
# Copyright 2020 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")
import("//src/sys/build/fuchsia_unittest_package.gni")
group("tests") {
testonly = true
deps = [ ":network-speed-test-test" ]
}
rustc_test("test") {
name = "network_speed_test_test"
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.net.http:fuchsia.net.http-rustc",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("network-speed-test-test") {
deps = [
":test",
"//src/connectivity/network/tools/network-speed-test:component",
]
manifest = "meta/network_speed_test_test.cmx"
}