blob: 7df6ab9ac8894220f6c5e5b3a0f35cade9a4ca51 [file] [log] [blame]
Christopher Ferris7a3681e2017-04-24 17:48:32 -07001// ========================================================
2// libasync_safe.a
3// ========================================================
4cc_library_static {
5 defaults: ["libc_defaults"],
6 srcs: [
7 "async_safe_log.cpp",
8 ],
9
10 name: "libasync_safe",
Jiyong Parkec0d6b42017-05-15 15:22:12 +090011 vendor_available: true,
Jiyong Park8d7866c2018-05-29 16:34:39 +090012 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020013 native_bridge_supported: true,
Christopher Ferris7a3681e2017-04-24 17:48:32 -070014
15 include_dirs: ["bionic/libc"],
Elliott Hughes3019d782019-02-13 12:39:07 -080016 header_libs: ["libc_headers", "liblog_headers"],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070017
18 export_include_dirs: ["include"],
Elliott Hughes3019d782019-02-13 12:39:07 -080019 export_header_lib_headers: ["liblog_headers"],
20 stl: "none",
21}
22
23cc_library_headers {
24 name: "libasync_safe_headers",
Yifan Hong5a39cee2020-01-21 16:43:56 -080025 ramdisk_available: true,
Elliott Hughes3019d782019-02-13 12:39:07 -080026 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020027 native_bridge_supported: true,
Alex Light7448f3e2019-02-19 09:47:40 -080028 defaults: ["linux_bionic_supported"],
Elliott Hughes3019d782019-02-13 12:39:07 -080029
30 export_include_dirs: ["include"],
31
32 system_shared_libs: [],
33 stl: "none",
Christopher Ferris7a3681e2017-04-24 17:48:32 -070034}