mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 22:04:26 +00:00
libbluetooth_audio_session must be version agnostic, and support both 2.0 and 2.1 bluetooth.audio vendor libraries Test: compilation Bug: 150670922 Change-Id: I6a4a10b37201da9a5fb289262530f9d9cd5041ac
24 lines
662 B
Plaintext
24 lines
662 B
Plaintext
cc_library_shared {
|
|
name: "libbluetooth_audio_session",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
srcs: [
|
|
"session/BluetoothAudioSession.cpp",
|
|
"session/BluetoothAudioSession_2_1.cpp",
|
|
"session/BluetoothAudioSupportedCodecsDB.cpp",
|
|
"session/BluetoothAudioSupportedCodecsDB_2_1.cpp",
|
|
],
|
|
export_include_dirs: ["session/"],
|
|
header_libs: ["libhardware_headers"],
|
|
shared_libs: [
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"libbase",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
}
|