• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1cc_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: ["-DXZ_DEC_X86", "-DXZ_DEC_ARM", "-DXZ_DEC_ARMTHUMB"],
14
15    export_include_dirs: ["linux/include/linux/"],
16}
17