Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: gyp/images.gyp

Issue 444093002: - Add astcbitmap to gm slides (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Decode trits/quints into temp buffers Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698