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.
83 lines
1.9 KiB
83 lines
1.9 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_headers {
|
|
name: "libaudiofoundation_headers",
|
|
vendor_available: true,
|
|
min_sdk_version: "29",
|
|
|
|
export_include_dirs: ["include"],
|
|
header_libs: [
|
|
"libaudioclient_aidl_conversion_util",
|
|
"libaudio_system_headers",
|
|
"libmedia_helper_headers",
|
|
],
|
|
export_header_lib_headers: [
|
|
"libaudioclient_aidl_conversion_util",
|
|
"libaudio_system_headers",
|
|
"libmedia_helper_headers",
|
|
],
|
|
static_libs: [
|
|
"audioclient-types-aidl-cpp",
|
|
],
|
|
export_static_lib_headers: [
|
|
"audioclient-types-aidl-cpp",
|
|
],
|
|
host_supported: true,
|
|
target: {
|
|
darwin: {
|
|
enabled: false,
|
|
},
|
|
},
|
|
}
|
|
|
|
cc_library {
|
|
name: "libaudiofoundation",
|
|
vendor_available: true,
|
|
double_loadable: true,
|
|
|
|
srcs: [
|
|
"AudioContainers.cpp",
|
|
"AudioDeviceTypeAddr.cpp",
|
|
"AudioGain.cpp",
|
|
"AudioPort.cpp",
|
|
"AudioProfile.cpp",
|
|
"DeviceDescriptorBase.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"audioclient-types-aidl-cpp",
|
|
"libaudioclient_aidl_conversion",
|
|
"libaudioutils",
|
|
"libbase",
|
|
"libbinder",
|
|
"liblog",
|
|
"libmedia_helper",
|
|
"libutils",
|
|
],
|
|
|
|
export_shared_lib_headers: [
|
|
"audioclient-types-aidl-cpp",
|
|
"libaudioclient_aidl_conversion",
|
|
],
|
|
|
|
header_libs: [
|
|
"libaudiofoundation_headers",
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
"libaudiofoundation_headers",
|
|
],
|
|
|
|
cflags: [
|
|
"-Werror",
|
|
"-Wall",
|
|
],
|
|
}
|