1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
| // ========================================================
| // libasync_safe.a
| // ========================================================
| cc_library_static {
| defaults: ["libc_defaults"],
| srcs: [
| "async_safe_log.cpp",
| ],
|
| name: "libasync_safe",
| vendor_available: true,
| recovery_available: true,
|
| include_dirs: ["bionic/libc"],
| header_libs: ["libc_headers", "liblog_headers"],
|
| export_include_dirs: ["include"],
| export_header_lib_headers: ["liblog_headers"],
| stl: "none",
| }
|
| cc_library_headers {
| name: "libasync_safe_headers",
| recovery_available: true,
| defaults: ["linux_bionic_supported"],
|
| export_include_dirs: ["include"],
|
| system_shared_libs: [],
| stl: "none",
| }
|
|