blob: a6ba06e44ffddcb5d120581e839b4cc73cf316a2 [file] [log] [blame]
# Copyright 2017 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")
executable("bin") {
output_name = "bt-hci-tool"
sources = [
"commands.cc",
"commands.h",
"main.cc",
]
deps = [
"../lib",
"//sdk/lib/fdio",
"//src/connectivity/bluetooth/core/bt-host/common",
"//src/connectivity/bluetooth/core/bt-host/gap",
"//src/connectivity/bluetooth/core/bt-host/hci",
"//src/connectivity/bluetooth/core/bt-host/hci-spec",
"//src/connectivity/bluetooth/core/bt-host/transport",
"//zircon/system/ulib/fbl",
]
# TODO(https://fxbug.dev/58162): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
# TODO(fxbug.dev/95833): This target uses the deprecated C bindings.
# Consider switching to the C++ bindings. See linked bug for details.
configs += [ "//build/c:fidl-deprecated-c-bindings" ]
}
fuchsia_shell_package("bt-hci-tool") {
deps = [ ":bin" ]
}