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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « gyp/pdf.gypi ('k') | gyp/zlib.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Target for including SkFlate. 1 # Target for including SkFlate.
2 { 2 {
3 'targets': [ 3 'targets': [
4 { 4 {
5 'target_name': 'skflate', 5 'target_name': 'skflate',
6 'type': 'static_library', 6 'type': 'static_library',
7 'dependencies': [ 7 'dependencies': [ 'skia_lib.gyp:skia_lib' ],
8 'skia_lib.gyp:skia_lib', 8 'conditions': [
9 [ 'skia_android_framework', {
10 'dependencies': [ 'zlib.gyp:zlib' ]
11 },{
12 'dependencies': [ 'zlib.gyp:miniz' ] # Our bots.
13 }],
9 ], 14 ],
10 'conditions': [ 15 'sources': [ '../src/core/SkFlate.cpp' ],
11 # When zlib is not availible on a system,
12 # SK_NO_FLATE will be defined.
13 [ 'skia_os != "win"',
14 {
15 'dependencies': [
16 'zlib.gyp:zlib',
17 ],
18 }
19 ],
20 ],
21 'sources': [
22 '../src/core/SkFlate.cpp',
23 ],
24 }, 16 },
25 ], 17 ],
26 } 18 }
OLDNEW
« 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