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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
943 'test/automation/window_proxy.cc', | 943 'test/automation/window_proxy.cc', |
944 'test/automation/window_proxy.h', | 944 'test/automation/window_proxy.h', |
945 ], | 945 ], |
946 }, | 946 }, |
947 { | 947 { |
948 'target_name': 'crash_service', | 948 'target_name': 'crash_service', |
949 'type': 'executable', | 949 'type': 'executable', |
950 'dependencies': [ | 950 'dependencies': [ |
951 'installer_util', | 951 'installer_util', |
952 '../base/base.gyp:base', | 952 '../base/base.gyp:base', |
953 '../breakpad/breakpad.gyp:breakpad_handler', | |
954 '../breakpad/breakpad.gyp:breakpad_sender', | |
955 '../chrome/common_constants.gyp:common_constants', | 953 '../chrome/common_constants.gyp:common_constants', |
| 954 '../components/components.gyp:breakpad_crash_service', |
956 ], | 955 ], |
957 'include_dirs': [ | 956 'include_dirs': [ |
958 '..', | 957 '..', |
959 ], | 958 ], |
960 'sources': [ | 959 'sources': [ |
961 'tools/crash_service/crash_service.cc', | |
962 'tools/crash_service/crash_service.h', | |
963 'tools/crash_service/main.cc', | 960 'tools/crash_service/main.cc', |
964 ], | 961 ], |
965 'msvs_settings': { | 962 'msvs_settings': { |
966 'VCLinkerTool': { | 963 'VCLinkerTool': { |
967 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 964 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
968 }, | 965 }, |
969 }, | 966 }, |
970 }, | 967 }, |
971 { | 968 { |
972 'target_name': 'sb_sigutil', | 969 'target_name': 'sb_sigutil', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1010 }, | 1007 }, |
1011 }, | 1008 }, |
1012 }, | 1009 }, |
1013 { | 1010 { |
1014 'target_name': 'crash_service_win64', | 1011 'target_name': 'crash_service_win64', |
1015 'type': 'executable', | 1012 'type': 'executable', |
1016 'product_name': 'crash_service64', | 1013 'product_name': 'crash_service64', |
1017 'dependencies': [ | 1014 'dependencies': [ |
1018 'installer_util_nacl_win64', | 1015 'installer_util_nacl_win64', |
1019 '../base/base.gyp:base_static_win64', | 1016 '../base/base.gyp:base_static_win64', |
1020 '../breakpad/breakpad.gyp:breakpad_handler_win64', | |
1021 '../breakpad/breakpad.gyp:breakpad_sender_win64', | |
1022 '../chrome/common_constants.gyp:common_constants_win64', | 1017 '../chrome/common_constants.gyp:common_constants_win64', |
| 1018 '../components/components.gyp:breakpad_crash_service_win64', |
1023 ], | 1019 ], |
1024 'include_dirs': [ | 1020 'include_dirs': [ |
1025 '..', | 1021 '..', |
1026 ], | 1022 ], |
1027 'sources': [ | 1023 'sources': [ |
1028 'tools/crash_service/crash_service.cc', | |
1029 'tools/crash_service/crash_service.h', | |
1030 'tools/crash_service/main.cc', | 1024 'tools/crash_service/main.cc', |
1031 '../content/public/common/content_switches.cc', | 1025 '../content/public/common/content_switches.cc', |
1032 ], | 1026 ], |
1033 'defines': [ | 1027 'defines': [ |
1034 'COMPILE_CONTENT_STATICALLY', | 1028 'COMPILE_CONTENT_STATICALLY', |
1035 ], | 1029 ], |
1036 'msvs_settings': { | 1030 'msvs_settings': { |
1037 'VCLinkerTool': { | 1031 'VCLinkerTool': { |
1038 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 1032 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
1039 }, | 1033 }, |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1183 'sources': [ | 1177 'sources': [ |
1184 'service/cloud_print/print_system_cups.cc', | 1178 'service/cloud_print/print_system_cups.cc', |
1185 ], | 1179 ], |
1186 }], | 1180 }], |
1187 ], | 1181 ], |
1188 }, | 1182 }, |
1189 ], | 1183 ], |
1190 }], | 1184 }], |
1191 ], # 'conditions' | 1185 ], # 'conditions' |
1192 } | 1186 } |
OLD | NEW |