• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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        "libaudio_aidl_conversion_common_cpp",
26        "libaudiopolicycomponents",
27        "libcutils",
28        "liblog",
29        "libmedia_helper",
30        "libutils",
31        "libxml2",
32    ],
33    header_libs: [
34        "libaudio_system_headers",
35        "libmedia_headers",
36        "libaudioclient_headers",
37    ],
38}
39