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

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

Issue 1187773004: Add swarming support for MB (and the GN bots) in the chromium recipes. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: fixes Created 5 years, 6 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
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 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-win-archive', 9 'build_gs_bucket': 'chromium-win-archive',
10 }, 10 },
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
191 'TARGET_BITS': 32, 191 'TARGET_BITS': 32,
192 }, 192 },
193 'bot_type': 'builder_tester', 193 'bot_type': 'builder_tester',
194 'test_generators': [ 194 'test_generators': [
195 steps.generate_gtest, 195 steps.generate_gtest,
196 steps.generate_script, 196 steps.generate_script,
197 ], 197 ],
198 'testing': { 198 'testing': {
199 'platform': 'win', 199 'platform': 'win',
200 }, 200 },
201 'enable_swarming': True,
201 }, 202 },
202 }, 203 },
203 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698