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_shared { 11 name: "libaudiopolicyenginedefault", 12 srcs: [ 13 "src/Engine.cpp", 14 "src/EngineInstance.cpp", 15 ], 16 cflags: [ 17 "-fvisibility=hidden", 18 "-Wall", 19 "-Werror", 20 "-Wextra", 21 ], 22 header_libs: [ 23 "libbase_headers", 24 "libaudiopolicycommon", 25 "libaudiopolicyengine_interface_headers", 26 ], 27 static_libs: [ 28 "libaudiopolicycomponents", 29 "libaudiopolicyengine_common", 30 "libaudiopolicyengine_config", 31 ], 32 shared_libs: [ 33 "libaudiofoundation", 34 "liblog", 35 "libcutils", 36 "libutils", 37 "libmedia_helper", 38 "libaudiopolicy", 39 "libxml2", 40 ], 41} 42