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

Unified Diff: gyp/skflate.gyp

Issue 957323003: miniz support in SkFlate / PDF (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: class comment Created 5 years, 10 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 | « gyp/pdf.gypi ('k') | gyp/zlib.gyp » ('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 4f3b1763eb4fca5de9d9f13bea4aecfdd64cf2c0..6ca4095d1fb948233239916a6136daad9f68cccf 100644
--- a/gyp/skflate.gyp
+++ b/gyp/skflate.gyp
@@ -4,23 +4,15 @@
{
'target_name': 'skflate',
'type': 'static_library',
- 'dependencies': [
- 'skia_lib.gyp:skia_lib',
- ],
+ 'dependencies': [ 'skia_lib.gyp:skia_lib' ],
'conditions': [
- # When zlib is not availible on a system,
- # SK_NO_FLATE will be defined.
- [ 'skia_os != "win"',
- {
- 'dependencies': [
- 'zlib.gyp:zlib',
- ],
- }
- ],
- ],
- 'sources': [
- '../src/core/SkFlate.cpp',
+ [ 'skia_android_framework', {
+ 'dependencies': [ 'zlib.gyp:zlib' ]
+ },{
+ 'dependencies': [ 'zlib.gyp:miniz' ] # Our bots.
+ }],
],
+ 'sources': [ '../src/core/SkFlate.cpp' ],
},
],
}
« no previous file with comments | « gyp/pdf.gypi ('k') | gyp/zlib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698