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

Side by Side Diff: gyp/tools.gyp

Issue 830513004: Simplify skiatest framework. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: mtklein comments Created 5 years, 11 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 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 'type': 'static_library', 612 'type': 'static_library',
613 'sources': [ 613 'sources': [
614 '../tools/ProcStats.h', 614 '../tools/ProcStats.h',
615 '../tools/ProcStats.cpp', 615 '../tools/ProcStats.cpp',
616 ], 616 ],
617 'direct_dependent_settings': { 617 'direct_dependent_settings': {
618 'include_dirs': [ '../tools', ], 618 'include_dirs': [ '../tools', ],
619 }, 619 },
620 }, 620 },
621 { 621 {
622 'target_name': 'temp_directory',
mtklein 2015/01/18 22:57:55 If this sticks, let's call it temp_dir, tempdir or
623 'type': 'static_library',
624 'include_dirs' : [ '../include/core', '../include/config' ],
625 'sources': [
626 '../tools/TempDir.h',
627 '../tools/TempDir.cpp',
628 ],
629 'dependencies': [
630 'flags.gyp:flags',
631 'skia_lib.gyp:skia_lib',
632 ],
633 'direct_dependent_settings': {
634 'include_dirs': [ '../tools', '../include/core', ],
635 },
636 },
637 {
622 'target_name': 'test_public_includes', 638 'target_name': 'test_public_includes',
623 'type': 'static_library', 639 'type': 'static_library',
624 # Ensure that our public headers don't have unused params so that clients 640 # Ensure that our public headers don't have unused params so that clients
625 # (e.g. Android) that include us can build with these warnings enabled 641 # (e.g. Android) that include us can build with these warnings enabled
626 'cflags!': [ '-Wno-unused-parameter' ], 642 'cflags!': [ '-Wno-unused-parameter' ],
627 'variables': { 643 'variables': {
628 'includes_to_test': [ 644 'includes_to_test': [
629 '<(skia_include_path)/animator', 645 '<(skia_include_path)/animator',
630 '<(skia_include_path)/c', 646 '<(skia_include_path)/c',
631 '<(skia_include_path)/config', 647 '<(skia_include_path)/config',
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 'flags.gyp:flags', 788 'flags.gyp:flags',
773 'skia_lib.gyp:skia_lib', 789 'skia_lib.gyp:skia_lib',
774 'resources', 790 'resources',
775 ], 791 ],
776 }, 792 },
777 ], 793 ],
778 }, 794 },
779 ], 795 ],
780 ], 796 ],
781 } 797 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698