blob: 5a13af6d0f1c4d021501ef1f144d501980c5d2ef [file] [log] [blame]
Dan Willemsen154fce42018-11-16 23:15:45 -08001// LoudnessEnhancer library
2cc_library_shared {
3 name: "libldnhncr",
4
5 vendor: true,
6 srcs: [
7 "EffectLoudnessEnhancer.cpp",
8 "dsp/core/dynamic_range_compression.cpp",
9 ],
10
11 cflags: [
12 "-O2",
13 "-fvisibility=hidden",
14
15 "-Wall",
16 "-Werror",
17 ],
18
19 shared_libs: [
20 "libcutils",
21 "liblog",
22 ],
23
24 relative_install_path: "soundfx",
25
26 header_libs: ["libaudioeffects"],
27}