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 483 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 'image_pre_reader', | 494 'image_pre_reader', |
495 '../base/base.gyp:base', | 495 '../base/base.gyp:base', |
496 '../crypto/crypto.gyp:crypto', | 496 '../crypto/crypto.gyp:crypto', |
497 '../breakpad/breakpad.gyp:breakpad_handler', | 497 '../breakpad/breakpad.gyp:breakpad_handler', |
498 '../breakpad/breakpad.gyp:breakpad_sender', | 498 '../breakpad/breakpad.gyp:breakpad_sender', |
499 '../chrome_elf/chrome_elf.gyp:chrome_elf', | 499 '../chrome_elf/chrome_elf.gyp:chrome_elf', |
500 '../components/components.gyp:crash_component', | 500 '../components/components.gyp:crash_component', |
501 '../sandbox/sandbox.gyp:sandbox', | 501 '../sandbox/sandbox.gyp:sandbox', |
502 ], | 502 ], |
503 'sources': [ | 503 'sources': [ |
504 'app/chrome_breakpad_client.cc', | 504 'app/chrome_crash_reporter_client.cc', |
505 'app/chrome_breakpad_client.h', | 505 'app/chrome_crash_reporter_client.h', |
506 'app/chrome_exe.rc', | 506 'app/chrome_exe.rc', |
507 'common/crash_keys.cc', | 507 'common/crash_keys.cc', |
508 'common/crash_keys.h', | 508 'common/crash_keys.h', |
509 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', | 509 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_exe_version.rc', |
510 ], | 510 ], |
511 'msvs_settings': { | 511 'msvs_settings': { |
512 'VCLinkerTool': { | 512 'VCLinkerTool': { |
513 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', | 513 'ImportLibrary': '$(OutDir)\\lib\\chrome_exe.lib', |
514 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', | 514 'OutputFile': '$(OutDir)\\initialexe\\chrome.exe', |
515 'DelayLoadDLLs': [ | 515 'DelayLoadDLLs': [ |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
603 }, | 603 }, |
604 ], | 604 ], |
605 'conditions': [ | 605 'conditions': [ |
606 ['disable_nacl!=1 and target_arch=="ia32"', { | 606 ['disable_nacl!=1 and target_arch=="ia32"', { |
607 'targets': [ | 607 'targets': [ |
608 { | 608 { |
609 'target_name': 'chrome_nacl_win64', | 609 'target_name': 'chrome_nacl_win64', |
610 'type': 'executable', | 610 'type': 'executable', |
611 'product_name': 'nacl64', | 611 'product_name': 'nacl64', |
612 'sources': [ | 612 'sources': [ |
613 'app/chrome_breakpad_client.cc', | 613 'app/chrome_crash_reporter_client.cc', |
614 'common/crash_keys.cc', | 614 'common/crash_keys.cc', |
615 'nacl/nacl_exe_win_64.cc', | 615 'nacl/nacl_exe_win_64.cc', |
616 '../content/app/startup_helper_win.cc', | 616 '../content/app/startup_helper_win.cc', |
617 '../content/common/sandbox_init_win.cc', | 617 '../content/common/sandbox_init_win.cc', |
618 '../content/common/sandbox_win.cc', | 618 '../content/common/sandbox_win.cc', |
619 '../content/public/common/content_switches.cc', | 619 '../content/public/common/content_switches.cc', |
620 '../content/public/common/sandboxed_process_launcher_delegate.cc
', | 620 '../content/public/common/sandboxed_process_launcher_delegate.cc
', |
621 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', | 621 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', |
622 ], | 622 ], |
623 'dependencies': [ | 623 'dependencies': [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
694 'dependencies': [ | 694 'dependencies': [ |
695 'chrome_nacl_win64', | 695 'chrome_nacl_win64', |
696 ], | 696 ], |
697 }], | 697 }], |
698 ], | 698 ], |
699 }, | 699 }, |
700 ], | 700 ], |
701 }], | 701 }], |
702 ], | 702 ], |
703 } | 703 } |
OLD | NEW |