You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

package {
// http://go/android-license-faq
// A large-scale-change added 'default_applicable_licenses' to import
// the below license kinds from "packages_apps_Test_connectivity_license":
// SPDX-license-identifier-Apache-2.0
// SPDX-license-identifier-BSD
// SPDX-license-identifier-MIT
default_applicable_licenses: ["packages_apps_Test_connectivity_license"],
}
cc_binary {
name: "sl4n",
header_libs: [
"libbluetooth_headers",
],
include_dirs: [
"system/bt",
],
local_include_dirs: [
"rapidjson/include",
"facades",
],
srcs: [
"facades/bluetooth/bt_binder_facade.cpp",
"facades/test/test_facade.cpp",
"main.cpp",
"utils/command_receiver.cpp",
"utils/common_utils.cpp",
],
shared_libs: [
"libbinder",
"libchrome",
"libcutils",
"libutils",
"libwifi-system",
"liblog",
],
static_libs: [
"libbtcore",
"libosi",
"libnl",
"libbluetooth-binder-common",
"libbluetooth-types",
],
cflags: [
"-Wall",
"-Werror",
"-Wno-unused-parameter",
"-Wno-missing-field-initializers",
"-Wno-expansion-to-defined",
],
}