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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files | 52 # IMPORTANT: The build order of the SkImageDecoder_*.cpp files |
53 # defines the order image decoders are tested when decoding a | 53 # defines the order image decoders are tested when decoding a |
54 # stream. The last decoder is the first one tested, so the .cpp | 54 # stream. The last decoder is the first one tested, so the .cpp |
55 # files should be in listed in order from the least likely to be | 55 # files should be in listed in order from the least likely to be |
56 # used, to the most likely (jpeg and png should be the last two | 56 # used, to the most likely (jpeg and png should be the last two |
57 # for instance.) As a result, they are deliberately not in | 57 # for instance.) As a result, they are deliberately not in |
58 # alphabetical order. | 58 # alphabetical order. |
59 '../src/images/SkImageDecoder_wbmp.cpp', | 59 '../src/images/SkImageDecoder_wbmp.cpp', |
60 '../src/images/SkImageDecoder_pkm.cpp', | 60 '../src/images/SkImageDecoder_pkm.cpp', |
61 '../src/images/SkImageDecoder_ktx.cpp', | 61 '../src/images/SkImageDecoder_ktx.cpp', |
| 62 '../src/images/SkImageDecoder_astc.cpp', |
62 '../src/images/SkImageDecoder_libbmp.cpp', | 63 '../src/images/SkImageDecoder_libbmp.cpp', |
63 '../src/images/SkImageDecoder_libgif.cpp', | 64 '../src/images/SkImageDecoder_libgif.cpp', |
64 '../src/images/SkImageDecoder_libico.cpp', | 65 '../src/images/SkImageDecoder_libico.cpp', |
65 '../src/images/SkImageDecoder_libwebp.cpp', | 66 '../src/images/SkImageDecoder_libwebp.cpp', |
66 '../src/images/SkImageDecoder_libjpeg.cpp', | 67 '../src/images/SkImageDecoder_libjpeg.cpp', |
67 '../src/images/SkImageDecoder_libpng.cpp', | 68 '../src/images/SkImageDecoder_libpng.cpp', |
68 | 69 |
69 '../src/images/SkImageEncoder.cpp', | 70 '../src/images/SkImageEncoder.cpp', |
70 '../src/images/SkImageEncoder_Factory.cpp', | 71 '../src/images/SkImageEncoder_Factory.cpp', |
71 '../src/images/SkImageEncoder_argb.cpp', | 72 '../src/images/SkImageEncoder_argb.cpp', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 }], | 159 }], |
159 ], | 160 ], |
160 'direct_dependent_settings': { | 161 'direct_dependent_settings': { |
161 'include_dirs': [ | 162 'include_dirs': [ |
162 '../include/images', | 163 '../include/images', |
163 ], | 164 ], |
164 }, | 165 }, |
165 }, | 166 }, |
166 ], | 167 ], |
167 } | 168 } |
OLD | NEW |