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

Side by Side Diff: gyp/tools.gyp

Issue 212563009: Lazy image decoding to reduce bench_record overhead. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 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
« no previous file with comments | « no previous file | tools/bench_record.cpp » ('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 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 'bench.gyp:bench_timer', 285 'bench.gyp:bench_timer',
286 'flags.gyp:flags', 286 'flags.gyp:flags',
287 'skia_lib.gyp:skia_lib', 287 'skia_lib.gyp:skia_lib',
288 'tools.gyp:picture_utils', 288 'tools.gyp:picture_utils',
289 'tools.gyp:picture_renderer', 289 'tools.gyp:picture_renderer',
290 ], 290 ],
291 }, 291 },
292 { 292 {
293 'target_name': 'bench_record', 293 'target_name': 'bench_record',
294 'type': 'executable', 294 'type': 'executable',
295 'sources': ['../tools/bench_record.cpp'], 295 'sources': [
296 'include_dirs': [ '../src/core/' ], 296 '../tools/bench_record.cpp',
297 '../tools/LazyDecodeBitmap.cpp',
298 ],
299 'include_dirs': [
300 '../src/core/',
301 '../src/images',
302 '../src/lazy',
303 ],
297 'dependencies': [ 304 'dependencies': [
298 'flags.gyp:flags', 305 'flags.gyp:flags',
299 'skia_lib.gyp:skia_lib', 306 'skia_lib.gyp:skia_lib',
300 ], 307 ],
301 }, 308 },
302 { 309 {
303 'target_name': 'picture_renderer', 310 'target_name': 'picture_renderer',
304 'type': 'static_library', 311 'type': 'static_library',
305 'sources': [ 312 'sources': [
306 '../tools/LazyDecodeBitmap.cpp', 313 '../tools/LazyDecodeBitmap.cpp',
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
546 'type': 'executable', 553 'type': 'executable',
547 'sources': [ 554 'sources': [
548 '../tools/win_lcid.cpp', 555 '../tools/win_lcid.cpp',
549 ], 556 ],
550 }, 557 },
551 ], 558 ],
552 }, 559 },
553 ], 560 ],
554 ], 561 ],
555 } 562 }
OLDNEW
« no previous file with comments | « no previous file | tools/bench_record.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698