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

Side by Side Diff: gyp/tools.gyp

Issue 873333004: s/sk_tools::DrawCheckerboard/sk_tool_utils::draw_checkerboard/ (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 10 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/gmslides.gypi ('k') | samplecode/SampleColorFilter.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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'dependencies': [ 82 'dependencies': [
83 'resources', 83 'resources',
84 'flags.gyp:flags', 84 'flags.gyp:flags',
85 'skia_lib.gyp:skia_lib', 85 'skia_lib.gyp:skia_lib',
86 ], 86 ],
87 'direct_dependent_settings': { 87 'direct_dependent_settings': {
88 'include_dirs': [ '../tools', ], 88 'include_dirs': [ '../tools', ],
89 }, 89 },
90 }, 90 },
91 { 91 {
92 'target_name': 'checkerboard',
93 'type': 'static_library',
94 'sources': [ '../tools/Checkerboard.cpp', ],
95 'dependencies': [ 'skia_lib.gyp:skia_lib', ],
96 'direct_dependent_settings': { 'include_dirs': [ '../tools', ], },
97 },
98 {
99 'target_name' : 'timer', 92 'target_name' : 'timer',
100 'type': 'static_library', 93 'type': 'static_library',
101 'sources': [ 94 'sources': [
102 '../tools/timer/Timer.cpp', 95 '../tools/timer/Timer.cpp',
103 '../tools/timer/TimerData.cpp', 96 '../tools/timer/TimerData.cpp',
104 ], 97 ],
105 'include_dirs': [ 98 'include_dirs': [
106 '../src/core', 99 '../src/core',
107 '../src/gpu', 100 '../src/gpu',
108 ], 101 ],
(...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 'flags.gyp:flags', 742 'flags.gyp:flags',
750 'skia_lib.gyp:skia_lib', 743 'skia_lib.gyp:skia_lib',
751 'resources', 744 'resources',
752 ], 745 ],
753 }, 746 },
754 ], 747 ],
755 }, 748 },
756 ], 749 ],
757 ], 750 ],
758 } 751 }
OLDNEW
« no previous file with comments | « gyp/gmslides.gypi ('k') | samplecode/SampleColorFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698