1cc_library_shared { 2 name: "android.hardware.bluetooth.audio@2.0-impl", 3 defaults: ["hidl_defaults"], 4 vendor: true, 5 relative_install_path: "hw", 6 srcs: [ 7 "BluetoothAudioProvidersFactory.cpp", 8 "BluetoothAudioProvider.cpp", 9 "A2dpOffloadAudioProvider.cpp", 10 "A2dpSoftwareAudioProvider.cpp", 11 "HearingAidAudioProvider.cpp", 12 ], 13 header_libs: ["libhardware_headers"], 14 shared_libs: [ 15 "android.hardware.audio.common@5.0", 16 "android.hardware.bluetooth.audio@2.0", 17 "libbase", 18 "libbluetooth_audio_session", 19 "libcutils", 20 "libfmq", 21 "libhidlbase", 22 "liblog", 23 "libutils", 24 ], 25} 26 27cc_library_shared { 28 name: "libbluetooth_audio_session", 29 defaults: ["hidl_defaults"], 30 vendor: true, 31 srcs: [ 32 "session/BluetoothAudioSession.cpp", 33 "session/BluetoothAudioSupportedCodecsDB.cpp", 34 ], 35 export_include_dirs: ["session/"], 36 header_libs: ["libhardware_headers"], 37 shared_libs: [ 38 "android.hardware.bluetooth.audio@2.0", 39 "libbase", 40 "libcutils", 41 "libfmq", 42 "libhidlbase", 43 "liblog", 44 "libutils", 45 ], 46} 47