| OLD | NEW |
| 1 # Copyright 2015 Google Inc. | 1 # Copyright 2015 Google Inc. |
| 2 # | 2 # |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 # GYP file for images project. | 6 # GYP file for images project. |
| 7 { | 7 { |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'images', | 10 'target_name': 'images', |
| 11 'product_name': 'skia_images', | 11 'product_name': 'skia_images', |
| 12 'type': 'static_library', | 12 'type': 'static_library', |
| 13 'standalone_static_library': 1, | 13 'standalone_static_library': 1, |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'core.gyp:*', | 15 'core.gyp:*', |
| 16 'giflib.gyp:giflib', | 16 'giflib.gyp:giflib', |
| 17 'libjpeg.gyp:*', | 17 'libjpeg.gyp:*', |
| 18 'etc1.gyp:libetc1', | 18 'etc1.gyp:libetc1', |
| 19 'ktx.gyp:libSkKTX', | 19 'ktx.gyp:libSkKTX', |
| 20 'libwebp.gyp:libwebp', | 20 'libwebp.gyp:libwebp', |
| 21 'utils.gyp:utils', | 21 'utils.gyp:utils', |
| 22 ], | 22 ], |
| 23 'include_dirs': [ | 23 'include_dirs': [ |
| 24 '../include/images', | 24 '../include/images', |
| 25 '../include/private', |
| 25 '../src/lazy', | 26 '../src/lazy', |
| 26 # for access to SkErrorInternals.h | 27 # for access to SkErrorInternals.h |
| 27 '../src/core/', | 28 '../src/core/', |
| 28 # for access to SkImagePriv.h | 29 # for access to SkImagePriv.h |
| 29 '../src/image/', | 30 '../src/image/', |
| 30 ], | 31 ], |
| 31 'sources': [ | 32 'sources': [ |
| 32 '../include/images/SkDecodingImageGenerator.h', | 33 '../include/images/SkDecodingImageGenerator.h', |
| 33 '../include/images/SkForceLinking.h', | 34 '../include/images/SkForceLinking.h', |
| 34 '../src/images/SkJpegUtility.h', | 35 '../src/images/SkJpegUtility.h', |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 }], | 160 }], |
| 160 ], | 161 ], |
| 161 'direct_dependent_settings': { | 162 'direct_dependent_settings': { |
| 162 'include_dirs': [ | 163 'include_dirs': [ |
| 163 '../include/images', | 164 '../include/images', |
| 164 ], | 165 ], |
| 165 }, | 166 }, |
| 166 }, | 167 }, |
| 167 ], | 168 ], |
| 168 } | 169 } |
| OLD | NEW |