blob: 8826b454fdf95596712565ab0e00c3ba1debf517 [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("bt_bonding_integration_tests") {
source_root = "src/lib.rs"
deps = [
"//sdk/fidl/fuchsia.bluetooth.sys:fuchsia.bluetooth.sys-rustc",
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//src/connectivity/bluetooth/testing/bt-test-harness",
"//src/connectivity/bluetooth/testing/test-harness",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust:allow_unused_results" ]
}
fuchsia_test_component("bt-bonding-integration-tests-component") {
manifest = "meta/bt-bonding-integration-tests.cmx"
deps = [ ":bt_bonding_integration_tests" ]
}
fuchsia_test_package("bt-bonding-integration-tests") {
test_components = [ ":bt-bonding-integration-tests-component" ]
deps = [ "//src/connectivity/bluetooth/hci/emulator" ]
}