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

Side by Side Diff: gyp/tools.gyp

Issue 834303005: Factor out checkerboard function in gm and sampleapp into tools. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Another Patch Set 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 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 'dependencies': [ 99 'dependencies': [
100 'resources', 100 'resources',
101 'flags.gyp:flags', 101 'flags.gyp:flags',
102 'skia_lib.gyp:skia_lib', 102 'skia_lib.gyp:skia_lib',
103 ], 103 ],
104 'direct_dependent_settings': { 104 'direct_dependent_settings': {
105 'include_dirs': [ '../tools', ], 105 'include_dirs': [ '../tools', ],
106 }, 106 },
107 }, 107 },
108 { 108 {
109 'target_name': 'checkerboard',
110 'type': 'static_library',
111 'sources': [ '../tools/Checkerboard.cpp', ],
112 'dependencies': [ 'skia_lib.gyp:skia_lib', ],
113 'direct_dependent_settings': { 'include_dirs': [ '../tools', ], },
114 },
115 {
109 'target_name' : 'timer', 116 'target_name' : 'timer',
110 'type': 'static_library', 117 'type': 'static_library',
111 'sources': [ 118 'sources': [
112 '../tools/timer/Timer.cpp', 119 '../tools/timer/Timer.cpp',
113 '../tools/timer/TimerData.cpp', 120 '../tools/timer/TimerData.cpp',
114 ], 121 ],
115 'include_dirs': [ 122 'include_dirs': [
116 '../src/core', 123 '../src/core',
117 '../src/gpu', 124 '../src/gpu',
118 ], 125 ],
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 'flags.gyp:flags', 779 'flags.gyp:flags',
773 'skia_lib.gyp:skia_lib', 780 'skia_lib.gyp:skia_lib',
774 'resources', 781 'resources',
775 ], 782 ],
776 }, 783 },
777 ], 784 ],
778 }, 785 },
779 ], 786 ],
780 ], 787 ],
781 } 788 }
OLDNEW
« no previous file with comments | « gyp/gmslides.gypi ('k') | samplecode/SampleColorFilter.cpp » ('j') | tools/Checkerboard.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698