| 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', | 20 '../include/lazy', |
| 21 '../src/lazy', |
| 21 # for access to SkErrorInternals.h | 22 # for access to SkErrorInternals.h |
| 22 '../src/core/', | 23 '../src/core/', |
| 23 # for access to SkImagePriv.h | 24 # for access to SkImagePriv.h |
| 24 '../src/image/', | 25 '../src/image/', |
| 25 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h | 26 # So src/ports/SkImageDecoder_CG can access SkStreamHelpers.h |
| 26 '../src/images/', | 27 '../src/images/', |
| 27 ], | 28 ], |
| 28 'sources': [ | 29 'sources': [ |
| 29 '../include/images/SkForceLinking.h', | 30 '../include/images/SkForceLinking.h', |
| 30 '../include/images/SkImageRef.h', | 31 '../include/images/SkImageRef.h', |
| 31 '../include/images/SkImageRef_GlobalPool.h', | 32 '../include/images/SkImageRef_GlobalPool.h', |
| 32 '../src/images/SkJpegUtility.h', | 33 '../src/images/SkJpegUtility.h', |
| 33 '../include/images/SkMovie.h', | 34 '../include/images/SkMovie.h', |
| 34 '../include/images/SkPageFlipper.h', | 35 '../include/images/SkPageFlipper.h', |
| 35 | 36 |
| 36 '../src/images/bmpdecoderhelper.cpp', | 37 '../src/images/bmpdecoderhelper.cpp', |
| 37 '../src/images/bmpdecoderhelper.h', | 38 '../src/images/bmpdecoderhelper.h', |
| 38 | 39 |
| 40 '../src/images/SkDecodingImageGenerator.cpp', |
| 39 '../src/images/SkForceLinking.cpp', | 41 '../src/images/SkForceLinking.cpp', |
| 40 '../src/images/SkImageDecoder.cpp', | 42 '../src/images/SkImageDecoder.cpp', |
| 41 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 43 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
| 42 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', | 44 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', |
| 43 # If decoders are added/removed to/from (all/individual) | 45 # If decoders are added/removed to/from (all/individual) |
| 44 # platform(s), be sure to update SkForceLinking.cpp | 46 # platform(s), be sure to update SkForceLinking.cpp |
| 45 # so the right decoders will be forced to link. | 47 # so the right decoders will be forced to link. |
| 46 '../src/images/SkImageDecoder_libbmp.cpp', | 48 '../src/images/SkImageDecoder_libbmp.cpp', |
| 47 '../src/images/SkImageDecoder_libgif.cpp', | 49 '../src/images/SkImageDecoder_libgif.cpp', |
| 48 '../src/images/SkImageDecoder_libico.cpp', | 50 '../src/images/SkImageDecoder_libico.cpp', |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 }, | 173 }, |
| 172 }, | 174 }, |
| 173 ], | 175 ], |
| 174 } | 176 } |
| 175 | 177 |
| 176 # Local Variables: | 178 # Local Variables: |
| 177 # tab-width:2 | 179 # tab-width:2 |
| 178 # indent-tabs-mode:nil | 180 # indent-tabs-mode:nil |
| 179 # End: | 181 # End: |
| 180 # vim: set expandtab tabstop=2 shiftwidth=2: | 182 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |