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.
384 lines
10 KiB
384 lines
10 KiB
// Common variables
|
|
// ========================================================
|
|
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "system_bt_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["system_bt_license"],
|
|
}
|
|
|
|
btifCommonIncludes = [
|
|
"system/bt",
|
|
"system/bt/bta/include",
|
|
"system/bt/bta/sys",
|
|
"system/bt/bta/dm",
|
|
"system/bt/btcore/include",
|
|
"system/bt/device/include",
|
|
"system/bt/internal_include",
|
|
"system/bt/stack/include",
|
|
"system/bt/stack/l2cap",
|
|
"system/bt/stack/a2dp",
|
|
"system/bt/stack/btm",
|
|
"system/bt/stack/avdt",
|
|
"system/bt/udrv/include",
|
|
"system/bt/btif/avrcp",
|
|
"system/bt/btif/include",
|
|
"system/bt/btif/co",
|
|
"system/bt/hci/include",
|
|
"system/bt/vnd/include",
|
|
"system/bt/embdrv/sbc/encoder/include",
|
|
"system/bt/embdrv/sbc/decoder/include",
|
|
"system/bt/utils/include",
|
|
"system/bt/include",
|
|
"system/libhwbinder/include",
|
|
]
|
|
|
|
// libbtif static library for target
|
|
// ========================================================
|
|
cc_library_static {
|
|
name: "libbtif",
|
|
defaults: ["fluoride_defaults"],
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
// AVRCP Target Service
|
|
"avrcp/avrcp_service.cc",
|
|
// Callouts
|
|
"co/bta_dm_co.cc",
|
|
"co/bta_av_co.cc",
|
|
"co/bta_hh_co.cc",
|
|
"co/bta_pan_co.cc",
|
|
"co/bta_gatts_co.cc",
|
|
// HAL layer
|
|
"src/bluetooth.cc",
|
|
// BTIF implementation
|
|
"src/btif_a2dp.cc",
|
|
"src/btif_a2dp_audio_interface.cc",
|
|
"src/btif_a2dp_control.cc",
|
|
"src/btif_a2dp_sink.cc",
|
|
"src/btif_a2dp_source.cc",
|
|
"src/btif_activity_attribution.cc",
|
|
"src/btif_av.cc",
|
|
"src/btif_ble_advertiser.cc",
|
|
"src/btif_ble_scanner.cc",
|
|
"src/btif_bqr.cc",
|
|
"src/btif_config.cc",
|
|
"src/btif_config_cache.cc",
|
|
"src/btif_config_transcode.cc",
|
|
"src/btif_core.cc",
|
|
"src/btif_debug.cc",
|
|
"src/btif_debug_btsnoop.cc",
|
|
"src/btif_debug_conn.cc",
|
|
"src/btif_dm.cc",
|
|
"src/btif_gatt.cc",
|
|
"src/btif_gatt_client.cc",
|
|
"src/btif_gatt_server.cc",
|
|
"src/btif_gatt_test.cc",
|
|
"src/btif_gatt_util.cc",
|
|
"src/btif_vc.cc",
|
|
"src/btif_hearing_aid.cc",
|
|
"src/btif_hf.cc",
|
|
"src/btif_hf_client.cc",
|
|
"src/btif_hh.cc",
|
|
"src/btif_hd.cc",
|
|
"src/btif_le_audio.cc",
|
|
"src/btif_metrics_logging.cc",
|
|
"src/btif_pan.cc",
|
|
"src/btif_profile_queue.cc",
|
|
"src/btif_rc.cc",
|
|
"src/btif_sdp.cc",
|
|
"src/btif_sdp_server.cc",
|
|
"src/btif_sock.cc",
|
|
"src/btif_sock_rfc.cc",
|
|
"src/btif_sock_l2cap.cc",
|
|
"src/btif_sock_sco.cc",
|
|
"src/btif_sock_sdp.cc",
|
|
"src/btif_sock_thread.cc",
|
|
"src/btif_sock_util.cc",
|
|
"src/btif_storage.cc",
|
|
"src/btif_uid.cc",
|
|
"src/btif_util.cc",
|
|
"src/btif_keystore.cc",
|
|
"src/stack_manager.cc",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.bluetooth.a2dp@1.0",
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"libcrypto",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libtinyxml2",
|
|
"libutils",
|
|
"libz",
|
|
],
|
|
target: {
|
|
android: {
|
|
shared_libs: [
|
|
"libaaudio",
|
|
"libfmq",
|
|
],
|
|
srcs: ["src/btif_avrcp_audio_track.cc"],
|
|
},
|
|
host: {
|
|
srcs: ["src/btif_avrcp_audio_track_linux.cc"],
|
|
},
|
|
},
|
|
whole_static_libs: [
|
|
"avrcp-target-service",
|
|
"lib-bt-packets",
|
|
"libbt-audio-hal-interface",
|
|
"libaudio-a2dp-hw-utils",
|
|
],
|
|
cflags: [
|
|
"-DBUILDCFG",
|
|
],
|
|
host_supported: true,
|
|
}
|
|
|
|
// btif unit tests for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif",
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
"test/btif_storage_test.cc",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"libaaudio",
|
|
"android.hardware.bluetooth@1.0",
|
|
"android.hardware.bluetooth@1.1",
|
|
"android.hardware.bluetooth.a2dp@1.0",
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"android.system.suspend.control-V1-ndk",
|
|
"libbinder_ndk",
|
|
"libfmq",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libprotobuf-cpp-lite",
|
|
"libcutils",
|
|
"libprocessgroup",
|
|
"libutils",
|
|
"libcrypto",
|
|
],
|
|
static_libs: [
|
|
"libbt-bta",
|
|
"libbtcore",
|
|
"libbt-common",
|
|
"libbt-stack",
|
|
"libbt-sbc-decoder",
|
|
"libbt-sbc-encoder",
|
|
"libbt-utils",
|
|
"libFraunhoferAAC",
|
|
"libg722codec",
|
|
"libbtdevice",
|
|
"libbt-hci",
|
|
"libudrv-uipc",
|
|
"libbluetooth-types",
|
|
"libosi",
|
|
"libbt-protos-lite",
|
|
],
|
|
whole_static_libs: [
|
|
"libbtif",
|
|
"libbluetooth-for-tests",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
sanitize: {
|
|
integer_overflow: true,
|
|
},
|
|
}
|
|
|
|
// btif profile queue unit tests for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif_profile_queue",
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
"src/btif_profile_queue.cc",
|
|
"test/btif_profile_queue_test.cc",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
],
|
|
static_libs: [
|
|
"libbluetooth-types",
|
|
"libosi",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
}
|
|
|
|
// btif rc unit tests for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif_rc",
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
host_supported: true,
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
"test/btif_rc_test.cc",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"libcrypto",
|
|
"libcutils",
|
|
"liblog",
|
|
"libprotobuf-cpp-lite",
|
|
],
|
|
static_libs: [
|
|
"libbluetooth-types",
|
|
"libbt-common",
|
|
"libbt-protos-lite",
|
|
"libosi",
|
|
"libosi-AllocationTestHarness",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
sanitize: {
|
|
address: true,
|
|
cfi: true,
|
|
misc_undefined: ["bounds"],
|
|
},
|
|
}
|
|
|
|
// btif config cache unit tests for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif_config_cache",
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
host_supported: true,
|
|
test_options: {
|
|
unit_test: true,
|
|
},
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
"src/btif_config_cache.cc",
|
|
"test/btif_config_cache_test.cc",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"liblog",
|
|
"libcutils",
|
|
],
|
|
static_libs: [
|
|
"libbluetooth-types",
|
|
"libosi",
|
|
"libgmock",
|
|
"libc++fs",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
}
|
|
|
|
// btif hf client service tests for target
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif_hf_client_service",
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
include_dirs: btifCommonIncludes,
|
|
srcs: [
|
|
"test/btif_hf_client_service_test.cc",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"libcutils",
|
|
"liblog",
|
|
],
|
|
static_libs: [
|
|
"libbluetooth-types",
|
|
"libosi",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
}
|
|
|
|
// Cycle stack test
|
|
// ========================================================
|
|
cc_test {
|
|
name: "net_test_btif_stack",
|
|
host_supported: true,
|
|
defaults: ["fluoride_defaults"],
|
|
test_suites: ["device-tests"],
|
|
include_dirs: [
|
|
"frameworks/av/media/libaaudio/include",
|
|
"system/bt",
|
|
"system/bt/bta/dm",
|
|
"system/bt/bta/include",
|
|
"system/bt/bta/sys",
|
|
"system/bt/btif/avrcp",
|
|
"system/bt/btif/co",
|
|
"system/bt/btif/include",
|
|
"system/bt/device/include",
|
|
"system/bt/embdrv/sbc/decoder/include",
|
|
"system/bt/embdrv/sbc/encoder/include",
|
|
"system/bt/gd",
|
|
"system/bt/hci/include",
|
|
"system/bt/include",
|
|
"system/bt/internal_include",
|
|
"system/bt/stack/a2dp",
|
|
"system/bt/stack/avdt",
|
|
"system/bt/stack/btm",
|
|
"system/bt/stack/include",
|
|
"system/bt/stack/l2cap",
|
|
"system/bt/udrv/include",
|
|
"system/bt/utils/include",
|
|
"system/bt/vnd/include",
|
|
"system/libfmq/include",
|
|
"system/libhwbinder/include",
|
|
],
|
|
srcs: [
|
|
":LibBluetoothSources",
|
|
":TestMockAndroidHardware",
|
|
":TestMockBta",
|
|
":TestMockBtcore",
|
|
":TestMockCommon",
|
|
":TestMockFrameworks",
|
|
":TestMockHci",
|
|
":TestMockMainShim",
|
|
":TestMockStack",
|
|
":TestMockSystemLibfmq",
|
|
":TestMockUdrv",
|
|
"test/btif_stack_test.cc",
|
|
],
|
|
generated_headers: [
|
|
"BluetoothGeneratedBundlerSchema_h_bfbs",
|
|
"BluetoothGeneratedDumpsysDataSchema_h",
|
|
"BluetoothGeneratedDumpsysTestData_h",
|
|
"BluetoothGeneratedPackets_h",
|
|
],
|
|
header_libs: ["libbluetooth_headers"],
|
|
shared_libs: [
|
|
"android.hardware.bluetooth.a2dp@1.0",
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"libcrypto",
|
|
"libcutils",
|
|
"libflatbuffers-cpp",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libtinyxml2",
|
|
],
|
|
whole_static_libs: [
|
|
"libbtif",
|
|
],
|
|
static_libs: [
|
|
"libbluetooth-types",
|
|
"libbtdevice",
|
|
"libgmock",
|
|
"libosi",
|
|
],
|
|
cflags: ["-DBUILDCFG"],
|
|
}
|