1// Build testbench for downmix module. 2cc_test { 3 name:"downmixtest", 4 host_supported: false, 5 proprietary: true, 6 include_dirs: [ 7 "frameworks/av/media/libeffects/downmix", 8 ], 9 10 header_libs: [ 11 "libaudioeffects", 12 ], 13 14 shared_libs: [ 15 "libaudioutils", 16 "libdownmix", 17 "liblog", 18 ], 19 20 relative_install_path: "soundfx", 21 22 srcs: [ 23 "downmixtest.cpp", 24 ], 25 26 cflags: [ 27 "-Werror", 28 "-Wextra", 29 ], 30} 31