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

Unified Diff: gyp/skflate.gyp

Issue 469813002: Add miniz library to third_party, use it on Windows (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Clarifying Comments Created 6 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 | « no previous file | src/core/SkFlate.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/skflate.gyp
diff --git a/gyp/skflate.gyp b/gyp/skflate.gyp
index 9e11cd9cc02ff2e602e1b25adb253620ee6bad51..bf340d90c0e34750c906115b10bf0247e2e4a2dd 100644
--- a/gyp/skflate.gyp
+++ b/gyp/skflate.gyp
@@ -8,13 +8,15 @@
'skia_lib.gyp:skia_lib',
],
'conditions': [
- # When zlib is not availible on a system,
- # SkFlate::HaveFlate will just return false.
[ 'skia_os != "win"',
{
'dependencies': [
'zlib.gyp:zlib',
],
+ }, { # 'skia_os == "win"'
+ 'dependencies': [
+ '../third_party/miniz/miniz.gyp:miniz'
+ ],
}
],
],
« no previous file with comments | « no previous file | src/core/SkFlate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698