mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
When just microphone is enabled, i.e. for recording audio, we will receive just sink metadata update. Bug: 150670922 Change-Id: I795385d19e64ec5c6bc0a8549beda52da27d25a1
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
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",
|
|
],
|
|
}
|