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

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

Issue 2154213004: Revert of tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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-gpu-archive', 9 'build_gs_bucket': 'chromium-gpu-archive',
10 # WARNING: src-side runtest.py is only tested with chromium CQ builders. 10 # WARNING: src-side runtest.py is only tested with chromium CQ builders.
(...skipping 16 matching lines...) Expand all
27 'TARGET_BITS': 32, 27 'TARGET_BITS': 32,
28 }, 28 },
29 'bot_type': 'builder', 29 'bot_type': 'builder',
30 'compile_targets': [ 30 'compile_targets': [
31 ], 31 ],
32 'testing': { 32 'testing': {
33 'platform': 'win', 33 'platform': 'win',
34 }, 34 },
35 'enable_swarming': True, 35 'enable_swarming': True,
36 'use_isolate': True, 36 'use_isolate': True,
37 'checkout_dir': 'win',
38 }, 37 },
39 'GPU Win Builder (dbg)': { 38 'GPU Win Builder (dbg)': {
40 'chromium_config': 'chromium', 39 'chromium_config': 'chromium',
41 'chromium_apply_config': [ 40 'chromium_apply_config': [
42 'archive_gpu_tests', 41 'archive_gpu_tests',
43 'chrome_with_codecs', 42 'chrome_with_codecs',
44 'mb', 43 'mb',
45 'ninja_confirm_noop', 44 'ninja_confirm_noop',
46 ], 45 ],
47 'gclient_config': 'chromium', 46 'gclient_config': 'chromium',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 ], 303 ],
305 'bot_type': 'tester', 304 'bot_type': 'tester',
306 'parent_buildername': 'GPU Mac Builder (dbg)', 305 'parent_buildername': 'GPU Mac Builder (dbg)',
307 'testing': { 306 'testing': {
308 'platform': 'mac', 307 'platform': 'mac',
309 }, 308 },
310 'enable_swarming': True, 309 'enable_swarming': True,
311 }, 310 },
312 }, 311 },
313 } 312 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698