| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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': { |
| 7 'nacl_target': 0, |
| 8 }, |
| 6 'includes': [ | 9 'includes': [ |
| 7 'gpu_common.gypi', | 10 'gpu_common.gypi', |
| 8 ], | 11 ], |
| 9 'targets': [ | 12 'targets': [ |
| 10 { | 13 { |
| 11 # Library emulates GLES2 using command_buffers. | 14 # Library emulates GLES2 using command_buffers. |
| 12 'target_name': 'gles2_implementation', | 15 'target_name': 'gles2_implementation', |
| 13 'type': '<(component)', | 16 'type': '<(component)', |
| 14 'dependencies': [ | 17 'dependencies': [ |
| 15 '../base/base.gyp:base', | 18 '../base/base.gyp:base', |
| (...skipping 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 }, | 403 }, |
| 401 { | 404 { |
| 402 'target_name': 'gpu_ipc', | 405 'target_name': 'gpu_ipc', |
| 403 'type': 'none', | 406 'type': 'none', |
| 404 'dependencies': [ | 407 'dependencies': [ |
| 405 'gpu', | 408 'gpu', |
| 406 ], | 409 ], |
| 407 }, | 410 }, |
| 408 ], | 411 ], |
| 409 }], | 412 }], |
| 413 ['disable_nacl!=1' and 'OS=="win"', { |
| 414 'targets': [ |
| 415 { |
| 416 'target_name': 'gpu_ipc_win64', |
| 417 'type': '<(component)', |
| 418 'variables': { |
| 419 'nacl_target': 1, |
| 420 }, |
| 421 'includes': [ |
| 422 'gpu_ipc.gypi', |
| 423 ], |
| 424 'dependencies': [ |
| 425 '../base/base.gyp:base_nacl_win64', |
| 426 '../ipc/ipc.gyp:ipc_win64', |
| 427 ], |
| 428 'defines': [ |
| 429 '<@(nacl_win64_defines)', |
| 430 'GPU_IMPLEMENTATION', |
| 431 ], |
| 432 'configurations': { |
| 433 'Common_Base': { |
| 434 'msvs_target_platform': 'x64', |
| 435 }, |
| 436 }, |
| 437 }, |
| 438 ], |
| 439 }], |
| 410 ], | 440 ], |
| 411 } | 441 } |
| OLD | NEW |