summaryrefslogtreecommitdiffstats
path: root/third_party/zlib/zlib.gyp
diff options
context:
space:
mode:
authorgavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 17:15:13 +0000
committergavinp@chromium.org <gavinp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-04-09 17:15:13 +0000
commit17f706d599cfb296c633a12bc32f7bbf5633e6d9 (patch)
tree37394c0f061f4cc884387c1210105dfd9f00df5d /third_party/zlib/zlib.gyp
parent5f9174ec7fad90e760ca940453c0e848f1974a2d (diff)
downloadchromium_src-17f706d599cfb296c633a12bc32f7bbf5633e6d9.zip
chromium_src-17f706d599cfb296c633a12bc32f7bbf5633e6d9.tar.gz
chromium_src-17f706d599cfb296c633a12bc32f7bbf5633e6d9.tar.bz2
Complete update of zlib from 1.2.3 to 1.2.5.
You may think that https://codereview.chromium.org/8806004 , back in 2011, did this. However, that's not correct. That update only patched files which were present in both our old, customized checkout and zlib 1.2.5. In zlib 1.2.5, gzio.c was replaced with gzclose.c, gzguts.h, gzlib.c, gzread.c and gzwrite.c. We did not add those files. We just used the gzio.c from 1.2.3 with our custom patches from Gears, together with the rest of 1.2.5. This unholy chimera worked until I went ahead and tried to fix the broken mangling for 64 bit API symbols. See https://codereview.chromium.org/13473020/ . This uncovered the lack of gzread64, which was, after that fix, referenced by libxml. Since gzio.c from 1.2.3 doesn't have gzread64, this was something of a problem. I'm thus finishing the update. R=agl@chromium.org,rsleevi@chromium.org,brettw@chromium.org,bradchen@chromium.org BUG=None Review URL: https://chromiumcodereview.appspot.com/13564004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193127 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/zlib/zlib.gyp')
-rw-r--r--third_party/zlib/zlib.gyp6
1 files changed, 5 insertions, 1 deletions
diff --git a/third_party/zlib/zlib.gyp b/third_party/zlib/zlib.gyp
index 8a651f6..a17c09c 100644
--- a/third_party/zlib/zlib.gyp
+++ b/third_party/zlib/zlib.gyp
@@ -29,7 +29,11 @@
'crc32.h',
'deflate.c',
'deflate.h',
- 'gzio.c',
+ 'gzclose.c',
+ 'gzguts.h',
+ 'gzlib.c',
+ 'gzread.c',
+ 'gzwrite.c',
'infback.c',
'inffast.c',
'inffast.h',