blob: 16cd0adf13d00611953e92616c2b8f36d05b63e1 [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// audio preprocessing wrapper
2cc_library_shared {
3 name: "libaudiopreprocessing",
4
5 vendor: true,
6
7 relative_install_path: "soundfx",
8
9 srcs: ["PreProcessing.cpp"],
10
Dan Willemsen154fce42018-11-16 23:15:45 -080011 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}