1// system/audio.h utilities test
2
3cc_test {
4    name: "systemaudio_tests",
5
6    shared_libs: [
7        "libaudiofoundation",
8        "libbase",
9        "liblog",
10        "libmedia_helper",
11        "libutils",
12    ],
13
14    header_libs: ["libmedia_headers"],
15
16    srcs: ["systemaudio_tests.cpp"],
17
18    cflags: [
19        "-Werror",
20        "-Wall",
21    ],
22
23    test_suites: ["device-tests"],
24
25}
26