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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_chrome.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 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 'builders': { 10 'builders': {
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 'chromium_apply_config': ['mb'], 70 'chromium_apply_config': ['mb'],
71 'gclient_config': 'chromium', 71 'gclient_config': 'chromium',
72 'gclient_apply_config': ['chrome_internal'], 72 'gclient_apply_config': ['chrome_internal'],
73 'chromium_config_kwargs': { 73 'chromium_config_kwargs': {
74 'BUILD_CONFIG': 'Release', 74 'BUILD_CONFIG': 'Release',
75 'TARGET_BITS': 32, 75 'TARGET_BITS': 32,
76 }, 76 },
77 'compile_targets': [ 77 'compile_targets': [
78 'chrome_official_builder_no_unittests', 78 'chrome_official_builder_no_unittests',
79 ], 79 ],
80 'checkout_dir': 'win_chrome',
81 'testing': { 80 'testing': {
82 'platform': 'win', 81 'platform': 'win',
83 }, 82 },
84 'tests': { 83 'tests': {
85 steps.SizesStep(RESULTS_URL, 'Google Chrome Win') 84 steps.SizesStep(RESULTS_URL, 'Google Chrome Win')
86 }, 85 },
87 }, 86 },
88 }, 87 },
89 } 88 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698