blob: 53a4d99108b93c3af27888016948f4e536442068 [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_binary.gni")
rustc_binary("bin") {
edition = "2021"
output_name = "bt-fct-hci"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.hardware.bluetooth:fuchsia.hardware.bluetooth_rust",
"//src/connectivity/bluetooth/lib/packet-encoding",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:hex",
"//third_party/rust_crates:thiserror",
]
test_deps = [ "//src/connectivity/bluetooth/lib/bt-fidl-mocks" ]
sources = [
"src/hci.rs",
"src/main.rs",
"src/types.rs",
]
configs -= [ "//build/config/rust/lints:allow_unused_results" ]
}
fuchsia_package_with_single_component("bt-fct-hci") {
manifest = "meta/bt-fct-hci.cml"
deps = [ ":bin" ]
}
fuchsia_unittest_package("bt-fct-hci-unittests") {
deps = [ ":bin_test" ]
}
group("tests") {
testonly = true
deps = [ ":bt-fct-hci-unittests" ]
}