| Saketh Sathuvalli | 4c9da69 | 2019-01-05 12:25:59 +0530 | [diff] [blame] | 1 | // Build testbench for downmix module. |
| Bob Badour | 948e6aa | 2021-02-12 21:02:31 -0800 | [diff] [blame] | 2 | package { |
| 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 | |
| Saketh Sathuvalli | 4c9da69 | 2019-01-05 12:25:59 +0530 | [diff] [blame] | 13 | cc_test { |
| 14 | name:"downmixtest", |
| 15 | host_supported: false, |
| 16 | proprietary: true, |
| 17 | include_dirs: [ |
| 18 | "frameworks/av/media/libeffects/downmix", |
| 19 | ], |
| 20 | |
| 21 | header_libs: [ |
| 22 | "libaudioeffects", |
| 23 | ], |
| 24 | |
| 25 | shared_libs: [ |
| 26 | "libaudioutils", |
| 27 | "libdownmix", |
| 28 | "liblog", |
| 29 | ], |
| 30 | |
| 31 | relative_install_path: "soundfx", |
| 32 | |
| 33 | srcs: [ |
| 34 | "downmixtest.cpp", |
| 35 | ], |
| 36 | |
| 37 | cflags: [ |
| Saketh Sathuvalli | 4c9da69 | 2019-01-05 12:25:59 +0530 | [diff] [blame] | 38 | "-Werror", |
| 39 | "-Wextra", |
| 40 | ], |
| 41 | } |