20bac52a5b
Test: manual Bug: 203490261 Change-Id: Ia299a61e89273ea1c9d132425598975418f57a03
61 lines
1.9 KiB
Text
61 lines
1.9 KiB
Text
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "hardware_interfaces_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["hardware_interfaces_license"],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libbluetooth_audio_session",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
srcs: [
|
|
"session/BluetoothAudioSession.cpp",
|
|
"session/BluetoothAudioSession_2_1.cpp",
|
|
"session/BluetoothAudioSession_2_2.cpp",
|
|
"session/BluetoothAudioSupportedCodecsDB.cpp",
|
|
"session/BluetoothAudioSupportedCodecsDB_2_1.cpp",
|
|
"session/BluetoothAudioSupportedCodecsDB_2_2.cpp",
|
|
],
|
|
export_include_dirs: ["session/"],
|
|
header_libs: ["libhardware_headers"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@5.0",
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"android.hardware.bluetooth.audio@2.2",
|
|
"libbase",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libutils",
|
|
"libbluetooth_audio_session_aidl",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "libbluetooth_audio_session_aidl",
|
|
vendor: true,
|
|
srcs: [
|
|
"aidl_session/BluetoothAudioCodecs.cpp",
|
|
"aidl_session/BluetoothAudioSession.cpp",
|
|
"aidl_session/HidlToAidlMiddleware.cpp",
|
|
],
|
|
export_include_dirs: ["aidl_session/"],
|
|
header_libs: ["libhardware_headers"],
|
|
shared_libs: [
|
|
"android.hardware.bluetooth.audio@2.0",
|
|
"android.hardware.bluetooth.audio@2.1",
|
|
"android.hardware.bluetooth.audio@2.2",
|
|
"libbase",
|
|
"libcutils",
|
|
"libbinder_ndk",
|
|
"libfmq",
|
|
"liblog",
|
|
"android.hardware.bluetooth.audio-V1-ndk",
|
|
"libhidlbase",
|
|
],
|
|
}
|