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

Side by Side Diff: gyp/tools.gyp

Issue 483323002: Print max RSS in GM and nanobench too. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years, 4 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
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 512 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 'include_dirs': [ 523 'include_dirs': [
524 '../src/core', 524 '../src/core',
525 '../src/pipe/utils/', 525 '../src/pipe/utils/',
526 '../src/utils/', 526 '../src/utils/',
527 ], 527 ],
528 'dependencies': [ 528 'dependencies': [
529 'flags.gyp:flags', 529 'flags.gyp:flags',
530 'pdf.gyp:pdf', 530 'pdf.gyp:pdf',
531 'skia_lib.gyp:skia_lib', 531 'skia_lib.gyp:skia_lib',
532 'tools.gyp:picture_utils', 532 'tools.gyp:picture_utils',
533 'tools.gyp:sk_tool_proc_stats', 533 'tools.gyp:proc_stats',
534 ], 534 ],
535 'conditions': [ 535 'conditions': [
536 ['skia_win_debuggers_path and skia_os == "win"', 536 ['skia_win_debuggers_path and skia_os == "win"',
537 { 537 {
538 'dependencies': [ 538 'dependencies': [
539 'tools.gyp:win_dbghelp', 539 'tools.gyp:win_dbghelp',
540 ], 540 ],
541 }, 541 },
542 ], 542 ],
543 # VS static libraries don't have a linker option. We must set a global 543 # VS static libraries don't have a linker option. We must set a global
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
641 'target_name': 'test_image_decoder', 641 'target_name': 'test_image_decoder',
642 'type': 'executable', 642 'type': 'executable',
643 'sources': [ 643 'sources': [
644 '../tools/test_image_decoder.cpp', 644 '../tools/test_image_decoder.cpp',
645 ], 645 ],
646 'dependencies': [ 646 'dependencies': [
647 'skia_lib.gyp:skia_lib', 647 'skia_lib.gyp:skia_lib',
648 ], 648 ],
649 }, 649 },
650 { 650 {
651 'target_name': 'sk_tool_proc_stats', 651 'target_name': 'proc_stats',
652 'type': 'static_library', 652 'type': 'static_library',
653 'sources': [ 653 'sources': [
654 '../tools/ProcStats.h', 654 '../tools/ProcStats.h',
655 '../tools/ProcStats.cpp', 655 '../tools/ProcStats.cpp',
656 ], 656 ],
657 'direct_dependent_settings': { 657 'direct_dependent_settings': {
658 'include_dirs': [ '../tools', ], 658 'include_dirs': [ '../tools', ],
659 }, 659 },
660 }, 660 },
661 ], 661 ],
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
743 'flags.gyp:flags', 743 'flags.gyp:flags',
744 'skia_lib.gyp:skia_lib', 744 'skia_lib.gyp:skia_lib',
745 'resources', 745 'resources',
746 ], 746 ],
747 }, 747 },
748 ], 748 ],
749 }, 749 },
750 ], 750 ],
751 ], 751 ],
752 } 752 }
OLDNEW
« bench/nanobench.cpp ('K') | « gyp/gm.gyp ('k') | tools/ProcStats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698