blob: 3dfb7f391382af992a42491b83afdc24b6800658 [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-intel-tool"
sources = [
"command_channel.cc",
"command_channel.h",
"commands.cc",
"commands.h",
"intel_firmware_loader.cc",
"intel_firmware_loader.h",
"main.cc",
]
deps = [
"../lib",
"//sdk/fidl/fuchsia.hardware.bluetooth:fuchsia.hardware.bluetooth_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/fit",
"//sdk/lib/syslog/cpp",
"//src/connectivity/bluetooth/core/bt-host/common",
"//src/connectivity/bluetooth/core/bt-host/hci",
"//src/connectivity/bluetooth/core/bt-host/hci-spec",
"//src/connectivity/bluetooth/core/bt-host/transport",
"//src/lib/fxl:fxl_cli",
"//third_party/pigweed/backends/pw_log:printf",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
]
}
fuchsia_package("bt-intel-tool") {
deps = [ ":bin" ]
}