Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1155)

Unified Diff: third_party/zlib/zlib.gyp

Issue 10874087: Merge 151720 - net: workaround compression leaks (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1180/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/zlib/zlib.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/zlib/zlib.gyp
===================================================================
--- third_party/zlib/zlib.gyp (revision 153495)
+++ third_party/zlib/zlib.gyp (working copy)
@@ -5,12 +5,10 @@
{
'variables': {
'conditions': [
- [ 'os_posix == 1 and OS != "mac" and OS != "openbsd"', {
- # Link to system .so since we already use it due to GTK.
- # TODO(pvalchev): OpenBSD is purposefully left out, as the system
- # zlib brings up an incompatibility that breaks rendering.
+ [ 'OS=="none"', {
+ # Because we have a patched zlib, we cannot use the system libz.
'use_system_zlib%': 1,
- }, { # os_posix != 1 or OS == "mac" or OS == "openbsd"
+ }, {
'use_system_zlib%': 0,
}],
],
@@ -70,6 +68,8 @@
'sources!': [
'contrib/minizip/iowin32.c'
],
+ }], ['OS=="android"', {
+ 'toolsets': ['target', 'host'],
}],
],
}, {
« no previous file with comments | « third_party/zlib/zlib.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698