Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(286)

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1238993002: Revert of Make the static clang/win ToT bots do official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from . import steps 5 from . import steps
6 6
7 RESULTS_URL = 'https://chromeperf.appspot.com' 7 RESULTS_URL = 'https://chromeperf.appspot.com'
8 8
9 SPEC = { 9 SPEC = {
10 'settings': { 10 'settings': {
(...skipping 1150 matching lines...) Expand 10 before | Expand all | Expand 10 after
1161 'werror': '', 1161 'werror': '',
1162 # Plugin flags often need to be changed when using a plugin newer than 1162 # Plugin flags often need to be changed when using a plugin newer than
1163 # the latest Clang package, so disable plugins. 1163 # the latest Clang package, so disable plugins.
1164 'clang_use_chrome_plugins': '0', 1164 'clang_use_chrome_plugins': '0',
1165 }, 1165 },
1166 'testing': { 1166 'testing': {
1167 'platform': 'mac', 1167 'platform': 'mac',
1168 } 1168 }
1169 }, 1169 },
1170 'ClangToTWin': { 1170 'ClangToTWin': {
1171 'chromium_config': 'chromium_win_clang_official_tot', 1171 'chromium_config': 'chromium_win_clang_tot',
1172 'gclient_config': 'chromium', 1172 'gclient_config': 'chromium',
1173 'chromium_config_kwargs': { 1173 'chromium_config_kwargs': {
1174 'BUILD_CONFIG': 'Release', 1174 'BUILD_CONFIG': 'Release',
1175 'TARGET_BITS': 32, 1175 'TARGET_BITS': 32,
1176 }, 1176 },
1177 'bot_type': 'builder', 1177 'bot_type': 'builder',
1178 'testing': { 'platform': 'win', }, 1178 'testing': { 'platform': 'win', },
1179 'use_isolate': True, 1179 'use_isolate': True,
1180 'enable_swarming': True, 1180 'enable_swarming': True,
1181 # Workaround so that recipes doesn't add random build targets to our 1181 # Workaround so that recipes doesn't add random build targets to our
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
1246 'BUILD_CONFIG': 'Release', 1246 'BUILD_CONFIG': 'Release',
1247 'TARGET_BITS': 32, 1247 'TARGET_BITS': 32,
1248 }, 1248 },
1249 'test_generators': [steps.generate_gtest], 1249 'test_generators': [steps.generate_gtest],
1250 'bot_type': 'tester', 1250 'bot_type': 'tester',
1251 'parent_buildername': 'ClangToTWin(dll)', 1251 'parent_buildername': 'ClangToTWin(dll)',
1252 'testing': { 'platform': 'win' }, 1252 'testing': { 'platform': 'win' },
1253 'enable_swarming': True, 1253 'enable_swarming': True,
1254 }, 1254 },
1255 'ClangToTWin64': { 1255 'ClangToTWin64': {
1256 'chromium_config': 'chromium_win_clang_official_tot', 1256 'chromium_config': 'chromium_win_clang_tot',
1257 'gclient_config': 'chromium', 1257 'gclient_config': 'chromium',
1258 'chromium_config_kwargs': { 1258 'chromium_config_kwargs': {
1259 'BUILD_CONFIG': 'Release', 1259 'BUILD_CONFIG': 'Release',
1260 'TARGET_BITS': 64, 1260 'TARGET_BITS': 64,
1261 }, 1261 },
1262 'bot_type': 'builder', 1262 'bot_type': 'builder',
1263 'testing': { 'platform': 'win', }, 1263 'testing': { 'platform': 'win', },
1264 'use_isolate': True, 1264 'use_isolate': True,
1265 'enable_swarming': True, 1265 'enable_swarming': True,
1266 # Workaround so that recipes doesn't add random build targets to our 1266 # Workaround so that recipes doesn't add random build targets to our
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
1579 'test_generators': [ 1579 'test_generators': [
1580 steps.generate_gtest, 1580 steps.generate_gtest,
1581 steps.generate_script, 1581 steps.generate_script,
1582 ], 1582 ],
1583 'testing': { 1583 'testing': {
1584 'platform': 'win', 1584 'platform': 'win',
1585 }, 1585 },
1586 }, 1586 },
1587 }, 1587 },
1588 } 1588 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698