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 'variables': { | 6 'variables': { |
7 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
8 # compilation targets to 'All'. | 8 # compilation targets to 'All'. |
9 'app_targets%': [], | 9 'app_targets%': [], |
10 # For Android-specific targets. | 10 # For Android-specific targets. |
(...skipping 1143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1154 '../ui/keyboard/keyboard.gyp:keyboard_unittests', | 1154 '../ui/keyboard/keyboard.gyp:keyboard_unittests', |
1155 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests', | 1155 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests', |
1156 '../url/url.gyp:url_unittests', | 1156 '../url/url.gyp:url_unittests', |
1157 ], | 1157 ], |
1158 }, | 1158 }, |
1159 ], # targets | 1159 ], # targets |
1160 'conditions': [ | 1160 'conditions': [ |
1161 ['branding=="Chrome"', { | 1161 ['branding=="Chrome"', { |
1162 'targets': [ | 1162 'targets': [ |
1163 { | 1163 { |
1164 'target_name': 'chrome_official_builder', | 1164 'target_name': 'chrome_official_builder_no_unittests', |
1165 'type': 'none', | 1165 'type': 'none', |
1166 'dependencies': [ | 1166 'dependencies': [ |
1167 '../base/base.gyp:base_unittests', | |
1168 '../chrome/chrome.gyp:app_installer', | 1167 '../chrome/chrome.gyp:app_installer', |
1169 '../chrome/chrome.gyp:app_installer_unittests', | |
1170 '../chrome/chrome.gyp:browser_tests', | |
1171 '../chrome/chrome.gyp:sync_integration_tests', | |
1172 '../chrome/chrome.gyp:crash_service', | 1168 '../chrome/chrome.gyp:crash_service', |
1173 '../chrome/chrome.gyp:gcapi_dll', | 1169 '../chrome/chrome.gyp:gcapi_dll', |
1174 '../chrome/chrome.gyp:pack_policy_templates', | 1170 '../chrome/chrome.gyp:pack_policy_templates', |
1175 '../chrome/installer/mini_installer.gyp:mini_installer', | 1171 '../chrome/installer/mini_installer.gyp:mini_installer', |
1176 '../cloud_print/cloud_print.gyp:cloud_print', | 1172 '../cloud_print/cloud_print.gyp:cloud_print', |
1177 '../courgette/courgette.gyp:courgette', | 1173 '../courgette/courgette.gyp:courgette', |
1178 '../courgette/courgette.gyp:courgette64', | 1174 '../courgette/courgette.gyp:courgette64', |
1179 '../ipc/ipc.gyp:ipc_tests', | |
1180 '../media/media.gyp:media_unittests', | |
1181 '../net/net.gyp:net_unittests_run', | |
1182 '../printing/printing.gyp:printing_unittests', | |
1183 '../remoting/remoting.gyp:remoting_webapp', | 1175 '../remoting/remoting.gyp:remoting_webapp', |
1184 '../sql/sql.gyp:sql_unittests', | |
1185 '../sync/sync.gyp:sync_unit_tests', | |
1186 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter
', | 1176 '../third_party/widevine/cdm/widevine_cdm.gyp:widevinecdmadapter
', |
1187 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | |
1188 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | |
1189 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests', | |
1190 '../ui/views/views.gyp:views_unittests', | |
1191 '../url/url.gyp:url_unittests', | |
1192 ], | 1177 ], |
1193 'conditions': [ | 1178 'conditions': [ |
1194 ['target_arch=="ia32"', { | 1179 ['target_arch=="ia32"', { |
1195 'dependencies': [ | 1180 'dependencies': [ |
1196 '../chrome/chrome.gyp:crash_service_win64', | 1181 '../chrome/chrome.gyp:crash_service_win64', |
1197 ], | 1182 ], |
1198 }], | 1183 }], |
1199 ['component != "shared_library" and wix_exists == "True" and \ | 1184 ['component != "shared_library" and wix_exists == "True" and \ |
1200 sas_dll_exists == "True"', { | 1185 sas_dll_exists == "True"', { |
1201 'dependencies': [ | 1186 'dependencies': [ |
1202 '../remoting/remoting.gyp:remoting_host_installation', | 1187 '../remoting/remoting.gyp:remoting_host_installation', |
1203 ], | 1188 ], |
1204 }], # component != "shared_library" | 1189 }], # component != "shared_library" |
1205 ] | 1190 ] |
| 1191 }, { |
| 1192 'target_name': 'chrome_official_builder', |
| 1193 'type': 'none', |
| 1194 'dependencies': [ |
| 1195 'chrome_official_builder_no_unittests', |
| 1196 '../base/base.gyp:base_unittests', |
| 1197 '../chrome/chrome.gyp:app_installer_unittests', |
| 1198 '../chrome/chrome.gyp:browser_tests', |
| 1199 '../chrome/chrome.gyp:sync_integration_tests', |
| 1200 '../ipc/ipc.gyp:ipc_tests', |
| 1201 '../media/media.gyp:media_unittests', |
| 1202 '../net/net.gyp:net_unittests_run', |
| 1203 '../printing/printing.gyp:printing_unittests', |
| 1204 '../sql/sql.gyp:sql_unittests', |
| 1205 '../sync/sync.gyp:sync_unit_tests', |
| 1206 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 1207 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
| 1208 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection
_unittests', |
| 1209 '../ui/views/views.gyp:views_unittests', |
| 1210 '../url/url.gyp:url_unittests', |
| 1211 ], |
1206 }, | 1212 }, |
1207 ], # targets | 1213 ], # targets |
1208 }], # branding=="Chrome" | 1214 }], # branding=="Chrome" |
1209 ], # conditions | 1215 ], # conditions |
1210 }], # OS="win" | 1216 }], # OS="win" |
1211 ['use_aura==1', { | 1217 ['use_aura==1', { |
1212 'targets': [ | 1218 'targets': [ |
1213 { | 1219 { |
1214 'target_name': 'aura_builder', | 1220 'target_name': 'aura_builder', |
1215 'type': 'none', | 1221 'type': 'none', |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 'dependencies': [ | 1331 'dependencies': [ |
1326 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1332 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1327 '../ui/views/views.gyp:views', | 1333 '../ui/views/views.gyp:views', |
1328 '../ui/views/views.gyp:views_unittests', | 1334 '../ui/views/views.gyp:views_unittests', |
1329 ], | 1335 ], |
1330 }, # target_name: macviews_builder | 1336 }, # target_name: macviews_builder |
1331 ], # targets | 1337 ], # targets |
1332 }], # os=='mac' and toolkit_views==1 | 1338 }], # os=='mac' and toolkit_views==1 |
1333 ], # conditions | 1339 ], # conditions |
1334 } | 1340 } |
OLD | NEW |