| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 # On Windows make sure we've built Win64 version of chrome_dll, | 498 # On Windows make sure we've built Win64 version of chrome_dll, |
| 499 # which contains all of the library code with Chromium | 499 # which contains all of the library code with Chromium |
| 500 # functionality. | 500 # functionality. |
| 501 'chrome_dll_nacl_win64', | 501 'chrome_dll_nacl_win64', |
| 502 'common_constants_win64', | 502 'common_constants_win64', |
| 503 'installer_util_nacl_win64', | 503 'installer_util_nacl_win64', |
| 504 'app/policy/cloud_policy_codegen.gyp:policy_win64', | 504 'app/policy/cloud_policy_codegen.gyp:policy_win64', |
| 505 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 505 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
| 506 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 506 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
| 507 '../base/base.gyp:base_nacl_win64', | 507 '../base/base.gyp:base_nacl_win64', |
| 508 '../base/base.gyp:base_static_win64', | |
| 509 '../sandbox/sandbox.gyp:sandbox_win64', | 508 '../sandbox/sandbox.gyp:sandbox_win64', |
| 510 ], | 509 ], |
| 511 'defines': [ | 510 'defines': [ |
| 512 '<@(nacl_win64_defines)', | 511 '<@(nacl_win64_defines)', |
| 513 ], | 512 ], |
| 514 'include_dirs': [ | 513 'include_dirs': [ |
| 515 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 514 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 516 ], | 515 ], |
| 517 'msvs_settings': { | 516 'msvs_settings': { |
| 518 'VCLinkerTool': { | 517 'VCLinkerTool': { |
| 519 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', | 518 'ImportLibrary': '$(OutDir)\\lib\\nacl64_exe.lib', |
| 520 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', | 519 'ProgramDatabaseFile': '$(OutDir)\\nacl64_exe.pdb', |
| 521 }, | 520 }, |
| 522 }, | 521 }, |
| 523 'configurations': { | 522 'configurations': { |
| 524 'Common_Base': { | 523 'Common_Base': { |
| 525 'msvs_target_platform': 'x64', | 524 'msvs_target_platform': 'x64', |
| 526 }, | 525 }, |
| 527 }, | 526 }, |
| 528 }, | 527 }, |
| 529 ], | 528 ], |
| 530 }], | 529 }], |
| 531 ], | 530 ], |
| 532 } | 531 } |
| OLD | NEW |