blob: 0b7b5daff3cb8c8cbf5f6b512ee4cd2643974c9f [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/components.gni")
import("//build/rust/rustc_test.gni")
rustc_test("tests_bin") {
output_name = "test_harness_crate_tests"
source_root = "src/lib.rs"
deps = [
"//src/connectivity/bluetooth/testing/test-harness",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:assert_matches",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:parking_lot",
]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust:allow_unused_results" ]
}
fuchsia_unittest_package("test-harness-crate-tests") {
deps = [ ":tests_bin" ]
}