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 581 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
592 }, | 592 }, |
593 ], | 593 ], |
594 'conditions': [ | 594 'conditions': [ |
595 ['disable_nacl!=1 and target_arch=="ia32"', { | 595 ['disable_nacl!=1 and target_arch=="ia32"', { |
596 'targets': [ | 596 'targets': [ |
597 { | 597 { |
598 'target_name': 'chrome_nacl_win64', | 598 'target_name': 'chrome_nacl_win64', |
599 'type': 'executable', | 599 'type': 'executable', |
600 'product_name': 'nacl64', | 600 'product_name': 'nacl64', |
601 'sources': [ | 601 'sources': [ |
602 'app/chrome_crash_reporter_client.cc', | |
603 'common/crash_keys.cc', | |
604 'nacl/nacl_exe_win_64.cc', | |
605 '../content/app/startup_helper_win.cc', | 602 '../content/app/startup_helper_win.cc', |
606 '../content/common/sandbox_init_win.cc', | 603 '../content/common/sandbox_init_win.cc', |
607 '../content/common/sandbox_win.cc', | 604 '../content/common/sandbox_win.cc', |
608 '../content/public/common/content_switches.cc', | 605 '../content/public/common/content_switches.cc', |
609 '../content/public/common/sandboxed_process_launcher_delegate.cc
', | 606 '../content/public/common/sandboxed_process_launcher_delegate.cc
', |
| 607 'app/chrome_crash_reporter_client.cc', |
| 608 'common/crash_keys.cc', |
| 609 'nacl/nacl_exe_win_64.cc', |
610 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', | 610 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/nacl64_exe_version.rc
', |
611 ], | 611 ], |
612 'dependencies': [ | 612 'dependencies': [ |
613 'chrome_version_resources', | 613 'chrome_version_resources', |
614 'installer_util_nacl_win64', | 614 'installer_util_nacl_win64', |
615 '../base/base.gyp:base_i18n_nacl_win64', | 615 '../base/base.gyp:base_i18n_nacl_win64', |
616 '../base/base.gyp:base_win64', | 616 '../base/base.gyp:base_win64', |
617 '../base/base.gyp:base_static_win64', | 617 '../base/base.gyp:base_static_win64', |
618 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp
:dynamic_annotations_win64', | 618 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp
:dynamic_annotations_win64', |
619 '../breakpad/breakpad.gyp:breakpad_handler_win64', | 619 '../breakpad/breakpad.gyp:breakpad_handler_win64', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
684 'dependencies': [ | 684 'dependencies': [ |
685 'chrome_nacl_win64', | 685 'chrome_nacl_win64', |
686 ], | 686 ], |
687 }], | 687 }], |
688 ], | 688 ], |
689 }, | 689 }, |
690 ], | 690 ], |
691 }], | 691 }], |
692 ], | 692 ], |
693 } | 693 } |
OLD | NEW |