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

Side by Side Diff: gyp/images.gyp

Issue 665913002: Move code to dump GrSurface as a png to helper files (Closed) Base URL: https://skia.googlesource.com/skia.git@separate-image-encoder-01-skimage
Patch Set: address review comments Created 6 years, 2 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
« no previous file with comments | « gyp/core.gypi ('k') | include/gpu/GrSurface.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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:*',
11 'libjpeg.gyp:*', 11 'libjpeg.gyp:*',
12 'etc1.gyp:libetc1', 12 'etc1.gyp:libetc1',
13 'ktx.gyp:libSkKTX', 13 'ktx.gyp:libSkKTX',
14 'libwebp.gyp:libwebp', 14 'libwebp.gyp:libwebp',
15 'utils.gyp:utils', 15 'utils.gyp:utils',
16 ], 16 ],
17 'include_dirs': [ 17 'include_dirs': [
18 '../include/images', 18 '../include/images',
19 '../src/lazy', 19 '../src/lazy',
20 # for access to SkErrorInternals.h 20 # for access to SkErrorInternals.h
21 '../src/core/', 21 '../src/core/',
22 # for access to SkImagePriv.h 22 # for access to SkImagePriv.h
23 '../src/image/', 23 '../src/image/',
24 # for access to GrSurface.h
25 '../include/gpu',
24 ], 26 ],
25 'sources': [ 27 'sources': [
26 '../include/images/SkDecodingImageGenerator.h', 28 '../include/images/SkDecodingImageGenerator.h',
27 '../include/images/SkForceLinking.h', 29 '../include/images/SkForceLinking.h',
28 '../src/images/SkJpegUtility.h', 30 '../src/images/SkJpegUtility.h',
29 '../include/images/SkMovie.h', 31 '../include/images/SkMovie.h',
30 '../include/images/SkPageFlipper.h', 32 '../include/images/SkPageFlipper.h',
31 33
32 '../src/images/bmpdecoderhelper.cpp', 34 '../src/images/bmpdecoderhelper.cpp',
33 '../src/images/bmpdecoderhelper.h', 35 '../src/images/bmpdecoderhelper.h',
(...skipping 29 matching lines...) Expand all
63 '../src/images/SkImageEncoder.cpp', 65 '../src/images/SkImageEncoder.cpp',
64 '../src/images/SkImageEncoder_Factory.cpp', 66 '../src/images/SkImageEncoder_Factory.cpp',
65 '../src/images/SkImageEncoder_argb.cpp', 67 '../src/images/SkImageEncoder_argb.cpp',
66 '../src/images/SkJpegUtility.cpp', 68 '../src/images/SkJpegUtility.cpp',
67 '../src/images/SkMovie.cpp', 69 '../src/images/SkMovie.cpp',
68 '../src/images/SkMovie_gif.cpp', 70 '../src/images/SkMovie_gif.cpp',
69 '../src/images/SkPageFlipper.cpp', 71 '../src/images/SkPageFlipper.cpp',
70 '../src/images/SkScaledBitmapSampler.cpp', 72 '../src/images/SkScaledBitmapSampler.cpp',
71 '../src/images/SkScaledBitmapSampler.h', 73 '../src/images/SkScaledBitmapSampler.h',
72 74
75
76 '../src/ports/SkImagesSupport_default.cpp',
73 '../src/ports/SkImageDecoder_CG.cpp', 77 '../src/ports/SkImageDecoder_CG.cpp',
74 '../src/ports/SkImageDecoder_WIC.cpp', 78 '../src/ports/SkImageDecoder_WIC.cpp',
75 ], 79 ],
76 'conditions': [ 80 'conditions': [
77 [ 'skia_os == "win"', { 81 [ 'skia_os == "win"', {
78 'sources!': [ 82 'sources!': [
79 '../src/images/SkImageDecoder_FactoryDefault.cpp', 83 '../src/images/SkImageDecoder_FactoryDefault.cpp',
80 '../src/images/SkImageDecoder_libgif.cpp', 84 '../src/images/SkImageDecoder_libgif.cpp',
81 '../src/images/SkImageDecoder_libpng.cpp', 85 '../src/images/SkImageDecoder_libpng.cpp',
82 '../src/images/SkMovie_gif.cpp', 86 '../src/images/SkMovie_gif.cpp',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 }], 165 }],
162 ], 166 ],
163 'direct_dependent_settings': { 167 'direct_dependent_settings': {
164 'include_dirs': [ 168 'include_dirs': [
165 '../include/images', 169 '../include/images',
166 ], 170 ],
167 }, 171 },
168 }, 172 },
169 ], 173 ],
170 } 174 }
OLDNEW
« no previous file with comments | « gyp/core.gypi ('k') | include/gpu/GrSurface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698