| 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 'libjpeg.gyp:*', | 10 'libjpeg.gyp:*', |
| 11 'libwebp.gyp:libwebp', | 11 'libwebp.gyp:libwebp', |
| 12 'utils.gyp:utils', | 12 'utils.gyp:utils', |
| 13 ], | 13 ], |
| 14 'export_dependent_settings': [ | 14 'export_dependent_settings': [ |
| 15 'libjpeg.gyp:*', | 15 'libjpeg.gyp:*', |
| 16 ], | 16 ], |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '../include/config', | 18 '../include/config', |
| 19 '../include/core', | 19 '../include/core', |
| 20 '../include/images', | 20 '../include/images', |
| 21 '../include/lazy', | 21 '../include/lazy', |
| 22 # for access to SkErrorInternals.h | 22 # for access to SkErrorInternals.h |
| 23 '../src/core/', | 23 '../src/core/', |
| 24 # for access to SkImagePriv.h | 24 # for access to SkImagePriv.h |
| 25 '../src/image/', | 25 '../src/image/', |
| 26 ], | 26 ], |
| 27 'sources': [ | 27 'sources': [ |
| 28 '../include/images/SkImageDecoder.h', | 28 '../include/images/SkForceLinking.h', |
| 29 '../include/images/SkImageEncoder.h', | |
| 30 '../include/images/SkImageRef.h', | 29 '../include/images/SkImageRef.h', |
| 31 '../include/images/SkImageRef_GlobalPool.h', | 30 '../include/images/SkImageRef_GlobalPool.h', |
| 32 '../src/images/SkJpegUtility.h', | 31 '../src/images/SkJpegUtility.h', |
| 33 '../include/images/SkMovie.h', | 32 '../include/images/SkMovie.h', |
| 34 '../include/images/SkPageFlipper.h', | 33 '../include/images/SkPageFlipper.h', |
| 35 | 34 |
| 36 '../src/images/bmpdecoderhelper.cpp', | 35 '../src/images/bmpdecoderhelper.cpp', |
| 37 '../src/images/bmpdecoderhelper.h', | 36 '../src/images/bmpdecoderhelper.h', |
| 38 | 37 |
| 39 '../src/images/SkBitmapRegionDecoder.cpp', | 38 '../src/images/SkBitmapRegionDecoder.cpp', |
| 40 | 39 |
| 40 '../src/images/SkForceLinking.cpp', |
| 41 '../src/images/SkImageDecoder.cpp', | 41 '../src/images/SkImageDecoder.cpp', |
| 42 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 42 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
| 43 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', | 43 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', |
| 44 # If decoders are added/removed to/from (all/individual) | 44 # If decoders are added/removed to/from (all/individual) |
| 45 # platform(s), be sure to update SkImageDecoder.cpp:force_linking | 45 # platform(s), be sure to update SkForceLinking.cpp |
| 46 # so the right decoders will be forced to link. | 46 # so the right decoders will be forced to link. |
| 47 '../src/images/SkImageDecoder_libbmp.cpp', | 47 '../src/images/SkImageDecoder_libbmp.cpp', |
| 48 '../src/images/SkImageDecoder_libgif.cpp', | 48 '../src/images/SkImageDecoder_libgif.cpp', |
| 49 '../src/images/SkImageDecoder_libico.cpp', | 49 '../src/images/SkImageDecoder_libico.cpp', |
| 50 '../src/images/SkImageDecoder_libjpeg.cpp', | 50 '../src/images/SkImageDecoder_libjpeg.cpp', |
| 51 '../src/images/SkImageDecoder_libpng.cpp', | 51 '../src/images/SkImageDecoder_libpng.cpp', |
| 52 '../src/images/SkImageDecoder_libwebp.cpp', | 52 '../src/images/SkImageDecoder_libwebp.cpp', |
| 53 '../src/images/SkImageDecoder_wbmp.cpp', | 53 '../src/images/SkImageDecoder_wbmp.cpp', |
| 54 '../src/images/SkImageEncoder.cpp', | 54 '../src/images/SkImageEncoder.cpp', |
| 55 '../src/images/SkImageEncoder_Factory.cpp', | 55 '../src/images/SkImageEncoder_Factory.cpp', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 }, | 163 }, |
| 164 }, | 164 }, |
| 165 ], | 165 ], |
| 166 } | 166 } |
| 167 | 167 |
| 168 # Local Variables: | 168 # Local Variables: |
| 169 # tab-width:2 | 169 # tab-width:2 |
| 170 # indent-tabs-mode:nil | 170 # indent-tabs-mode:nil |
| 171 # End: | 171 # End: |
| 172 # vim: set expandtab tabstop=2 shiftwidth=2: | 172 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |