1package {
2    // See: http://go/android-license-faq
3    // A large-scale-change added 'default_applicable_licenses' to import
4    // all of the 'license_kinds' from "frameworks_av_license"
5    // to get the below license kinds:
6    //   SPDX-license-identifier-Apache-2.0
7    default_applicable_licenses: ["frameworks_av_license"],
8}
9
10cc_test {
11    name: "audiofoundation_parcelable_test",
12
13    defaults: [
14        "latest_android_media_audio_common_types_cpp_static",
15    ],
16    shared_libs: [
17        "libbase",
18        "libbinder",
19        "liblog",
20        "libutils",
21    ],
22
23    static_libs: [
24        "audioclient-types-aidl-cpp",
25        "libaudio_aidl_conversion_common_cpp",
26        "libaudioclient_aidl_conversion",
27        "libaudiofoundation",
28        "libstagefright_foundation",
29    ],
30
31    header_libs: [
32        "libaudio_system_headers",
33    ],
34
35    srcs: [
36        "audiofoundation_parcelable_test.cpp",
37    ],
38
39    cflags: [
40        "-Wall",
41        "-Werror",
42    ],
43
44    test_suites: ["device-tests"],
45}
46
47cc_test {
48    name: "audiofoundation_containers_test",
49
50    shared_libs: [
51        "liblog",
52    ],
53
54    static_libs: [
55        "libaudiofoundation",
56    ],
57
58    header_libs: [
59        "libaudio_system_headers",
60    ],
61
62    srcs: [
63        "audiofoundation_containers_test.cpp",
64    ],
65
66    cflags: [
67        "-Wall",
68        "-Werror",
69    ],
70
71    test_suites: ["device-tests"],
72}
73