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.

51 lines
997 B

cc_library_headers {
name: "libaudiofoundation_headers",
vendor_available: true,
export_include_dirs: ["include"],
header_libs: [
"libaudio_system_headers",
"libmedia_helper_headers",
],
export_header_lib_headers: [
"libaudio_system_headers",
"libmedia_helper_headers",
],
}
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: [
"libaudioutils",
"libbase",
"libbinder",
"liblog",
"libmedia_helper",
"libutils",
],
header_libs: [
"libaudiofoundation_headers",
],
export_header_lib_headers: [
"libaudiofoundation_headers",
],
cflags: [
"-Werror",
"-Wall",
],
}