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

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

Issue 2156443003: tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: presubmit 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',
37 }, 38 },
38 'GPU Win Builder (dbg)': { 39 'GPU Win Builder (dbg)': {
39 'chromium_config': 'chromium', 40 'chromium_config': 'chromium',
40 'chromium_apply_config': [ 41 'chromium_apply_config': [
41 'archive_gpu_tests', 42 'archive_gpu_tests',
42 'chrome_with_codecs', 43 'chrome_with_codecs',
43 'mb', 44 'mb',
44 'ninja_confirm_noop', 45 'ninja_confirm_noop',
45 ], 46 ],
46 'gclient_config': 'chromium', 47 'gclient_config': 'chromium',
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 ], 304 ],
304 'bot_type': 'tester', 305 'bot_type': 'tester',
305 'parent_buildername': 'GPU Mac Builder (dbg)', 306 'parent_buildername': 'GPU Mac Builder (dbg)',
306 'testing': { 307 'testing': {
307 'platform': 'mac', 308 'platform': 'mac',
308 }, 309 },
309 'enable_swarming': True, 310 'enable_swarming': True,
310 }, 311 },
311 }, 312 },
312 } 313 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698