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_library {
11    name: "libaudiopolicyengine_config",
12    export_include_dirs: ["include"],
13    include_dirs: [
14        "external/libxml2/include",
15    ],
16    srcs: [
17        "src/EngineConfig.cpp",
18    ],
19    cflags: [
20        "-Wall",
21        "-Werror",
22        "-Wextra",
23    ],
24    shared_libs: [
25        "libmedia_helper",
26        "libxml2",
27        "libutils",
28        "liblog",
29        "libcutils",
30    ],
31    header_libs: [
32        "libaudio_system_headers",
33        "libmedia_headers",
34        "libaudioclient_headers",
35    ],
36}
37