blob: 4f3b1763eb4fca5de9d9f13bea4aecfdd64cf2c0 [file] [log] [blame]
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +00001# Target for including SkFlate.
2{
3 'targets': [
4 {
5 'target_name': 'skflate',
6 'type': 'static_library',
7 'dependencies': [
8 'skia_lib.gyp:skia_lib',
9 ],
10 'conditions': [
11 # When zlib is not availible on a system,
halcanary91d1d622015-02-17 14:43:06 -080012 # SK_NO_FLATE will be defined.
commit-bot@chromium.orgf84722e2014-02-24 20:22:34 +000013 [ 'skia_os != "win"',
14 {
15 'dependencies': [
16 'zlib.gyp:zlib',
17 ],
18 }
19 ],
20 ],
21 'sources': [
22 '../src/core/SkFlate.cpp',
23 ],
24 },
25 ],
26}