blob: 5442ce232b5d18e65b18ab60ba3b382dad5db250 [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/components.gni")
rustc_test("bt_bonding_integration_tests") {
edition = "2018"
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" ]
}
fuchsia_component("bt-bonding-integration-tests-component") {
testonly = true
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" ]
}