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

Side by Side Diff: gyp/SampleApp.gyp

Issue 23352003: Create new target to hold gpu test code, enable direct testing of GrEffects in GM. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Rob's comments Created 7 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 | Annotate | Revision Log
« no previous file with comments | « gm/gmmain.cpp ('k') | gyp/gm.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 'variables': { 2 'variables': {
3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp 3 #manually set sample_pdf_file_viewer to 1 to have the PdfViewer in SampleApp
4 'sample_pdf_file_viewer%': 0, 4 'sample_pdf_file_viewer%': 0,
5 }, 5 },
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'SampleApp', 8 'target_name': 'SampleApp',
9 'type': 'executable', 9 'type': 'executable',
10 'mac_bundle' : 1, 10 'mac_bundle' : 1,
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 ], 293 ],
294 'dependencies!': [ 294 'dependencies!': [
295 'animator.gyp:animator', 295 'animator.gyp:animator',
296 'experimental.gyp:experimental', 296 'experimental.gyp:experimental',
297 ], 297 ],
298 'dependencies': [ 298 'dependencies': [
299 'android_deps.gyp:Android_SampleApp', 299 'android_deps.gyp:Android_SampleApp',
300 ], 300 ],
301 }], 301 }],
302 [ 'skia_gpu == 1', { 302 [ 'skia_gpu == 1', {
303 'include_dirs': [ 303 'dependencies': [
304 '../src/gpu', # To pull gl/GrGLUtil.h 304 'gputest.gyp:skgputest',
305 ], 305 ],
306 }], 306 }],
307 [ 'skia_os == "nacl"', { 307 [ 'skia_os == "nacl"', {
308 'sources': [ 308 'sources': [
309 '../../nacl/src/nacl_sample.cpp', 309 '../../nacl/src/nacl_sample.cpp',
310 ], 310 ],
311 }], 311 }],
312 ], 312 ],
313 'msvs_settings': { 313 'msvs_settings': {
314 'VCLinkerTool': { 314 'VCLinkerTool': {
315 'SubSystem': '2', 315 'SubSystem': '2',
316 }, 316 },
317 }, 317 },
318 }, 318 },
319 ], 319 ],
320 } 320 }
321 321
322 # Local Variables: 322 # Local Variables:
323 # tab-width:2 323 # tab-width:2
324 # indent-tabs-mode:nil 324 # indent-tabs-mode:nil
325 # End: 325 # End:
326 # vim: set expandtab tabstop=2 shiftwidth=2: 326 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gm/gmmain.cpp ('k') | gyp/gm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698