• 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: "libaudiopolicyengineconfigurable_pfwwrapper",
12    export_include_dirs: ["include"],
13    srcs: ["ParameterManagerWrapper.cpp"],
14    cflags: [
15        "-Wall",
16        "-Werror",
17        "-Wextra",
18    ],
19    header_libs: [
20        "libbase_headers",
21        "libaudiopolicycommon",
22        "libaudiofoundation_headers",
23    ],
24    shared_libs: [
25        "liblog",
26        "libutils",
27        "libmedia_helper",
28        "libparameter",
29    ],
30}
31