1package { 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 10cc_library_shared { 11 name: "libbluetooth_audio_session", 12 defaults: ["hidl_defaults"], 13 vendor: true, 14 srcs: [ 15 "session/BluetoothAudioSession.cpp", 16 "session/BluetoothAudioSession_2_1.cpp", 17 "session/BluetoothAudioSupportedCodecsDB.cpp", 18 "session/BluetoothAudioSupportedCodecsDB_2_1.cpp", 19 ], 20 export_include_dirs: ["session/"], 21 header_libs: ["libhardware_headers"], 22 shared_libs: [ 23 "android.hardware.bluetooth.audio@2.0", 24 "android.hardware.bluetooth.audio@2.1", 25 "libbase", 26 "libcutils", 27 "libfmq", 28 "libhidlbase", 29 "liblog", 30 "libutils", 31 ], 32} 33