You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.6 KiB
67 lines
1.6 KiB
package {
|
|
// See: http://go/android-license-faq
|
|
// A large-scale-change added 'default_applicable_licenses' to import
|
|
// all of the 'license_kinds' from "frameworks_av_license"
|
|
// to get the below license kinds:
|
|
// SPDX-license-identifier-Apache-2.0
|
|
default_applicable_licenses: ["frameworks_av_license"],
|
|
}
|
|
|
|
cc_library_static {
|
|
name: "libaudiopolicycomponents",
|
|
|
|
srcs: [
|
|
"src/AudioCollections.cpp",
|
|
"src/AudioInputDescriptor.cpp",
|
|
"src/AudioOutputDescriptor.cpp",
|
|
"src/AudioPatch.cpp",
|
|
"src/AudioPolicyMix.cpp",
|
|
"src/AudioProfileVectorHelper.cpp",
|
|
"src/AudioRoute.cpp",
|
|
"src/ClientDescriptor.cpp",
|
|
"src/DeviceDescriptor.cpp",
|
|
"src/EffectDescriptor.cpp",
|
|
"src/HwModule.cpp",
|
|
"src/IOProfile.cpp",
|
|
"src/PolicyAudioPort.cpp",
|
|
"src/Serializer.cpp",
|
|
"src/SoundTriggerSession.cpp",
|
|
"src/TypeConverter.cpp",
|
|
],
|
|
shared_libs: [
|
|
"libaudiofoundation",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"liblog",
|
|
"libmedia",
|
|
"libmedia_helper",
|
|
"libutils",
|
|
"libxml2",
|
|
],
|
|
export_shared_lib_headers: [
|
|
"libaudiofoundation",
|
|
"libmedia",
|
|
"libmedia_helper",
|
|
],
|
|
static_libs: [
|
|
"libaudioutils",
|
|
],
|
|
header_libs: [
|
|
"libaudiopolicycommon",
|
|
"libaudiopolicymanager_interface_headers",
|
|
],
|
|
export_header_lib_headers: ["libaudiopolicycommon"],
|
|
|
|
include_dirs: [
|
|
"frameworks/av/services/audiopolicy",
|
|
],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
cflags: [
|
|
"-Wall",
|
|
"-Werror",
|
|
],
|
|
|
|
}
|