blob: 2ea2c10f0842e3dd4e3426cb851bd430e7418c98 [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",
jiabin9bb3a1e2019-08-19 10:10:17 -070013 "AudioProfile.cpp",
jiabin9ccb28b2019-07-31 09:59:09 -070014 ],
15
16 shared_libs: [
17 "libbase",
18 "libbinder",
19 "liblog",
jiabin9bb3a1e2019-08-19 10:10:17 -070020 "libmedia_helper",
jiabin9ccb28b2019-07-31 09:59:09 -070021 "libutils",
22 ],
23
24 header_libs: [
25 "libaudio_system_headers",
jiabin9bb3a1e2019-08-19 10:10:17 -070026 "libaudioclient_headers",
jiabin9ccb28b2019-07-31 09:59:09 -070027 "libaudiofoundation_headers",
28 ],
29
30 export_header_lib_headers: ["libaudiofoundation_headers"],
31
32 cflags: [
33 "-Werror",
34 "-Wall",
35 ],
36}