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', | |
63 '../src/images/SkImageDecoder_libbmp.cpp', | 62 '../src/images/SkImageDecoder_libbmp.cpp', |
64 '../src/images/SkImageDecoder_libgif.cpp', | 63 '../src/images/SkImageDecoder_libgif.cpp', |
65 '../src/images/SkImageDecoder_libico.cpp', | 64 '../src/images/SkImageDecoder_libico.cpp', |
66 '../src/images/SkImageDecoder_libwebp.cpp', | 65 '../src/images/SkImageDecoder_libwebp.cpp', |
67 '../src/images/SkImageDecoder_libjpeg.cpp', | 66 '../src/images/SkImageDecoder_libjpeg.cpp', |
68 '../src/images/SkImageDecoder_libpng.cpp', | 67 '../src/images/SkImageDecoder_libpng.cpp', |
69 | 68 |
70 '../src/images/SkImageEncoder.cpp', | 69 '../src/images/SkImageEncoder.cpp', |
71 '../src/images/SkImageEncoder_Factory.cpp', | 70 '../src/images/SkImageEncoder_Factory.cpp', |
72 '../src/images/SkImageEncoder_argb.cpp', | 71 '../src/images/SkImageEncoder_argb.cpp', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 }], | 158 }], |
160 ], | 159 ], |
161 'direct_dependent_settings': { | 160 'direct_dependent_settings': { |
162 'include_dirs': [ | 161 'include_dirs': [ |
163 '../include/images', | 162 '../include/images', |
164 ], | 163 ], |
165 }, | 164 }, |
166 }, | 165 }, |
167 ], | 166 ], |
168 } | 167 } |
OLD | NEW |