OLD | NEW |
1 # GYP file for images project. | 1 # GYP file for images project. |
2 { | 2 { |
3 'targets': [ | 3 'targets': [ |
4 { | 4 { |
5 'target_name': 'images', | 5 'target_name': 'images', |
6 'product_name': 'skia_images', | 6 'product_name': 'skia_images', |
7 'type': 'static_library', | 7 'type': 'static_library', |
8 'standalone_static_library': 1, | 8 'standalone_static_library': 1, |
9 'dependencies': [ | 9 'dependencies': [ |
| 10 'core.gyp:*', |
10 'libjpeg.gyp:*', | 11 'libjpeg.gyp:*', |
11 'libwebp.gyp:libwebp', | 12 'libwebp.gyp:libwebp', |
12 'utils.gyp:utils', | 13 'utils.gyp:utils', |
13 ], | 14 ], |
14 'export_dependent_settings': [ | 15 'export_dependent_settings': [ |
15 'libjpeg.gyp:*', | 16 'libjpeg.gyp:*', |
16 ], | 17 ], |
17 'include_dirs': [ | 18 'include_dirs': [ |
18 '../include/config', | |
19 '../include/core', | |
20 '../include/images', | 19 '../include/images', |
21 '../include/lazy', | 20 '../include/lazy', |
22 # for access to SkErrorInternals.h | 21 # for access to SkErrorInternals.h |
23 '../src/core/', | 22 '../src/core/', |
24 # for access to SkImagePriv.h | 23 # for access to SkImagePriv.h |
25 '../src/image/', | 24 '../src/image/', |
26 ], | 25 ], |
27 'sources': [ | 26 'sources': [ |
28 '../include/images/SkForceLinking.h', | 27 '../include/images/SkForceLinking.h', |
29 '../include/images/SkImageRef.h', | 28 '../include/images/SkImageRef.h', |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 }, | 166 }, |
168 }, | 167 }, |
169 ], | 168 ], |
170 } | 169 } |
171 | 170 |
172 # Local Variables: | 171 # Local Variables: |
173 # tab-width:2 | 172 # tab-width:2 |
174 # indent-tabs-mode:nil | 173 # indent-tabs-mode:nil |
175 # End: | 174 # End: |
176 # vim: set expandtab tabstop=2 shiftwidth=2: | 175 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |