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

Side by Side Diff: gpu/gpu.gyp

Issue 542119: Fixed gles2 demo by switching it from a console application to a windowed one... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | Annotate | Revision Log
« no previous file with comments | « gpu/command_buffer/client/gles2_demo.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # This is defined here because we need to compile this set of files 8 # This is defined here because we need to compile this set of files
9 # twice with different defines. Once so it calls real GL, again so it 9 # twice with different defines. Once so it calls real GL, again so it
10 # calls mock GL for the unit tests. 10 # calls mock GL for the unit tests.
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 { 393 {
394 'target_name': 'gles2_demo', 394 'target_name': 'gles2_demo',
395 'type': 'executable', 395 'type': 'executable',
396 'dependencies': [ 396 'dependencies': [
397 'command_buffer_service', 397 'command_buffer_service',
398 'gles2_demo_lib', 398 'gles2_demo_lib',
399 ], 399 ],
400 'sources': [ 400 'sources': [
401 'command_buffer/client/gles2_demo.cc', 401 'command_buffer/client/gles2_demo.cc',
402 ], 402 ],
403 'msvs_settings': {
404 'VCLinkerTool': {
405 # 0 == not set
406 # 1 == /SUBSYSTEM:CONSOLE
407 # 2 == /SUBSYSTEM:WINDOWS
408 'SubSystem': '2',
409 },
410 },
403 }, 411 },
404 ], 412 ],
405 }, 413 },
406 ], 414 ],
407 ], 415 ],
408 } 416 }
409 417
410 # Local Variables: 418 # Local Variables:
411 # tab-width:2 419 # tab-width:2
412 # indent-tabs-mode:nil 420 # indent-tabs-mode:nil
413 # End: 421 # End:
414 # vim: set expandtab tabstop=2 shiftwidth=2: 422 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/gles2_demo.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698