blob: c91b79e93b02374d8551297cb7a3fe93a6a58bdd [file] [log] [blame]
jiabin41502b22019-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",
jiabineaf09f02019-08-19 15:08:30 -070013 "AudioPortBase.cpp",
jiabinb6776432019-08-19 10:10:17 -070014 "AudioProfile.cpp",
jiabin41502b22019-07-31 09:59:09 -070015 ],
16
17 shared_libs: [
18 "libbase",
19 "libbinder",
20 "liblog",
jiabinb6776432019-08-19 10:10:17 -070021 "libmedia_helper",
jiabin41502b22019-07-31 09:59:09 -070022 "libutils",
23 ],
24
25 header_libs: [
26 "libaudio_system_headers",
jiabinb6776432019-08-19 10:10:17 -070027 "libaudioclient_headers",
jiabin41502b22019-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}