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

Side by Side Diff: gyp/SampleApp.gyp

Issue 344213003: Move BenchTimer to tools as Timer (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: fixes Created 6 years, 6 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 # 1 #
2 { 2 {
3 'variables': { 3 'variables': {
4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 4 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
5 'sample_pdf_file_viewer%': 0, 5 'sample_pdf_file_viewer%': 0,
6 }, 6 },
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'SampleApp', 9 'target_name': 'SampleApp',
10 'type': 'executable', 10 'type': 'executable',
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after
143 '../samplecode/SampleWarp.cpp', 143 '../samplecode/SampleWarp.cpp',
144 '../samplecode/SampleFontCache.cpp', 144 '../samplecode/SampleFontCache.cpp',
145 ], 145 ],
146 'dependencies': [ 146 'dependencies': [
147 'animator.gyp:animator', 147 'animator.gyp:animator',
148 'etc1.gyp:libetc1', 148 'etc1.gyp:libetc1',
149 'experimental.gyp:experimental', 149 'experimental.gyp:experimental',
150 'flags.gyp:flags', 150 'flags.gyp:flags',
151 'lua.gyp:lua', 151 'lua.gyp:lua',
152 'pdf.gyp:pdf', 152 'pdf.gyp:pdf',
153 'resources.gyp:resources',
154 'skia_lib.gyp:skia_lib', 153 'skia_lib.gyp:skia_lib',
154 'tools.gyp:resources',
155 'views.gyp:views', 155 'views.gyp:views',
156 'views_animated.gyp:views_animated', 156 'views_animated.gyp:views_animated',
157 'xml.gyp:xml', 157 'xml.gyp:xml',
158 ], 158 ],
159 'conditions' : [ 159 'conditions' : [
160 [ 'sample_pdf_file_viewer == 1', { 160 [ 'sample_pdf_file_viewer == 1', {
161 'defines': [ 161 'defines': [
162 'SAMPLE_PDF_FILE_VIEWER', 162 'SAMPLE_PDF_FILE_VIEWER',
163 ], 163 ],
164 'dependencies': [ 164 'dependencies': [
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
302 }], 302 }],
303 ], 303 ],
304 'msvs_settings': { 304 'msvs_settings': {
305 'VCLinkerTool': { 305 'VCLinkerTool': {
306 'SubSystem': '2', 306 'SubSystem': '2',
307 }, 307 },
308 }, 308 },
309 }, 309 },
310 ], 310 ],
311 } 311 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698