| 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 'etc1.gyp:libetc1', | 12 'etc1.gyp:libetc1', |
| 13 'ktx.gyp:libSkKTX', |
| 13 'libwebp.gyp:libwebp', | 14 'libwebp.gyp:libwebp', |
| 14 'utils.gyp:utils', | 15 'utils.gyp:utils', |
| 15 ], | 16 ], |
| 16 'conditions': [ | 17 'conditions': [ |
| 17 [ 'skia_android_framework == 0', { | 18 [ 'skia_android_framework == 0', { |
| 18 'export_dependent_settings': [ | 19 'export_dependent_settings': [ |
| 19 'libjpeg.gyp:*', | 20 'libjpeg.gyp:*', |
| 20 ], | 21 ], |
| 21 }], | 22 }], |
| 22 ], | 23 ], |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 55 |
| 55 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files | 56 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files |
| 56 # defines the order image decoders are tested when decoding a | 57 # defines the order image decoders are tested when decoding a |
| 57 # stream. The last decoder is the first one tested, so the .cpp | 58 # stream. The last decoder is the first one tested, so the .cpp |
| 58 # files should be in listed in order from the least likely to be | 59 # files should be in listed in order from the least likely to be |
| 59 # used, to the most likely (jpeg and png should be the last two | 60 # used, to the most likely (jpeg and png should be the last two |
| 60 # for instance.) As a result, they are deliberately not in | 61 # for instance.) As a result, they are deliberately not in |
| 61 # alphabetical order. | 62 # alphabetical order. |
| 62 '../src/images/SkImageDecoder_wbmp.cpp', | 63 '../src/images/SkImageDecoder_wbmp.cpp', |
| 63 '../src/images/SkImageDecoder_pkm.cpp', | 64 '../src/images/SkImageDecoder_pkm.cpp', |
| 65 '../src/images/SkImageDecoder_ktx.cpp', |
| 64 '../src/images/SkImageDecoder_libbmp.cpp', | 66 '../src/images/SkImageDecoder_libbmp.cpp', |
| 65 '../src/images/SkImageDecoder_libgif.cpp', | 67 '../src/images/SkImageDecoder_libgif.cpp', |
| 66 '../src/images/SkImageDecoder_libico.cpp', | 68 '../src/images/SkImageDecoder_libico.cpp', |
| 67 '../src/images/SkImageDecoder_libwebp.cpp', | 69 '../src/images/SkImageDecoder_libwebp.cpp', |
| 68 '../src/images/SkImageDecoder_libjpeg.cpp', | 70 '../src/images/SkImageDecoder_libjpeg.cpp', |
| 69 '../src/images/SkImageDecoder_libpng.cpp', | 71 '../src/images/SkImageDecoder_libpng.cpp', |
| 70 | 72 |
| 71 '../src/images/SkImageEncoder.cpp', | 73 '../src/images/SkImageEncoder.cpp', |
| 72 '../src/images/SkImageEncoder_Factory.cpp', | 74 '../src/images/SkImageEncoder_Factory.cpp', |
| 73 '../src/images/SkImageEncoder_argb.cpp', | 75 '../src/images/SkImageEncoder_argb.cpp', |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 }], | 176 }], |
| 175 ], | 177 ], |
| 176 'direct_dependent_settings': { | 178 'direct_dependent_settings': { |
| 177 'include_dirs': [ | 179 'include_dirs': [ |
| 178 '../include/images', | 180 '../include/images', |
| 179 ], | 181 ], |
| 180 }, | 182 }, |
| 181 }, | 183 }, |
| 182 ], | 184 ], |
| 183 } | 185 } |
| OLD | NEW |