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

Side by Side Diff: gyp/tools.gyp

Issue 19109002: Add the lazy decoder from PictureFlags to SkImageDecoder (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Add include Created 7 years, 5 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 | tools/LazyDecodeBitmap.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 to build various tools. 1 # GYP file to build various tools.
2 # 2 #
3 # To build on Linux: 3 # To build on Linux:
4 # ./gyp_skia tools.gyp && make tools 4 # ./gyp_skia tools.gyp && make tools
5 # 5 #
6 { 6 {
7 'includes': [ 7 'includes': [
8 'apptype_console.gypi', 8 'apptype_console.gypi',
9 ], 9 ],
10 'targets': [ 10 'targets': [
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 'tools.gyp:picture_utils', 181 'tools.gyp:picture_utils',
182 'tools.gyp:picture_renderer', 182 'tools.gyp:picture_renderer',
183 'bench.gyp:bench_timer', 183 'bench.gyp:bench_timer',
184 'flags.gyp:flags', 184 'flags.gyp:flags',
185 ], 185 ],
186 }, 186 },
187 { 187 {
188 'target_name': 'picture_renderer', 188 'target_name': 'picture_renderer',
189 'type': 'static_library', 189 'type': 'static_library',
190 'sources': [ 190 'sources': [
191 '../tools/LazyDecodeBitmap.cpp',
191 '../tools/PictureRenderer.h', 192 '../tools/PictureRenderer.h',
192 '../tools/PictureRenderer.cpp', 193 '../tools/PictureRenderer.cpp',
193 '../tools/PictureRenderingFlags.h', 194 '../tools/PictureRenderingFlags.h',
194 '../tools/PictureRenderingFlags.cpp', 195 '../tools/PictureRenderingFlags.cpp',
195 '../tools/CopyTilesRenderer.h', 196 '../tools/CopyTilesRenderer.h',
196 '../tools/CopyTilesRenderer.cpp', 197 '../tools/CopyTilesRenderer.cpp',
197 '../src/pipe/utils/SamplePipeControllers.h', 198 '../src/pipe/utils/SamplePipeControllers.h',
198 '../src/pipe/utils/SamplePipeControllers.cpp', 199 '../src/pipe/utils/SamplePipeControllers.cpp',
199 ], 200 ],
200 'include_dirs': [ 201 'include_dirs': [
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
288 }, 289 },
289 { 290 {
290 'target_name': 'pinspect', 291 'target_name': 'pinspect',
291 'type': 'executable', 292 'type': 'executable',
292 'sources': [ 293 'sources': [
293 '../tools/pinspect.cpp', 294 '../tools/pinspect.cpp',
294 ], 295 ],
295 'dependencies': [ 296 'dependencies': [
296 'skia_lib.gyp:skia_lib', 297 'skia_lib.gyp:skia_lib',
297 'tools.gyp:picture_renderer', 298 'tools.gyp:picture_renderer',
299 'flags.gyp:flags',
298 ], 300 ],
299 }, 301 },
300 { 302 {
301 'target_name': 'filter', 303 'target_name': 'filter',
302 'type': 'executable', 304 'type': 'executable',
303 'include_dirs' : [ 305 'include_dirs' : [
304 '../src/core', 306 '../src/core',
305 '../src/utils/debugger', 307 '../src/utils/debugger',
306 ], 308 ],
307 'sources': [ 309 'sources': [
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 }, 389 },
388 ], 390 ],
389 ], 391 ],
390 } 392 }
391 393
392 # Local Variables: 394 # Local Variables:
393 # tab-width:2 395 # tab-width:2
394 # indent-tabs-mode:nil 396 # indent-tabs-mode:nil
395 # End: 397 # End:
396 # vim: set expandtab tabstop=2 shiftwidth=2: 398 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | tools/LazyDecodeBitmap.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698