Home | History | Annotate | Download | only in async_safe
      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",
     11     vendor_available: true,
     12     recovery_available: true,
     13 
     14     include_dirs: ["bionic/libc"],
     15     header_libs: ["libc_headers", "liblog_headers"],
     16 
     17     export_include_dirs: ["include"],
     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     defaults: ["linux_bionic_supported"],
     26 
     27     export_include_dirs: ["include"],
     28 
     29     system_shared_libs: [],
     30     stl: "none",
     31 }
     32