blob: 407731254451dec347355e2ff417896d2246976a [file] [log] [blame]
Saketh Sathuvalli4c9da692019-01-05 12:25:59 +05301// Build testbench for downmix module.
Bob Badour948e6aa2021-02-12 21:02:31 -08002package {
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 Sathuvalli4c9da692019-01-05 12:25:59 +053013cc_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 Sathuvalli4c9da692019-01-05 12:25:59 +053038 "-Werror",
39 "-Wextra",
40 ],
41}