| 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:*', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 '../include/images/SkForceLinking.h', | 27 '../include/images/SkForceLinking.h', |
| 28 '../include/images/SkImageRef.h', | 28 '../include/images/SkImageRef.h', |
| 29 '../include/images/SkImageRef_GlobalPool.h', | 29 '../include/images/SkImageRef_GlobalPool.h', |
| 30 '../src/images/SkJpegUtility.h', | 30 '../src/images/SkJpegUtility.h', |
| 31 '../include/images/SkMovie.h', | 31 '../include/images/SkMovie.h', |
| 32 '../include/images/SkPageFlipper.h', | 32 '../include/images/SkPageFlipper.h', |
| 33 | 33 |
| 34 '../src/images/bmpdecoderhelper.cpp', | 34 '../src/images/bmpdecoderhelper.cpp', |
| 35 '../src/images/bmpdecoderhelper.h', | 35 '../src/images/bmpdecoderhelper.h', |
| 36 | 36 |
| 37 '../src/images/SkBitmapRegionDecoder.cpp', | |
| 38 | |
| 39 '../src/images/SkForceLinking.cpp', | 37 '../src/images/SkForceLinking.cpp', |
| 40 '../src/images/SkImageDecoder.cpp', | 38 '../src/images/SkImageDecoder.cpp', |
| 41 '../src/images/SkImageDecoder_FactoryDefault.cpp', | 39 '../src/images/SkImageDecoder_FactoryDefault.cpp', |
| 42 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', | 40 '../src/images/SkImageDecoder_FactoryRegistrar.cpp', |
| 43 # If decoders are added/removed to/from (all/individual) | 41 # If decoders are added/removed to/from (all/individual) |
| 44 # platform(s), be sure to update SkForceLinking.cpp | 42 # platform(s), be sure to update SkForceLinking.cpp |
| 45 # so the right decoders will be forced to link. | 43 # so the right decoders will be forced to link. |
| 46 '../src/images/SkImageDecoder_libbmp.cpp', | 44 '../src/images/SkImageDecoder_libbmp.cpp', |
| 47 '../src/images/SkImageDecoder_libgif.cpp', | 45 '../src/images/SkImageDecoder_libgif.cpp', |
| 48 '../src/images/SkImageDecoder_libico.cpp', | 46 '../src/images/SkImageDecoder_libico.cpp', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 }, | 167 }, |
| 170 }, | 168 }, |
| 171 ], | 169 ], |
| 172 } | 170 } |
| 173 | 171 |
| 174 # Local Variables: | 172 # Local Variables: |
| 175 # tab-width:2 | 173 # tab-width:2 |
| 176 # indent-tabs-mode:nil | 174 # indent-tabs-mode:nil |
| 177 # End: | 175 # End: |
| 178 # vim: set expandtab tabstop=2 shiftwidth=2: | 176 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |