| 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': { | 6 'variables': { |
| 7 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
| (...skipping 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 }, | 403 }, |
| 404 { | 404 { |
| 405 'target_name': 'gpu_ipc', | 405 'target_name': 'gpu_ipc', |
| 406 'type': 'none', | 406 'type': 'none', |
| 407 'dependencies': [ | 407 'dependencies': [ |
| 408 'gpu', | 408 'gpu', |
| 409 ], | 409 ], |
| 410 }, | 410 }, |
| 411 ], | 411 ], |
| 412 }], | 412 }], |
| 413 ['disable_nacl!=1' and 'OS=="win"', { | 413 ['disable_nacl!=1 and OS=="win"', { |
| 414 'targets': [ | 414 'targets': [ |
| 415 { | 415 { |
| 416 'target_name': 'gpu_ipc_win64', | 416 'target_name': 'gpu_ipc_win64', |
| 417 'type': 'static_library', | 417 'type': 'static_library', |
| 418 'variables': { | 418 'variables': { |
| 419 'nacl_win64_target': 1, | 419 'nacl_win64_target': 1, |
| 420 }, | 420 }, |
| 421 'includes': [ | 421 'includes': [ |
| 422 'gpu_ipc.gypi', | 422 'gpu_ipc.gypi', |
| 423 ], | 423 ], |
| 424 'dependencies': [ | 424 'dependencies': [ |
| 425 '../base/base.gyp:base_nacl_win64', | 425 '../base/base.gyp:base_nacl_win64', |
| 426 '../ipc/ipc.gyp:ipc_win64', | 426 '../ipc/ipc.gyp:ipc_win64', |
| 427 ], | 427 ], |
| 428 'defines': [ | 428 'defines': [ |
| 429 '<@(nacl_win64_defines)', | 429 '<@(nacl_win64_defines)', |
| 430 'GPU_IMPLEMENTATION', | 430 'GPU_IMPLEMENTATION', |
| 431 ], | 431 ], |
| 432 'configurations': { | 432 'configurations': { |
| 433 'Common_Base': { | 433 'Common_Base': { |
| 434 'msvs_target_platform': 'x64', | 434 'msvs_target_platform': 'x64', |
| 435 }, | 435 }, |
| 436 }, | 436 }, |
| 437 }, | 437 }, |
| 438 ], | 438 ], |
| 439 }], | 439 }], |
| 440 ], | 440 ], |
| 441 } | 441 } |
| OLD | NEW |