blob: 87ba0f20390faa642cc7350b9f0e83c77ccf7d8d [file]
# 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") {
edition = "2024"
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",
"//src/lib/fuchsia-sync",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:assert_matches",
"//third_party/rust_crates:futures",
]
sources = [ "src/lib.rs" ]
configs += [ "//build/config/rust/lints:deny_unused_results" ]
}
fuchsia_unittest_package("test-harness-crate-tests") {
deps = [ ":tests_bin" ]
}