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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/core/SkFlate.cpp » ('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': [
8 'skia_lib.gyp:skia_lib', 8 'skia_lib.gyp:skia_lib',
9 ], 9 ],
10 'conditions': [ 10 'conditions': [
11 # When zlib is not availible on a system,
12 # SkFlate::HaveFlate will just return false.
13 [ 'skia_os != "win"', 11 [ 'skia_os != "win"',
14 { 12 {
15 'dependencies': [ 13 'dependencies': [
16 'zlib.gyp:zlib', 14 'zlib.gyp:zlib',
17 ], 15 ],
16 }, { # 'skia_os == "win"'
17 'dependencies': [
18 '../third_party/miniz/miniz.gyp:miniz'
19 ],
18 } 20 }
19 ], 21 ],
20 ], 22 ],
21 'sources': [ 23 'sources': [
22 '../src/core/SkFlate.cpp', 24 '../src/core/SkFlate.cpp',
23 ], 25 ],
24 }, 26 },
25 ], 27 ],
26 } 28 }
OLDNEW
« 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