| // Build testbench for downmix module. |
| package { |
| // See: http://go/android-license-faq |
| // A large-scale-change added 'default_applicable_licenses' to import |
| // all of the 'license_kinds' from "frameworks_av_media_libeffects_downmix_license" |
| // to get the below license kinds: |
| // SPDX-license-identifier-Apache-2.0 |
| default_applicable_licenses: [ |
| "frameworks_av_media_libeffects_downmix_license", |
| ], |
| } |
| |
| cc_test { |
| name:"downmixtest", |
| host_supported: false, |
| proprietary: true, |
| include_dirs: [ |
| "frameworks/av/media/libeffects/downmix", |
| ], |
| |
| header_libs: [ |
| "libaudioeffects", |
| ], |
| |
| shared_libs: [ |
| "libaudioutils", |
| "libdownmix", |
| "liblog", |
| ], |
| |
| relative_install_path: "soundfx", |
| |
| srcs: [ |
| "downmixtest.cpp", |
| ], |
| |
| cflags: [ |
| "-Werror", |
| "-Wextra", |
| ], |
| } |