blob: eb690dd356b3b129a7ecd7893a1174899de29c2c [file] [log] [blame]
Christopher Ferris7a3681e2017-04-24 17:48:32 -07001// ========================================================
2// libasync_safe.a
3// ========================================================
Bob Badouraa7d8352021-02-19 13:06:22 -08004package {
5 // See: http://go/android-license-faq
6 // A large-scale-change added 'default_applicable_licenses' to import
7 // all of the 'license_kinds' from "bionic_libc_license"
8 // to get the below license kinds:
9 // SPDX-license-identifier-BSD
10 default_applicable_licenses: ["bionic_libc_license"],
11}
12
Christopher Ferris7a3681e2017-04-24 17:48:32 -070013cc_library_static {
14 defaults: ["libc_defaults"],
15 srcs: [
16 "async_safe_log.cpp",
17 ],
18
19 name: "libasync_safe",
Jiyong Parkec0d6b42017-05-15 15:22:12 +090020 vendor_available: true,
Justin Yun869a0fa2020-11-11 15:16:11 +090021 product_available: true,
Jiyong Park8d7866c2018-05-29 16:34:39 +090022 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020023 native_bridge_supported: true,
Christopher Ferris7a3681e2017-04-24 17:48:32 -070024
25 include_dirs: ["bionic/libc"],
Elliott Hughes3019d782019-02-13 12:39:07 -080026 header_libs: ["libc_headers", "liblog_headers"],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070027
28 export_include_dirs: ["include"],
Elliott Hughes3019d782019-02-13 12:39:07 -080029 export_header_lib_headers: ["liblog_headers"],
30 stl: "none",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090031
32 apex_available: [
Brian Duddiee78ea1f2022-09-01 00:18:34 +000033 "//apex_available:anyapex",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090034 "//apex_available:platform",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090035 ],
Nicolas Geoffray4647d482021-03-03 22:04:45 +000036 min_sdk_version: "apex_inherit",
Elliott Hughes3019d782019-02-13 12:39:07 -080037}
38
39cc_library_headers {
40 name: "libasync_safe_headers",
Yifan Hong5a39cee2020-01-21 16:43:56 -080041 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -070042 vendor_ramdisk_available: true,
Elliott Hughes3019d782019-02-13 12:39:07 -080043 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020044 native_bridge_supported: true,
Alex Light7448f3e2019-02-19 09:47:40 -080045 defaults: ["linux_bionic_supported"],
Elliott Hughes3019d782019-02-13 12:39:07 -080046
47 export_include_dirs: ["include"],
48
49 system_shared_libs: [],
50 stl: "none",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090051
52 apex_available: [
53 "//apex_available:platform",
54 "com.android.runtime",
55 ],
Christopher Ferris7a3681e2017-04-24 17:48:32 -070056}