blob: 643a4ba14ec62b3c7f0483128756f78b8f3bf3ea [file] [log] [blame]
jiabin9ccb28b2019-07-31 09:59:09 -07001cc_library_headers {
2 name: "libaudiofoundation_headers",
3 vendor_available: true,
4 export_include_dirs: ["include"],
5}
6
7cc_library_shared {
8 name: "libaudiofoundation",
9 vendor_available: true,
10
11 srcs: [
12 "AudioGain.cpp",
jiabine1284852019-09-11 10:15:46 -070013 "AudioPort.cpp",
jiabin9bb3a1e2019-08-19 10:10:17 -070014 "AudioProfile.cpp",
jiabin9ccb28b2019-07-31 09:59:09 -070015 ],
16
17 shared_libs: [
18 "libbase",
19 "libbinder",
20 "liblog",
jiabin9bb3a1e2019-08-19 10:10:17 -070021 "libmedia_helper",
jiabin9ccb28b2019-07-31 09:59:09 -070022 "libutils",
23 ],
24
25 header_libs: [
26 "libaudio_system_headers",
jiabin9bb3a1e2019-08-19 10:10:17 -070027 "libaudioclient_headers",
jiabin9ccb28b2019-07-31 09:59:09 -070028 "libaudiofoundation_headers",
29 ],
30
31 export_header_lib_headers: ["libaudiofoundation_headers"],
32
33 cflags: [
34 "-Werror",
35 "-Wall",
36 ],
37}