1// Build testbench for downmix module. 2package { 3 // See: http://go/android-license-faq 4 // A large-scale-change added 'default_applicable_licenses' to import 5 // all of the 'license_kinds' from "frameworks_av_media_libeffects_downmix_license" 6 // to get the below license kinds: 7 // SPDX-license-identifier-Apache-2.0 8 default_applicable_licenses: [ 9 "frameworks_av_media_libeffects_downmix_license", 10 ], 11} 12 13cc_benchmark { 14 name: "downmix_benchmark", 15 host_supported: false, 16 vendor: true, 17 include_dirs: [ 18 "frameworks/av/media/libeffects/downmix", 19 ], 20 header_libs: [ 21 "libaudioeffects", 22 ], 23 shared_libs: [ 24 "liblog", 25 ], 26 static_libs: [ 27 "libaudioutils", 28 "libdownmix", 29 ], 30 srcs: [ 31 "downmix_benchmark.cpp", 32 ], 33 cflags: [ 34 "-Wall", 35 "-Werror", 36 "-Wextra", 37 ], 38} 39