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 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'chrome', | 8 'target_name': 'chrome', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'mac_bundle': 1, | 10 'mac_bundle': 1, |
(...skipping 452 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 'dependencies': [ | 463 'dependencies': [ |
464 'chrome_dll', | 464 'chrome_dll', |
465 'chrome_nacl_win64', | 465 'chrome_nacl_win64', |
466 'chrome_process_finder', | 466 'chrome_process_finder', |
467 'chrome_version_resources', | 467 'chrome_version_resources', |
468 'installer_util', | 468 'installer_util', |
469 'image_pre_reader', | 469 'image_pre_reader', |
470 '../base/base.gyp:base', | 470 '../base/base.gyp:base', |
471 '../breakpad/breakpad.gyp:breakpad_handler', | 471 '../breakpad/breakpad.gyp:breakpad_handler', |
472 '../breakpad/breakpad.gyp:breakpad_sender', | 472 '../breakpad/breakpad.gyp:breakpad_sender', |
| 473 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
473 '../components/components.gyp:breakpad_component', | 474 '../components/components.gyp:breakpad_component', |
474 '../sandbox/sandbox.gyp:sandbox', | 475 '../sandbox/sandbox.gyp:sandbox', |
475 'app/policy/cloud_policy_codegen.gyp:policy', | 476 'app/policy/cloud_policy_codegen.gyp:policy', |
476 ], | 477 ], |
477 'sources': [ | 478 'sources': [ |
478 'app/chrome_breakpad_client.cc', | 479 'app/chrome_breakpad_client.cc', |
479 'app/chrome_breakpad_client.h', | 480 'app/chrome_breakpad_client.h', |
480 'app/chrome_exe.rc', | 481 'app/chrome_exe.rc', |
481 'common/crash_keys.cc', | 482 'common/crash_keys.cc', |
482 'common/crash_keys.h', | 483 'common/crash_keys.h', |
483 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 484 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
484 ], | 485 ], |
485 'msvs_settings': { | 486 'msvs_settings': { |
486 'VCLinkerTool': { | 487 'VCLinkerTool': { |
487 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 488 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
488 'DelayLoadDLLs': [ | 489 'DelayLoadDLLs': [ |
489 'dbghelp.dll', | 490 'dbghelp.dll', |
490 'dwmapi.dll', | 491 'dwmapi.dll', |
491 'uxtheme.dll', | 492 'uxtheme.dll', |
492 'ole32.dll', | 493 'ole32.dll', |
493 'oleaut32.dll', | 494 'oleaut32.dll', |
494 ], | 495 ], |
495 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. | 496 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself. |
496 'SubSystem': '2', | 497 'SubSystem': '2', |
497 }, | 498 }, |
498 'VCManifestTool': { | 499 'VCManifestTool': { |
499 'AdditionalManifestFiles': [ | 500 'AdditionalManifestFiles': [ |
500 '$(ProjectDir)\\app\\chrome.exe.manifest', | 501 '$(ProjectDir)\\app\\chrome.exe.manifest', |
| 502 '<(SHARED_INTERMEDIATE_DIR)/chrome_elf/version_assembly.manifest
', |
501 ], | 503 ], |
502 }, | 504 }, |
503 }, | 505 }, |
504 'actions': [ | 506 'actions': [ |
505 { | 507 { |
506 'action_name': 'first_run', | 508 'action_name': 'first_run', |
507 'inputs': [ | 509 'inputs': [ |
508 'app/FirstRun', | 510 'app/FirstRun', |
509 ], | 511 ], |
510 'outputs': [ | 512 'outputs': [ |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 'dependencies': [ | 634 'dependencies': [ |
633 'chrome_nacl_win64', | 635 'chrome_nacl_win64', |
634 ], | 636 ], |
635 }], | 637 }], |
636 ], | 638 ], |
637 }, | 639 }, |
638 ], | 640 ], |
639 }], | 641 }], |
640 ], | 642 ], |
641 } | 643 } |
OLD | NEW |