Home | History | Annotate | Download | only in third_party
      1 cc_library_static {
      2     name: "libpdfiumzlib",
      3     defaults: ["pdfium-defaults"],
      4 
      5     cflags: [
      6         // Mask some warnings. These are benign, but we probably want to fix them
      7         // upstream at some point.
      8         "-Wno-shift-negative-value",
      9         "-Wno-unused-parameter",
     10     ],
     11 
     12     srcs: [
     13         "zlib_v128/adler32.c",
     14         "zlib_v128/compress.c",
     15         "zlib_v128/crc32.c",
     16         "zlib_v128/deflate.c",
     17         "zlib_v128/gzclose.c",
     18         "zlib_v128/gzlib.c",
     19         "zlib_v128/gzread.c",
     20         "zlib_v128/gzwrite.c",
     21         "zlib_v128/infback.c",
     22         "zlib_v128/inffast.c",
     23         "zlib_v128/inflate.c",
     24         "zlib_v128/inftrees.c",
     25         "zlib_v128/trees.c",
     26         "zlib_v128/uncompr.c",
     27         "zlib_v128/zutil.c",
     28     ],
     29 }
     30