OLD | NEW |
1 { | 1 { |
2 'targets': [ | 2 'targets': [ |
3 { | 3 { |
4 'target_name': 'zlib', | 4 'target_name': 'zlib', |
5 'type': 'static_library', | 5 'type': 'static_library', |
6 'include_dirs': [ | 6 'dependencies': [ |
7 '../include/config', | 7 'skia_lib.gyp:skia_lib', |
8 '../include/core', | |
9 ], | 8 ], |
10 'sources': [ | 9 'sources': [ |
11 '../include/core/SkFlate.h', | 10 '../include/core/SkFlate.h', |
12 | 11 |
13 '../src/core/SkFlate.cpp', | 12 '../src/core/SkFlate.cpp', |
14 ], | 13 ], |
15 'conditions': [ | 14 'conditions': [ |
16 [ 'skia_os == "mac"', { | 15 [ 'skia_os == "mac"', { |
17 'link_settings': { | 16 'link_settings': { |
18 'libraries': [ | 17 'libraries': [ |
(...skipping 17 matching lines...) Expand all Loading... |
36 ], | 35 ], |
37 }, | 36 }, |
38 ], | 37 ], |
39 } | 38 } |
40 | 39 |
41 # Local Variables: | 40 # Local Variables: |
42 # tab-width:2 | 41 # tab-width:2 |
43 # indent-tabs-mode:nil | 42 # indent-tabs-mode:nil |
44 # End: | 43 # End: |
45 # vim: set expandtab tabstop=2 shiftwidth=2: | 44 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |