| Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 1 | // ======================================================== | 
|  | 2 | // libasync_safe.a | 
|  | 3 | // ======================================================== | 
|  | 4 | cc_library_static { | 
|  | 5 | defaults: ["libc_defaults"], | 
|  | 6 | srcs: [ | 
|  | 7 | "async_safe_log.cpp", | 
|  | 8 | ], | 
|  | 9 |  | 
|  | 10 | name: "libasync_safe", | 
| Jiyong Park | ec0d6b4 | 2017-05-15 15:22:12 +0900 | [diff] [blame] | 11 | vendor_available: true, | 
| Jiyong Park | 8d7866c | 2018-05-29 16:34:39 +0900 | [diff] [blame] | 12 | recovery_available: true, | 
| Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 13 |  | 
|  | 14 | include_dirs: ["bionic/libc"], | 
| Elliott Hughes | 3019d78 | 2019-02-13 12:39:07 -0800 | [diff] [blame] | 15 | header_libs: ["libc_headers", "liblog_headers"], | 
| Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 16 |  | 
|  | 17 | export_include_dirs: ["include"], | 
| Elliott Hughes | 3019d78 | 2019-02-13 12:39:07 -0800 | [diff] [blame] | 18 | export_header_lib_headers: ["liblog_headers"], | 
|  | 19 | stl: "none", | 
|  | 20 | } | 
|  | 21 |  | 
|  | 22 | cc_library_headers { | 
|  | 23 | name: "libasync_safe_headers", | 
|  | 24 | recovery_available: true, | 
|  | 25 |  | 
|  | 26 | export_include_dirs: ["include"], | 
|  | 27 |  | 
|  | 28 | system_shared_libs: [], | 
|  | 29 | stl: "none", | 
| Christopher Ferris | 7a3681e | 2017-04-24 17:48:32 -0700 | [diff] [blame] | 30 | } |