| 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 'core.gyp:*', |
| 11 'libjpeg.gyp:*', | 11 'libjpeg.gyp:*', |
| 12 'libwebp.gyp:libwebp', | 12 'libwebp.gyp:libwebp', |
| 13 'utils.gyp:utils', | 13 'utils.gyp:utils', |
| 14 ], | 14 ], |
| 15 'export_dependent_settings': [ | 15 'export_dependent_settings': [ |
| 16 'libjpeg.gyp:*', | 16 'libjpeg.gyp:*', |
| 17 ], | 17 ], |
| 18 'include_dirs': [ | 18 'include_dirs': [ |
| 19 '../include/images', | 19 '../include/images', |
| 20 '../include/lazy', | |
| 21 '../src/lazy', | 20 '../src/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 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h | 25 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h |
| 27 '../src/images/', | 26 '../src/images/', |
| 28 ], | 27 ], |
| 29 'sources': [ | 28 'sources': [ |
| 30 '../include/images/SkForceLinking.h', | 29 '../include/images/SkForceLinking.h', |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 }], | 161 }], |
| 163 [ 'skia_os == "ios"', { | 162 [ 'skia_os == "ios"', { |
| 164 'include_dirs': [ | 163 'include_dirs': [ |
| 165 '../include/utils/mac', | 164 '../include/utils/mac', |
| 166 ], | 165 ], |
| 167 }], | 166 }], |
| 168 ], | 167 ], |
| 169 'direct_dependent_settings': { | 168 'direct_dependent_settings': { |
| 170 'include_dirs': [ | 169 'include_dirs': [ |
| 171 '../include/images', | 170 '../include/images', |
| 172 '../include/lazy', | |
| 173 ], | 171 ], |
| 174 }, | 172 }, |
| 175 }, | 173 }, |
| 176 ], | 174 ], |
| 177 } | 175 } |
| OLD | NEW |