xref: /aosp_15_r20/frameworks/av/services/audiopolicy/engineconfigurable/wrapper/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_library {
12    name: "libaudiopolicyengineconfigurable_pfwwrapper",
13    export_include_dirs: ["include"],
14    srcs: ["ParameterManagerWrapper.cpp"],
15    cflags: [
16        "-Wall",
17        "-Werror",
18        "-Wextra",
19    ],
20    header_libs: [
21        "libaudiofoundation_headers",
22        "libaudiopolicycapengine_config_headers",
23        "libaudiopolicycommon",
24        "libbase_headers",
25    ],
26    shared_libs: [
27        "libaudiopolicyengine_config",
28        "liblog",
29        "libmedia_helper",
30        "libparameter",
31        "libutils",
32    ],
33}
34