Bob Badour | b224b36 | 2021-02-12 20:13:01 -0800 | [diff] [blame] | 1 | package { |
| 2 | // See: http://go/android-license-faq |
| 3 | // A large-scale-change added 'default_applicable_licenses' to import |
| 4 | // all of the 'license_kinds' from "hardware_interfaces_license" |
| 5 | // to get the below license kinds: |
| 6 | // SPDX-license-identifier-Apache-2.0 |
| 7 | default_applicable_licenses: ["hardware_interfaces_license"], |
| 8 | } |
| 9 | |
Jakub Pawlowski | 964f323 | 2021-02-02 15:11:39 +0100 | [diff] [blame] | 10 | cc_library_shared { |
| 11 | name: "libbluetooth_audio_session", |
| 12 | defaults: ["hidl_defaults"], |
| 13 | vendor: true, |
| 14 | srcs: [ |
| 15 | "session/BluetoothAudioSession.cpp", |
Jakub Pawlowski | 3c8dc61 | 2021-02-03 20:43:20 +0100 | [diff] [blame] | 16 | "session/BluetoothAudioSession_2_1.cpp", |
Alice Kuo | 84e8767 | 2021-10-28 12:53:38 +0800 | [diff] [blame] | 17 | "session/BluetoothAudioSession_2_2.cpp", |
Jakub Pawlowski | 964f323 | 2021-02-02 15:11:39 +0100 | [diff] [blame] | 18 | "session/BluetoothAudioSupportedCodecsDB.cpp", |
Jakub Pawlowski | 3c8dc61 | 2021-02-03 20:43:20 +0100 | [diff] [blame] | 19 | "session/BluetoothAudioSupportedCodecsDB_2_1.cpp", |
Alice Kuo | 84e8767 | 2021-10-28 12:53:38 +0800 | [diff] [blame] | 20 | "session/BluetoothAudioSupportedCodecsDB_2_2.cpp", |
Jakub Pawlowski | 964f323 | 2021-02-02 15:11:39 +0100 | [diff] [blame] | 21 | ], |
| 22 | export_include_dirs: ["session/"], |
| 23 | header_libs: ["libhardware_headers"], |
| 24 | shared_libs: [ |
Jakub Pawlowski | 8d87eb7 | 2021-12-06 15:22:03 +0100 | [diff] [blame] | 25 | "android.hardware.audio.common@5.0", |
Jakub Pawlowski | 964f323 | 2021-02-02 15:11:39 +0100 | [diff] [blame] | 26 | "android.hardware.bluetooth.audio@2.0", |
Jakub Pawlowski | 3c8dc61 | 2021-02-03 20:43:20 +0100 | [diff] [blame] | 27 | "android.hardware.bluetooth.audio@2.1", |
Alice Kuo | 84e8767 | 2021-10-28 12:53:38 +0800 | [diff] [blame] | 28 | "android.hardware.bluetooth.audio@2.2", |
Jakub Pawlowski | 964f323 | 2021-02-02 15:11:39 +0100 | [diff] [blame] | 29 | "libbase", |
| 30 | "libcutils", |
| 31 | "libfmq", |
| 32 | "libhidlbase", |
| 33 | "liblog", |
| 34 | "libutils", |
| 35 | ], |
| 36 | } |