Dan Willemsen | 154fce4 | 2018-11-16 23:15:45 -0800 | [diff] [blame] | 1 | // audio preprocessing wrapper |
| 2 | cc_library_shared { |
| 3 | name: "libaudiopreprocessing", |
| 4 | |
| 5 | vendor: true, |
| 6 | |
| 7 | relative_install_path: "soundfx", |
| 8 | |
| 9 | srcs: ["PreProcessing.cpp"], |
| 10 | |
Dan Willemsen | 154fce4 | 2018-11-16 23:15:45 -0800 | [diff] [blame] | 11 | shared_libs: [ |
| 12 | "libwebrtc_audio_preprocessing", |
| 13 | "libspeexresampler", |
| 14 | "libutils", |
| 15 | "liblog", |
| 16 | ], |
| 17 | |
| 18 | cflags: [ |
| 19 | "-DWEBRTC_POSIX", |
| 20 | "-fvisibility=hidden", |
| 21 | "-Wall", |
| 22 | "-Werror", |
| 23 | ], |
| 24 | |
| 25 | header_libs: [ |
| 26 | "libaudioeffects", |
| 27 | "libhardware_headers", |
| 28 | ], |
| 29 | } |