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

Side by Side Diff: gyp/skflate.gyp

Issue 966963002: On windows, build zlib as a static library. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Eliminate deprecation warnings. Created 5 years, 9 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 | « DEPS ('k') | gyp/zlib.gyp » ('j') | gyp/zlib.gyp » ('J')
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': [ 'skia_lib.gyp:skia_lib' ], 7 'dependencies': [
8 'conditions': [ 8 'skia_lib.gyp:skia_lib',
9 [ 'skia_android_framework', { 9 'zlib.gyp:zlib',
10 'dependencies': [ 'zlib.gyp:zlib' ]
11 },{
12 'dependencies': [ 'zlib.gyp:miniz' ] # Our bots.
13 }],
14 ], 10 ],
15 'sources': [ '../src/core/SkFlate.cpp' ], 11 'sources': [ '../src/core/SkFlate.cpp' ],
16 }, 12 },
17 ], 13 ],
18 } 14 }
OLDNEW
« no previous file with comments | « DEPS ('k') | gyp/zlib.gyp » ('j') | gyp/zlib.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698