blob: 2a2f36e5bad959492fa6b5844e6ef1612f438d1a [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// Multichannel downmix effect library
2cc_library_shared {
3 name: "libdownmix",
4
5 vendor: true,
6 srcs: ["EffectDownmix.c"],
7
8 shared_libs: [
Inseob Kim77dbeee2020-05-29 18:04:45 +05309 "libaudioutils",
Dan Willemsen154fce42018-11-16 23:15:45 -080010 "libcutils",
11 "liblog",
12 ],
13
14 relative_install_path: "soundfx",
15
16 cflags: [
Andy Hunged1172f2018-12-21 16:20:03 -080017 "-DBUILD_FLOAT",
Dan Willemsen154fce42018-11-16 23:15:45 -080018 "-fvisibility=hidden",
19 "-Wall",
20 "-Werror",
21 ],
22
23 header_libs: [
24 "libaudioeffects",
25 "libhardware_headers",
26 ],
Dan Willemsen154fce42018-11-16 23:15:45 -080027}