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

Unified Diff: third_party/zlib/zlib.gyp

Issue 11632002: Use generated shim headers for zlib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 8 years 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
Index: third_party/zlib/zlib.gyp
diff --git a/third_party/zlib/zlib.gyp b/third_party/zlib/zlib.gyp
index e04acbd4d8354bcf0c5d1070bcb06e898a9ad857..8a651f6d7c0e7c43bd9c8eebaa5e385aac43be2d 100644
--- a/third_party/zlib/zlib.gyp
+++ b/third_party/zlib/zlib.gyp
@@ -63,14 +63,20 @@
}],
],
}, {
+ 'variables': {
+ 'headers_root_path': '.',
+ 'header_filenames': [
+ 'zlib.h',
+ ],
+ },
+ 'includes': [
+ '../../build/shim_headers.gypi',
+ ],
'direct_dependent_settings': {
'defines': [
'USE_SYSTEM_ZLIB',
],
},
- 'defines': [
- 'USE_SYSTEM_ZLIB',
- ],
'link_settings': {
'libraries': [
'-lz',
@@ -94,6 +100,9 @@
'contrib/minizip/zip.c',
'contrib/minizip/zip.h',
],
+ 'dependencies': [
+ 'zlib',
+ ],
'include_dirs': [
'.',
'../..',

Powered by Google App Engine
This is Rietveld 408576698