xref: /aosp_15_r20/frameworks/av/services/audiopolicy/engine/config/tests/Android.bp (revision ec779b8e0859a360c3d303172224686826e6e0e1)
1package {
2    default_team: "trendy_team_android_media_audio_framework",
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_license"
6    // to get the below license kinds:
7    //   SPDX-license-identifier-Apache-2.0
8    default_applicable_licenses: ["frameworks_av_license"],
9}
10
11cc_test {
12    name: "audiopolicy_engineconfig_tests",
13
14    shared_libs: [
15        "libaudiopolicycomponents",
16        "libbase",
17        "liblog",
18        "libmedia_helper",
19        "libutils",
20        "libxml2",
21    ],
22    static_libs: [
23        "libaudiopolicyengine_config",
24    ],
25
26    srcs: ["engineconfig_tests.cpp"],
27
28    data: [":audiopolicy_engineconfig_files"],
29
30    cflags: [
31        "-Wall",
32        "-Werror",
33    ],
34
35    test_suites: ["device-tests"],
36}
37