blob: cbf23dce46457270d1dc3b87409213c6383f65fb [file] [log] [blame]
Josh Wu6ab53e72021-12-29 23:53:33 -08001package {
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 {
Josh Wua2784072022-01-25 01:41:53 -080011 name: "android.hardware.bluetooth.audio-impl",
Josh Wu6ab53e72021-12-29 23:53:33 -080012 vendor: true,
13 vintf_fragments: ["bluetooth_audio.xml"],
14 srcs: [
15 "BluetoothAudioProvider.cpp",
16 "BluetoothAudioProviderFactory.cpp",
17 "A2dpOffloadAudioProvider.cpp",
18 "A2dpSoftwareAudioProvider.cpp",
19 "HearingAidAudioProvider.cpp",
20 "LeAudioOffloadAudioProvider.cpp",
21 "LeAudioSoftwareAudioProvider.cpp",
Josh Wu8cdc37e2022-01-18 02:08:53 -080022 "service.cpp",
Josh Wu6ab53e72021-12-29 23:53:33 -080023 ],
24 export_include_dirs: ["."],
25 header_libs: ["libhardware_headers"],
26 shared_libs: [
27 "libbase",
28 "libbinder_ndk",
29 "libcutils",
30 "libfmq",
31 "liblog",
Omer Osmana2587da2022-05-01 03:54:11 +000032 "android.hardware.bluetooth.audio-V2-ndk",
Josh Wu6ab53e72021-12-29 23:53:33 -080033 "libbluetooth_audio_session_aidl",
34 ],
35}