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