blob: 66389b974e104c07a204d867b3cf02650b118728 [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,
Justin Yun869a0fa2020-11-11 15:16:11 +090012 product_available: true,
Jiyong Park8d7866c2018-05-29 16:34:39 +090013 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020014 native_bridge_supported: true,
Christopher Ferris7a3681e2017-04-24 17:48:32 -070015
16 include_dirs: ["bionic/libc"],
Elliott Hughes3019d782019-02-13 12:39:07 -080017 header_libs: ["libc_headers", "liblog_headers"],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070018
19 export_include_dirs: ["include"],
Elliott Hughes3019d782019-02-13 12:39:07 -080020 export_header_lib_headers: ["liblog_headers"],
21 stl: "none",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090022
23 apex_available: [
24 "//apex_available:platform",
25 "com.android.runtime",
Martin Stjernholm81c260d2020-10-12 15:07:38 +010026 "com.android.art",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090027 "com.android.art.debug",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090028 "com.android.media",
29 "com.android.media.swcodec",
30 ],
Elliott Hughes3019d782019-02-13 12:39:07 -080031}
32
33cc_library_headers {
34 name: "libasync_safe_headers",
Yifan Hong5a39cee2020-01-21 16:43:56 -080035 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -070036 vendor_ramdisk_available: true,
Elliott Hughes3019d782019-02-13 12:39:07 -080037 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020038 native_bridge_supported: true,
Alex Light7448f3e2019-02-19 09:47:40 -080039 defaults: ["linux_bionic_supported"],
Elliott Hughes3019d782019-02-13 12:39:07 -080040
41 export_include_dirs: ["include"],
42
43 system_shared_libs: [],
44 stl: "none",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090045
46 apex_available: [
47 "//apex_available:platform",
48 "com.android.runtime",
49 ],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070050}