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

Side by Side Diff: gyp/tools.gyp

Issue 257563006: use BenchTimer, print in µs (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: stray u Created 6 years, 7 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/bench.gyp ('k') | tools/bench_playback.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 285 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 'sources': [ 296 'sources': [
297 '../tools/bench_record.cpp', 297 '../tools/bench_record.cpp',
298 '../tools/LazyDecodeBitmap.cpp', 298 '../tools/LazyDecodeBitmap.cpp',
299 ], 299 ],
300 'include_dirs': [ 300 'include_dirs': [
301 '../src/core/', 301 '../src/core/',
302 '../src/images', 302 '../src/images',
303 '../src/lazy', 303 '../src/lazy',
304 ], 304 ],
305 'dependencies': [ 305 'dependencies': [
306 'bench.gyp:bench_timer',
306 'flags.gyp:flags', 307 'flags.gyp:flags',
307 'skia_lib.gyp:skia_lib', 308 'skia_lib.gyp:skia_lib',
308 'record.gyp:*', 309 'record.gyp:*',
309 ], 310 ],
310 }, 311 },
311 { 312 {
312 'target_name': 'bench_playback', 313 'target_name': 'bench_playback',
313 'type': 'executable', 314 'type': 'executable',
314 'sources': [ 315 'sources': [
315 '../tools/bench_playback.cpp', 316 '../tools/bench_playback.cpp',
316 ], 317 ],
317 'include_dirs': [ 318 'include_dirs': [
318 '../src/core/', 319 '../src/core/',
319 '../src/images', 320 '../src/images',
320 '../src/record', 321 '../src/record',
321 ], 322 ],
322 'dependencies': [ 323 'dependencies': [
324 'bench.gyp:bench_timer',
323 'flags.gyp:flags', 325 'flags.gyp:flags',
324 'skia_lib.gyp:skia_lib', 326 'skia_lib.gyp:skia_lib',
325 'record.gyp:*', 327 'record.gyp:*',
326 ], 328 ],
327 }, 329 },
328 { 330 {
329 'target_name': 'picture_renderer', 331 'target_name': 'picture_renderer',
330 'type': 'static_library', 332 'type': 'static_library',
331 'sources': [ 333 'sources': [
332 '../tools/LazyDecodeBitmap.cpp', 334 '../tools/LazyDecodeBitmap.cpp',
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 'type': 'executable', 574 'type': 'executable',
573 'sources': [ 575 'sources': [
574 '../tools/win_lcid.cpp', 576 '../tools/win_lcid.cpp',
575 ], 577 ],
576 }, 578 },
577 ], 579 ],
578 }, 580 },
579 ], 581 ],
580 ], 582 ],
581 } 583 }
OLDNEW
« no previous file with comments | « gyp/bench.gyp ('k') | tools/bench_playback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698