420f583758
This is needed because libaudiohal.so can only interact with one HAL version at a time (loading only one of the libaudiohal@version.so implementations), so only the interface that matches the stock HAL version will be used. libaudiohal decides which version to use by looking through the interfaces whose variant is `default` and picking the highest versioned one, so our hal will not interfere in the process (because we use `sysbta` as our variant).
140 lines
3.9 KiB
Plaintext
140 lines
3.9 KiB
Plaintext
cc_defaults {
|
|
name: "android.hardware.audio-impl-system_default",
|
|
relative_install_path: "hw",
|
|
srcs: [
|
|
"Device.cpp",
|
|
"DevicesFactory.cpp",
|
|
"ParametersUtil.cpp",
|
|
"PrimaryDevice.cpp",
|
|
"Stream.cpp",
|
|
"StreamIn.cpp",
|
|
"StreamOut.cpp",
|
|
"service.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libmedia_helper",
|
|
"libmediautils_vendor",
|
|
"libmemunreachable",
|
|
"libutils",
|
|
"android.hardware.audio.common-util",
|
|
],
|
|
static_libs: [
|
|
"libaudiofoundation",
|
|
],
|
|
header_libs: [
|
|
"android.hardware.audio.common.util@all-versions",
|
|
"libaudioutils_headers",
|
|
"libaudio_system_headers",
|
|
"libmedia_headers",
|
|
"libmediautils_headers",
|
|
"libhardware_headers",
|
|
]
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@2.0-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@2.0",
|
|
"android.hardware.audio@2.0-util",
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.audio.common@2.0-util",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=2",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@4.0-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@4.0",
|
|
"android.hardware.audio@4.0-util",
|
|
"android.hardware.audio.common@4.0",
|
|
"android.hardware.audio.common@4.0-util",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=4",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@5.0-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@5.0",
|
|
"android.hardware.audio@5.0-util",
|
|
"android.hardware.audio.common@5.0",
|
|
"android.hardware.audio.common@5.0-util",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=5",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@6.0-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@6.0",
|
|
"android.hardware.audio@6.0-util",
|
|
"android.hardware.audio.common@6.0",
|
|
"android.hardware.audio.common@6.0-util",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=6",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@7.0-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@7.0",
|
|
"android.hardware.audio@7.0-util",
|
|
"android.hardware.audio.common@7.0",
|
|
"android.hardware.audio.common@7.0-enums",
|
|
"android.hardware.audio.common@7.0-util",
|
|
"libbase",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=7",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio@7.1-impl-system",
|
|
defaults: ["android.hardware.audio-impl-system_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio@7.0",
|
|
"android.hardware.audio@7.1",
|
|
"android.hardware.audio@7.1-util",
|
|
"android.hardware.audio.common@7.0",
|
|
"android.hardware.audio.common@7.1-enums",
|
|
"android.hardware.audio.common@7.1-util",
|
|
"libbase",
|
|
],
|
|
cflags: [
|
|
"-DMAJOR_VERSION=7",
|
|
"-DMINOR_VERSION=1",
|
|
"-DCOMMON_TYPES_MINOR_VERSION=0",
|
|
"-DCORE_TYPES_MINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
],
|
|
}
|