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 990 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 '../base/base.gyp:base_static_win64', | 1001 '../base/base.gyp:base_static_win64', |
1002 '../chrome/common_constants.gyp:common_constants_win64', | 1002 '../chrome/common_constants.gyp:common_constants_win64', |
1003 '../components/components.gyp:breakpad_crash_service_win64', | 1003 '../components/components.gyp:breakpad_crash_service_win64', |
1004 ], | 1004 ], |
1005 'include_dirs': [ | 1005 'include_dirs': [ |
1006 '..', | 1006 '..', |
1007 ], | 1007 ], |
1008 'sources': [ | 1008 'sources': [ |
1009 'tools/crash_service/main.cc', | 1009 'tools/crash_service/main.cc', |
1010 '../content/public/common/content_switches.cc', | 1010 '../content/public/common/content_switches.cc', |
| 1011 '../content/public/common/content_switches_util.cc', |
1011 ], | 1012 ], |
1012 'defines': [ | 1013 'defines': [ |
1013 'COMPILE_CONTENT_STATICALLY', | 1014 'COMPILE_CONTENT_STATICALLY', |
1014 ], | 1015 ], |
1015 'msvs_settings': { | 1016 'msvs_settings': { |
1016 'VCLinkerTool': { | 1017 'VCLinkerTool': { |
1017 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 1018 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
1018 }, | 1019 }, |
1019 }, | 1020 }, |
1020 'configurations': { | 1021 'configurations': { |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1162 'sources': [ | 1163 'sources': [ |
1163 'service/cloud_print/print_system_cups.cc', | 1164 'service/cloud_print/print_system_cups.cc', |
1164 ], | 1165 ], |
1165 }], | 1166 }], |
1166 ], | 1167 ], |
1167 }, | 1168 }, |
1168 ], | 1169 ], |
1169 }], | 1170 }], |
1170 ], # 'conditions' | 1171 ], # 'conditions' |
1171 } | 1172 } |
OLD | NEW |