| 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 '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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'targets': [ | 123 'targets': [ |
| 124 { | 124 { |
| 125 'target_name': 'chrome', | 125 'target_name': 'chrome', |
| 126 'type': 'executable', | 126 'type': 'executable', |
| 127 'mac_bundle': 1, | 127 'mac_bundle': 1, |
| 128 'msvs_guid': '7B219FAA-E360-43C8-B341-804A94EEFFAC', | 128 'msvs_guid': '7B219FAA-E360-43C8-B341-804A94EEFFAC', |
| 129 'variables': { | 129 'variables': { |
| 130 'chrome_exe_target': 1, | 130 'chrome_exe_target': 1, |
| 131 }, | 131 }, |
| 132 'conditions': [ | 132 'conditions': [ |
| 133 ['chrome_frame_define==1 and OS=="win"', { | |
| 134 # TODO(gregoryd): This could be shared with the 64-bit target, but | |
| 135 # it does not work due to a gyp issue. | |
| 136 'dependencies': [ | |
| 137 '../chrome_frame/chrome_frame.gyp:npchrome_frame', | |
| 138 ], | |
| 139 }], | |
| 140 ['OS=="linux" or OS=="freebsd"', { | 133 ['OS=="linux" or OS=="freebsd"', { |
| 141 'actions': [ | 134 'actions': [ |
| 142 { | 135 { |
| 143 'action_name': 'manpage', | 136 'action_name': 'manpage', |
| 144 'conditions': [ | 137 'conditions': [ |
| 145 [ 'branding == "Chrome"', { | 138 [ 'branding == "Chrome"', { |
| 146 'variables': { | 139 'variables': { |
| 147 'name': 'Google Chrome', | 140 'name': 'Google Chrome', |
| 148 'filename': 'google-chrome', | 141 'filename': 'google-chrome', |
| 149 'confdir': 'google-chrome', | 142 'confdir': 'google-chrome', |
| (...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 502 'dependencies': [ | 495 'dependencies': [ |
| 503 # On Windows make sure we've built Win64 version of chrome_dll, | 496 # On Windows make sure we've built Win64 version of chrome_dll, |
| 504 # which contains all of the library code with Chromium | 497 # which contains all of the library code with Chromium |
| 505 # functionality. | 498 # functionality. |
| 506 'chrome_dll_nacl_win64', | 499 'chrome_dll_nacl_win64', |
| 507 'installer/installer.gyp:installer_util_nacl_win64', | 500 'installer/installer.gyp:installer_util_nacl_win64', |
| 508 'common_constants_win64', | 501 'common_constants_win64', |
| 509 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 502 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
| 510 '../breakpad/breakpad.gyp:breakpad_sender_win64', | 503 '../breakpad/breakpad.gyp:breakpad_sender_win64', |
| 511 '../base/base.gyp:base_nacl_win64', | 504 '../base/base.gyp:base_nacl_win64', |
| 505 '../chrome_frame/chrome_frame.gyp:npchrome_frame', |
| 512 # TODO(gregoryd): build sandbox for 64 bit | 506 # TODO(gregoryd): build sandbox for 64 bit |
| 513 # '../sandbox/sandbox.gyp:sandbox', | 507 # '../sandbox/sandbox.gyp:sandbox', |
| 514 ], | 508 ], |
| 515 'defines': [ | 509 'defines': [ |
| 516 '<@(nacl_win64_defines)', | 510 '<@(nacl_win64_defines)', |
| 517 ], | 511 ], |
| 518 'include_dirs': [ | 512 'include_dirs': [ |
| 519 '<(SHARED_INTERMEDIATE_DIR)/chrome', | 513 '<(SHARED_INTERMEDIATE_DIR)/chrome', |
| 520 ], | 514 ], |
| 521 'msvs_settings': { | 515 'msvs_settings': { |
| 522 'VCLinkerTool': { | 516 'VCLinkerTool': { |
| 523 'ImportLibrary': '$(OutDir)\\lib\\nacl_exe.lib', | 517 'ImportLibrary': '$(OutDir)\\lib\\nacl_exe.lib', |
| 524 'ProgramDatabaseFile': '$(OutDir)\\nacl_exe.pdb', | 518 'ProgramDatabaseFile': '$(OutDir)\\nacl_exe.pdb', |
| 525 }, | 519 }, |
| 526 }, | 520 }, |
| 527 'conditions': [ | |
| 528 ['chrome_frame_define==1 and OS=="win"', { | |
| 529 # TODO(gregoryd): This could be shared with the 32-bit target, but | |
| 530 # it does not work due to a gyp issue. | |
| 531 'dependencies': [ | |
| 532 '../chrome_frame/chrome_frame.gyp:npchrome_frame', | |
| 533 ], | |
| 534 }], | |
| 535 ], | |
| 536 'configurations': { | 521 'configurations': { |
| 537 'Common_Base': { | 522 'Common_Base': { |
| 538 'msvs_target_platform': 'x64', | 523 'msvs_target_platform': 'x64', |
| 539 }, | 524 }, |
| 540 }, | 525 }, |
| 541 }, | 526 }, |
| 542 ], | 527 ], |
| 543 }], | 528 }], |
| 544 ], | 529 ], |
| 545 } | 530 } |
| OLD | NEW |