blob: addeba8cc3adb8008040f2a1ab80e6a19b97c40f [file] [log] [blame]
# Copyright 2022 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("bt_inspect_integration_tests") {
source_root = "src/lib.rs"
deps = [
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//src/connectivity/bluetooth/testing/bt-test-harness",
"//src/connectivity/bluetooth/testing/test-harness",
"//src/lib/diagnostics/reader/rust",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust:allow_unused_results" ]
}
fuchsia_test_component("bt-inspect-integration-tests-component") {
manifest = "meta/bt-inspect-integration-tests.cml"
deps = [ ":bt_inspect_integration_tests" ]
}
fuchsia_test_package("bt-inspect-integration-tests") {
test_components = [ ":bt-inspect-integration-tests-component" ]
}