blob: 459cc78b4a8f28570559385b34ce7b0cbd5b8ede [file] [log] [blame]
Bob Badour56786ac2021-02-25 15:24:36 -08001package {
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
François Gaffie9c3728b2019-10-15 10:48:50 +020010cc_library {
Mikhail Naganov13ce4f62019-02-28 15:11:41 -080011 name: "libaudiopolicyengine_config",
12 export_include_dirs: ["include"],
13 include_dirs: [
14 "external/libxml2/include",
Mikhail Naganov13ce4f62019-02-28 15:11:41 -080015 ],
16 srcs: [
17 "src/EngineConfig.cpp",
18 ],
19 cflags: [
20 "-Wall",
21 "-Werror",
22 "-Wextra",
23 ],
24 shared_libs: [
25 "libmedia_helper",
Mikhail Naganov13ce4f62019-02-28 15:11:41 -080026 "libxml2",
27 "libutils",
28 "liblog",
29 "libcutils",
30 ],
Mikhail Naganov13ce4f62019-02-28 15:11:41 -080031 header_libs: [
32 "libaudio_system_headers",
François Gaffie9c3728b2019-10-15 10:48:50 +020033 "libmedia_headers",
34 "libaudioclient_headers",
Mikhail Naganov13ce4f62019-02-28 15:11:41 -080035 ],
36}