| OLD | NEW |
| 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 } |
| OLD | NEW |