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 'variables': { | 5 'variables': { |
6 'chromium_code': 1, | 6 'chromium_code': 1, |
7 | 7 |
8 # Define the common dependencies that contain all the actual | 8 # Define the common dependencies that contain all the actual |
9 # Chromium functionality. This list gets pulled in below by | 9 # Chromium functionality. This list gets pulled in below by |
10 # the link of the actual chrome (or chromium) executable on | 10 # the link of the actual chrome (or chromium) executable on |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 'dependencies': [ | 561 'dependencies': [ |
562 'installer_util_nacl_win64', | 562 'installer_util_nacl_win64', |
563 '../base/base.gyp:base_static_win64', | 563 '../base/base.gyp:base_static_win64', |
564 '../chrome/common_constants.gyp:common_constants_win64', | 564 '../chrome/common_constants.gyp:common_constants_win64', |
565 '../components/components.gyp:breakpad_crash_service_win64', | 565 '../components/components.gyp:breakpad_crash_service_win64', |
566 ], | 566 ], |
567 'include_dirs': [ | 567 'include_dirs': [ |
568 '..', | 568 '..', |
569 ], | 569 ], |
570 'sources': [ | 570 'sources': [ |
| 571 '../content/public/common/content_switches.cc', |
571 'tools/crash_service/main.cc', | 572 'tools/crash_service/main.cc', |
572 '../content/public/common/content_switches.cc', | |
573 ], | 573 ], |
574 'defines': [ | 574 'defines': [ |
575 'COMPILE_CONTENT_STATICALLY', | 575 'COMPILE_CONTENT_STATICALLY', |
576 ], | 576 ], |
577 'msvs_settings': { | 577 'msvs_settings': { |
578 'VCLinkerTool': { | 578 'VCLinkerTool': { |
579 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 579 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
580 }, | 580 }, |
581 }, | 581 }, |
582 'configurations': { | 582 'configurations': { |
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
778 'service/service_utility_process_host.cc', | 778 'service/service_utility_process_host.cc', |
779 'service/service_utility_process_host.h', | 779 'service/service_utility_process_host.h', |
780 ], | 780 ], |
781 }], | 781 }], |
782 ], | 782 ], |
783 }, | 783 }, |
784 ], | 784 ], |
785 }], | 785 }], |
786 ], # 'conditions' | 786 ], # 'conditions' |
787 } | 787 } |
OLD | NEW |