blob: 5045d8762f36115ee81b95385401a64ef0d227c9 [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",
13 ],
14
15 shared_libs: [
16 "libbase",
17 "libbinder",
18 "liblog",
19 "libutils",
20 ],
21
22 header_libs: [
23 "libaudio_system_headers",
24 "libaudiofoundation_headers",
25 ],
26
27 export_header_lib_headers: ["libaudiofoundation_headers"],
28
29 cflags: [
30 "-Werror",
31 "-Wall",
32 ],
33}