blob: a8e6c313d01d4bcf3ba74bebc9419dacb612852c [file] [log] [blame]
jiabin41502b22019-07-31 09:59:09 -07001cc_library_headers {
2 name: "libaudiofoundation_headers",
3 vendor_available: true,
Jooyung Hane3cf41a2020-04-30 04:22:22 +09004 min_sdk_version: "29",
5
jiabin41502b22019-07-31 09:59:09 -07006 export_include_dirs: ["include"],
jiabinad549002019-10-17 14:15:45 -07007 header_libs: [
8 "libaudio_system_headers",
jiabin8d752282019-10-18 15:49:48 -07009 "libmedia_helper_headers",
jiabinad549002019-10-17 14:15:45 -070010 ],
11 export_header_lib_headers: [
12 "libaudio_system_headers",
jiabin8d752282019-10-18 15:49:48 -070013 "libmedia_helper_headers",
jiabinad549002019-10-17 14:15:45 -070014 ],
S Vasudev Prasad06079fe2020-05-09 12:49:15 +053015 host_supported: true,
16 target: {
17 darwin: {
18 enabled: false,
19 },
20 },
jiabin41502b22019-07-31 09:59:09 -070021}
22
jiabina40cb142019-10-16 11:28:57 -070023cc_library {
jiabin41502b22019-07-31 09:59:09 -070024 name: "libaudiofoundation",
25 vendor_available: true,
jiabinc0106832019-10-24 14:58:31 -070026 double_loadable: true,
jiabin41502b22019-07-31 09:59:09 -070027
28 srcs: [
jiabin12dc6b02019-10-01 09:38:30 -070029 "AudioContainers.cpp",
jiabin5b781412019-11-04 14:10:42 -080030 "AudioDeviceTypeAddr.cpp",
jiabin41502b22019-07-31 09:59:09 -070031 "AudioGain.cpp",
jiabindd81cc22019-09-11 10:15:46 -070032 "AudioPort.cpp",
jiabinb6776432019-08-19 10:10:17 -070033 "AudioProfile.cpp",
jiabin6713a382019-09-12 16:29:15 -070034 "DeviceDescriptorBase.cpp",
jiabin41502b22019-07-31 09:59:09 -070035 ],
36
37 shared_libs: [
jiabin6713a382019-09-12 16:29:15 -070038 "libaudioutils",
jiabin41502b22019-07-31 09:59:09 -070039 "libbase",
40 "libbinder",
41 "liblog",
jiabinb6776432019-08-19 10:10:17 -070042 "libmedia_helper",
jiabin41502b22019-07-31 09:59:09 -070043 "libutils",
44 ],
45
46 header_libs: [
jiabin41502b22019-07-31 09:59:09 -070047 "libaudiofoundation_headers",
48 ],
49
jiabinad549002019-10-17 14:15:45 -070050 export_header_lib_headers: [
51 "libaudiofoundation_headers",
52 ],
jiabin41502b22019-07-31 09:59:09 -070053
54 cflags: [
55 "-Werror",
56 "-Wall",
57 ],
58}