Dan Willemsen | 154fce4 | 2018-11-16 23:15:45 -0800 | [diff] [blame^] | 1 | // Multichannel downmix effect library |
2 | cc_library_shared { | ||||
3 | name: "libdownmix", | ||||
4 | |||||
5 | vendor: true, | ||||
6 | srcs: ["EffectDownmix.c"], | ||||
7 | |||||
8 | shared_libs: [ | ||||
9 | "libcutils", | ||||
10 | "liblog", | ||||
11 | ], | ||||
12 | |||||
13 | relative_install_path: "soundfx", | ||||
14 | |||||
15 | cflags: [ | ||||
16 | //"-DBUILD_FLOAT", | ||||
17 | "-fvisibility=hidden", | ||||
18 | "-Wall", | ||||
19 | "-Werror", | ||||
20 | ], | ||||
21 | |||||
22 | header_libs: [ | ||||
23 | "libaudioeffects", | ||||
24 | "libhardware_headers", | ||||
25 | ], | ||||
26 | static_libs: ["libaudioutils" ], | ||||
27 | } |