blob: aed28d0f9c4f3993ef18e4ce3248d758d6320530 [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: [
33 "//apex_available:platform",
34 "com.android.runtime",
Martin Stjernholm81c260d2020-10-12 15:07:38 +010035 "com.android.art",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090036 "com.android.art.debug",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090037 "com.android.media",
38 "com.android.media.swcodec",
39 ],
Elliott Hughes3019d782019-02-13 12:39:07 -080040}
41
42cc_library_headers {
43 name: "libasync_safe_headers",
Yifan Hong5a39cee2020-01-21 16:43:56 -080044 ramdisk_available: true,
Yifan Hongb04490d2020-10-21 18:36:36 -070045 vendor_ramdisk_available: true,
Elliott Hughes3019d782019-02-13 12:39:07 -080046 recovery_available: true,
dimitry7f048802019-05-03 15:57:34 +020047 native_bridge_supported: true,
Alex Light7448f3e2019-02-19 09:47:40 -080048 defaults: ["linux_bionic_supported"],
Elliott Hughes3019d782019-02-13 12:39:07 -080049
50 export_include_dirs: ["include"],
51
52 system_shared_libs: [],
53 stl: "none",
Jiyong Park2aa19dc2020-04-08 22:52:06 +090054
55 apex_available: [
56 "//apex_available:platform",
57 "com.android.runtime",
58 ],
Rupert Shuttleworthfd648682021-02-16 03:27:05 +000059 bazel_module: { bp2build_available: true },
Christopher Ferris7a3681e2017-04-24 17:48:32 -070060}