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