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

Side by Side Diff: gyp/tools.gyp

Issue 551263003: Clean up old custom tools now subsumed by nanobench. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 3 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_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': [
11 { 11 {
12 # Build all executable targets defined below. 12 # Build all executable targets defined below.
13 'target_name': 'tools', 13 'target_name': 'tools',
14 'type': 'none', 14 'type': 'none',
15 'dependencies': [ 15 'dependencies': [
16 'bbh_shootout', 16 'bbh_shootout',
17 'bench_pictures', 17 'bench_pictures',
18 'bench_record',
19 'bench_playback',
20 'dump_record', 18 'dump_record',
21 'filter', 19 'filter',
22 'gpuveto', 20 'gpuveto',
23 'lua_app', 21 'lua_app',
24 'lua_pictures', 22 'lua_pictures',
25 'pinspect', 23 'pinspect',
26 'render_pdfs', 24 'render_pdfs',
27 'render_pictures', 25 'render_pictures',
28 'skdiff', 26 'skdiff',
29 'skhello', 27 'skhello',
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 'tools.gyp:picture_renderer', 404 'tools.gyp:picture_renderer',
407 'tools.gyp:picture_utils', 405 'tools.gyp:picture_utils',
408 ], 406 ],
409 'conditions': [ 407 'conditions': [
410 ['skia_android_framework == 1', { 408 ['skia_android_framework == 1', {
411 'libraries': [ '-lskia' ], 409 'libraries': [ '-lskia' ],
412 }], 410 }],
413 ], 411 ],
414 }, 412 },
415 { 413 {
416 'target_name': 'bench_record',
417 'type': 'executable',
418 'sources': [
419 '../tools/bench_record.cpp',
420 '../tools/LazyDecodeBitmap.cpp',
421 ],
422 'include_dirs': [
423 '../src/core/',
424 '../src/images',
425 '../src/lazy',
426 ],
427 'dependencies': [
428 'timer',
429 'flags.gyp:flags',
430 'skia_lib.gyp:skia_lib',
431 ],
432 },
433 {
434 'target_name': 'bench_playback',
435 'type': 'executable',
436 'sources': [
437 '../tools/bench_playback.cpp',
438 ],
439 'include_dirs': [
440 '../src/core/',
441 '../src/images',
442 ],
443 'dependencies': [
444 'timer',
445 'flags.gyp:flags',
446 'skia_lib.gyp:skia_lib',
447 ],
448 },
449 {
450 'target_name': 'dump_record', 414 'target_name': 'dump_record',
451 'type': 'executable', 415 'type': 'executable',
452 'sources': [ 416 'sources': [
453 '../tools/dump_record.cpp', 417 '../tools/dump_record.cpp',
454 '../tools/DumpRecord.cpp', 418 '../tools/DumpRecord.cpp',
455 '../tools/LazyDecodeBitmap.cpp', 419 '../tools/LazyDecodeBitmap.cpp',
456 ], 420 ],
457 'include_dirs': [ 421 'include_dirs': [
458 '../src/core/', 422 '../src/core/',
459 '../src/images', 423 '../src/images',
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 'flags.gyp:flags', 707 'flags.gyp:flags',
744 'skia_lib.gyp:skia_lib', 708 'skia_lib.gyp:skia_lib',
745 'resources', 709 'resources',
746 ], 710 ],
747 }, 711 },
748 ], 712 ],
749 }, 713 },
750 ], 714 ],
751 ], 715 ],
752 } 716 }
OLDNEW
« no previous file with comments | « no previous file | tools/bench_playback.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698