blob: 34e6f82d574dd28d3d4f500581fb39fd4c0cf78e [file] [log] [blame]
jiabin6607c082019-09-23 12:33:59 -07001// system/audio.h utilities test
2
Bob Badour8117c2a2021-02-03 18:31:58 -08003package {
4 // http://go/android-license-faq
5 // A large-scale-change added 'default_applicable_licenses' to import
6 // the below license kinds from "system_media_license":
7 // SPDX-license-identifier-Apache-2.0
8 default_applicable_licenses: ["system_media_license"],
9}
10
jiabin6607c082019-09-23 12:33:59 -070011cc_test {
12 name: "systemaudio_tests",
13
14 shared_libs: [
15 "libaudiofoundation",
16 "libbase",
17 "liblog",
18 "libmedia_helper",
19 "libutils",
20 ],
21
22 header_libs: ["libmedia_headers"],
23
Mikhail Naganov1c7d9952020-10-08 16:01:19 -070024 srcs: [
25 "static_checks_c.c",
26 "static_checks.cpp",
27 "systemaudio_tests.cpp",
28 ],
jiabin6607c082019-09-23 12:33:59 -070029
30 cflags: [
31 "-Werror",
32 "-Wall",
33 ],
34
35 test_suites: ["device-tests"],
36
37}