blob: 1b3ac1b128568f08d608dbc80d3b9564ffec1c0f [file] [log] [blame]
# Copyright 2018 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") {
output_name = "bt-hci-emulator"
with_unit_tests = true
deps = [
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/main.rs" ]
}
fuchsia_shell_package("bt-hci-emulator") {
deps = [ ":bin" ]
}