Home | History | Annotate | Download | only in xz-embedded
      1 cc_library_static {
      2     name: "libxz",
      3     host_supported: true,
      4     recovery_available: true,
      5     srcs: [
      6         "linux/lib/xz/xz_crc32.c",
      7         "linux/lib/xz/xz_dec_bcj.c",
      8         "linux/lib/xz/xz_dec_lzma2.c",
      9         "linux/lib/xz/xz_dec_stream.c",
     10     ],
     11     local_include_dirs: ["userspace"],
     12 
     13     // Enable branch/call/jump filters. See http://b/27817327.
     14     cflags: [
     15         "-DXZ_DEC_X86",
     16         "-DXZ_DEC_ARM",
     17         "-DXZ_DEC_ARMTHUMB",
     18         "-Wall",
     19         "-Werror",
     20     ],
     21 
     22     export_include_dirs: ["linux/include/linux/"],
     23 }
     24