mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 06:22:53 +00:00
* Remove unused variables, lambda function parameters.. Bug: 66996870 Test: build with WITH_TIDY=1 Change-Id: I28e8eb1af434f62cab6f41285b9a400f7f57cd13
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
cc_library_shared {
|
|
name: "android.hardware.audio.effect@2.0-impl",
|
|
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",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.audio.common@2.0",
|
|
"android.hardware.audio.common@2.0-util",
|
|
"android.hardware.audio.effect@2.0",
|
|
"android.hidl.memory@1.0",
|
|
],
|
|
|
|
header_libs: [
|
|
"libaudio_system_headers",
|
|
"libaudioclient_headers",
|
|
"libeffects_headers",
|
|
"libhardware_headers",
|
|
"libmedia_headers",
|
|
],
|
|
}
|