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': 'none', | 9 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 }], | 483 }], |
484 ['OS=="win"', { | 484 ['OS=="win"', { |
485 'dependencies': [ | 485 'dependencies': [ |
486 'chrome_dll', | 486 'chrome_dll', |
487 'chrome_nacl_win64', | 487 'chrome_nacl_win64', |
488 'chrome_process_finder', | 488 'chrome_process_finder', |
489 'chrome_version_resources', | 489 'chrome_version_resources', |
490 'installer_util', | 490 'installer_util', |
491 'image_pre_reader', | 491 'image_pre_reader', |
492 '../base/base.gyp:base', | 492 '../base/base.gyp:base', |
| 493 '../crypto/crypto.gyp:crypto', |
493 '../breakpad/breakpad.gyp:breakpad_handler', | 494 '../breakpad/breakpad.gyp:breakpad_handler', |
494 '../breakpad/breakpad.gyp:breakpad_sender', | 495 '../breakpad/breakpad.gyp:breakpad_sender', |
495 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 496 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
496 '../components/components.gyp:breakpad_component', | 497 '../components/components.gyp:breakpad_component', |
497 '../sandbox/sandbox.gyp:sandbox', | 498 '../sandbox/sandbox.gyp:sandbox', |
498 ], | 499 ], |
499 'sources': [ | 500 'sources': [ |
500 'app/chrome_breakpad_client.cc', | 501 'app/chrome_breakpad_client.cc', |
501 'app/chrome_breakpad_client.h', | 502 'app/chrome_breakpad_client.h', |
502 'app/chrome_exe.rc', | 503 'app/chrome_exe.rc', |
503 'common/crash_keys.cc', | 504 'common/crash_keys.cc', |
504 'common/crash_keys.h', | 505 'common/crash_keys.h', |
505 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 506 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
506 ], | 507 ], |
507 'msvs_settings': { | 508 'msvs_settings': { |
508 'VCLinkerTool': { | 509 'VCLinkerTool': { |
509 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 510 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
510 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', | 511 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', |
511 'DelayLoadDLLs': [ | 512 'DelayLoadDLLs': [ |
512 'dbghelp.dll', | 513 'dbghelp.dll', |
513 'dwmapi.dll', | 514 'dwmapi.dll', |
514 'uxtheme.dll', | 515 'uxtheme.dll', |
515 'ole32.dll', | 516 'ole32.dll', |
516 'oleaut32.dll', | 517 'oleaut32.dll', |
517 ], | 518 ], |
518 'AdditionalDependencies': [ 'wintrust.lib' ], | 519 'AdditionalDependencies': [ |
| 520 'wintrust.lib', |
| 521 'crypt32.lib' |
| 522 ], |
519 'conditions': [ | 523 'conditions': [ |
520 ['asan==0', { | 524 ['asan==0', { |
521 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the | 525 # Set /SUBSYSTEM:WINDOWS for chrome.exe itself, except for the |
522 # AddressSanitizer build where console output is important. | 526 # AddressSanitizer build where console output is important. |
523 'SubSystem': '2', | 527 'SubSystem': '2', |
524 }], | 528 }], |
525 ], | 529 ], |
526 }, | 530 }, |
527 'VCManifestTool': { | 531 'VCManifestTool': { |
528 'AdditionalManifestFiles': [ | 532 'AdditionalManifestFiles': [ |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 'dependencies': [ | 691 'dependencies': [ |
688 'chrome_nacl_win64', | 692 'chrome_nacl_win64', |
689 ], | 693 ], |
690 }], | 694 }], |
691 ], | 695 ], |
692 }, | 696 }, |
693 ], | 697 ], |
694 }], | 698 }], |
695 ], | 699 ], |
696 } | 700 } |
OLD | NEW |