mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 10:05:19 +00:00
Since these were combined into libhidlbase. Bug: 135686713 Test: build only (libhwbinder/libhidltransport are empty) Change-Id: I075670b64eebbbbd6a6ae0e84ad51bf1c6f5ba36
94 lines
2.4 KiB
Plaintext
94 lines
2.4 KiB
Plaintext
cc_defaults {
|
|
name: "android.hardware.audio.effect-impl_default",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
srcs: [
|
|
"AcousticEchoCancelerEffect.cpp",
|
|
"AudioBufferManager.cpp",
|
|
"AutomaticGainControlEffect.cpp",
|
|
"BassBoostEffect.cpp",
|
|
"Conversions.cpp",
|
|
"DownmixEffect.cpp",
|
|
"Effect.cpp",
|
|
"EffectsFactory.cpp",
|
|
"EnvironmentalReverbEffect.cpp",
|
|
"EqualizerEffect.cpp",
|
|
"LoudnessEnhancerEffect.cpp",
|
|
"NoiseSuppressionEffect.cpp",
|
|
"PresetReverbEffect.cpp",
|
|
"VirtualizerEffect.cpp",
|
|
"VisualizerEffect.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libeffects",
|
|
"libfmq",
|
|
"libhidlbase",
|
|
"libhidlmemory",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.audio.common-util",
|
|
"android.hidl.memory@1.0",
|
|
],
|
|
|
|
header_libs: [
|
|
"android.hardware.audio.common.util@all-versions",
|
|
"libaudio_system_headers",
|
|
"libaudioclient_headers",
|
|
"libeffects_headers",
|
|
"libhardware_headers",
|
|
"libmedia_headers",
|
|
],
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@2.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.audio.common@2.0-util",
|
|
"android.hardware.audio.effect@2.0",
|
|
],
|
|
|
|
cflags: [
|
|
"-DMAJOR_VERSION=2",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
]
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@4.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@4.0",
|
|
"android.hardware.audio.common@4.0-util",
|
|
"android.hardware.audio.effect@4.0",
|
|
],
|
|
|
|
cflags: [
|
|
"-DMAJOR_VERSION=4",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
]
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.audio.effect@5.0-impl",
|
|
defaults: ["android.hardware.audio.effect-impl_default"],
|
|
shared_libs: [
|
|
"android.hardware.audio.common@5.0",
|
|
"android.hardware.audio.common@5.0-util",
|
|
"android.hardware.audio.effect@5.0",
|
|
],
|
|
|
|
cflags: [
|
|
"-DMAJOR_VERSION=5",
|
|
"-DMINOR_VERSION=0",
|
|
"-include common/all-versions/VersionMacro.h",
|
|
]
|
|
}
|