| OLD | NEW |
| 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 Loading... |
| 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: |
| OLD | NEW |