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

Side by Side Diff: gyp/images.gyp

Issue 14298010: Updates to images project. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Name changes Created 7 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | include/images/SkImageDecoder.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 { 1 {
2 'targets': [ 2 'targets': [
3 { 3 {
4 'target_name': 'images', 4 'target_name': 'images',
5 'product_name': 'skia_images', 5 'product_name': 'skia_images',
6 'type': 'static_library', 6 'type': 'static_library',
7 'standalone_static_library': 1, 7 'standalone_static_library': 1,
8 'dependencies': [ 8 'dependencies': [
9 'libjpeg.gyp:*', 9 'libjpeg.gyp:*',
10 'libwebp.gyp:libwebp', 10 'libwebp.gyp:libwebp',
11 'utils.gyp:utils', 11 'utils.gyp:utils',
(...skipping 17 matching lines...) Expand all
29 '../src/images/SkJpegUtility.h', 29 '../src/images/SkJpegUtility.h',
30 '../include/images/SkMovie.h', 30 '../include/images/SkMovie.h',
31 '../include/images/SkPageFlipper.h', 31 '../include/images/SkPageFlipper.h',
32 32
33 '../src/images/bmpdecoderhelper.cpp', 33 '../src/images/bmpdecoderhelper.cpp',
34 '../src/images/bmpdecoderhelper.h', 34 '../src/images/bmpdecoderhelper.h',
35 35
36 '../src/images/SkBitmapRegionDecoder.cpp', 36 '../src/images/SkBitmapRegionDecoder.cpp',
37 37
38 '../src/images/SkImageDecoder.cpp', 38 '../src/images/SkImageDecoder.cpp',
39 '../src/images/SkImageDecoder_Factory.cpp', 39 '../src/images/SkImageDecoder_FactoryDefault.cpp',
40 '../src/images/SkImageDecoder_FactoryRegistrar.cpp',
40 '../src/images/SkImageDecoder_libbmp.cpp', 41 '../src/images/SkImageDecoder_libbmp.cpp',
41 '../src/images/SkImageDecoder_libgif.cpp', 42 '../src/images/SkImageDecoder_libgif.cpp',
42 '../src/images/SkImageDecoder_libico.cpp', 43 '../src/images/SkImageDecoder_libico.cpp',
43 '../src/images/SkImageDecoder_libjpeg.cpp', 44 '../src/images/SkImageDecoder_libjpeg.cpp',
44 '../src/images/SkImageDecoder_libpng.cpp', 45 '../src/images/SkImageDecoder_libpng.cpp',
45 '../src/images/SkImageDecoder_libwebp.cpp', 46 '../src/images/SkImageDecoder_libwebp.cpp',
46 '../src/images/SkImageDecoder_wbmp.cpp', 47 '../src/images/SkImageDecoder_wbmp.cpp',
47 '../src/images/SkImageEncoder.cpp', 48 '../src/images/SkImageEncoder.cpp',
48 '../src/images/SkImageEncoder_Factory.cpp', 49 '../src/images/SkImageEncoder_Factory.cpp',
49 '../src/images/SkImageRef.cpp', 50 '../src/images/SkImageRef.cpp',
(...skipping 10 matching lines...) Expand all
60 '../src/images/SkScaledBitmapSampler.cpp', 61 '../src/images/SkScaledBitmapSampler.cpp',
61 '../src/images/SkScaledBitmapSampler.h', 62 '../src/images/SkScaledBitmapSampler.h',
62 63
63 '../src/ports/SkImageDecoder_CG.cpp', 64 '../src/ports/SkImageDecoder_CG.cpp',
64 '../src/ports/SkImageDecoder_WIC.cpp', 65 '../src/ports/SkImageDecoder_WIC.cpp',
65 ], 66 ],
66 'conditions': [ 67 'conditions': [
67 [ 'skia_os == "win"', { 68 [ 'skia_os == "win"', {
68 'sources!': [ 69 'sources!': [
69 '../src/images/SkFDStream.cpp', 70 '../src/images/SkFDStream.cpp',
70 '../src/images/SkImageDecoder_Factory.cpp', 71 '../src/images/SkImageDecoder_FactoryDefault.cpp',
71 '../src/images/SkImageDecoder_libgif.cpp', 72 '../src/images/SkImageDecoder_libgif.cpp',
72 '../src/images/SkImageDecoder_libpng.cpp', 73 '../src/images/SkImageDecoder_libpng.cpp',
73 '../src/images/SkImageEncoder_Factory.cpp',
74 '../src/images/SkMovie_gif.cpp', 74 '../src/images/SkMovie_gif.cpp',
75 ], 75 ],
76 'link_settings': { 76 'link_settings': {
77 'libraries': [ 77 'libraries': [
78 'windowscodecs.lib', 78 'windowscodecs.lib',
79 ], 79 ],
80 }, 80 },
81 },{ #else if skia_os != win 81 },{ #else if skia_os != win
82 'sources!': [ 82 'sources!': [
83 '../src/ports/SkImageDecoder_WIC.cpp', 83 '../src/ports/SkImageDecoder_WIC.cpp',
84 ], 84 ],
85 }], 85 }],
86 [ 'skia_os in ["mac", "ios"]', { 86 [ 'skia_os in ["mac", "ios"]', {
87 'sources!': [ 87 'sources!': [
88 '../src/images/SkImageDecoder_Factory.cpp', 88 '../src/images/SkImageDecoder_FactoryDefault.cpp',
89 '../src/images/SkImageDecoder_libpng.cpp', 89 '../src/images/SkImageDecoder_libpng.cpp',
90 '../src/images/SkImageDecoder_libgif.cpp', 90 '../src/images/SkImageDecoder_libgif.cpp',
91 '../src/images/SkImageEncoder_Factory.cpp',
92 '../src/images/SkMovie_gif.cpp', 91 '../src/images/SkMovie_gif.cpp',
93 ], 92 ],
94 },{ #else if skia_os != mac 93 },{ #else if skia_os != mac
95 'sources!': [ 94 'sources!': [
96 '../src/ports/SkImageDecoder_CG.cpp', 95 '../src/ports/SkImageDecoder_CG.cpp',
97 ], 96 ],
98 }], 97 }],
99 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', { 98 [ 'skia_os in ["linux", "freebsd", "openbsd", "solaris"]', {
100 # Any targets that depend on this target should link in libpng, libgif , and 99 # Any targets that depend on this target should link in libpng, libgif , and
101 # our code that calls it. 100 # our code that calls it.
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 }, 157 },
159 }, 158 },
160 ], 159 ],
161 } 160 }
162 161
163 # Local Variables: 162 # Local Variables:
164 # tab-width:2 163 # tab-width:2
165 # indent-tabs-mode:nil 164 # indent-tabs-mode:nil
166 # End: 165 # End:
167 # vim: set expandtab tabstop=2 shiftwidth=2: 166 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | include/images/SkImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698