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

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

Issue 2411243003: Revert of Download the hermetic xcode toolchain on all bots that target mac. (Closed)
Patch Set: Created 4 years, 2 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 }, 163 },
164 'enable_swarming': True, 164 'enable_swarming': True,
165 }, 165 },
166 'GPU Mac Builder': { 166 'GPU Mac Builder': {
167 'chromium_config': 'chromium', 167 'chromium_config': 'chromium',
168 'chromium_apply_config': [ 168 'chromium_apply_config': [
169 'archive_gpu_tests', 169 'archive_gpu_tests',
170 'chrome_with_codecs', 170 'chrome_with_codecs',
171 'mb', 171 'mb',
172 'ninja_confirm_noop', 172 'ninja_confirm_noop',
173 'force_mac_toolchain',
173 ], 174 ],
174 'gclient_config': 'chromium', 175 'gclient_config': 'chromium',
175 'chromium_config_kwargs': { 176 'chromium_config_kwargs': {
176 'BUILD_CONFIG': 'Release', 177 'BUILD_CONFIG': 'Release',
177 'TARGET_BITS': 64, 178 'TARGET_BITS': 64,
178 }, 179 },
179 'bot_type': 'builder', 180 'bot_type': 'builder',
180 'compile_targets': [ 181 'compile_targets': [
181 ], 182 ],
182 'testing': { 183 'testing': {
183 'platform': 'mac', 184 'platform': 'mac',
184 }, 185 },
185 'enable_swarming': True, 186 'enable_swarming': True,
186 'use_isolate': True, 187 'use_isolate': True,
187 'checkout_dir': 'mac', 188 'checkout_dir': 'mac',
188 }, 189 },
189 'GPU Mac Builder (dbg)': { 190 'GPU Mac Builder (dbg)': {
190 'chromium_config': 'chromium', 191 'chromium_config': 'chromium',
191 'chromium_apply_config': [ 192 'chromium_apply_config': [
192 'archive_gpu_tests', 193 'archive_gpu_tests',
193 'chrome_with_codecs', 194 'chrome_with_codecs',
194 'mb', 195 'mb',
195 'ninja_confirm_noop', 196 'ninja_confirm_noop',
197 'force_mac_toolchain',
196 ], 198 ],
197 'gclient_config': 'chromium', 199 'gclient_config': 'chromium',
198 'chromium_config_kwargs': { 200 'chromium_config_kwargs': {
199 'BUILD_CONFIG': 'Debug', 201 'BUILD_CONFIG': 'Debug',
200 'TARGET_BITS': 64, 202 'TARGET_BITS': 64,
201 }, 203 },
202 'bot_type': 'builder', 204 'bot_type': 'builder',
203 'compile_targets': [ 205 'compile_targets': [
204 ], 206 ],
205 'testing': { 207 'testing': {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 }, 265 },
264 'bot_type': 'tester', 266 'bot_type': 'tester',
265 'parent_buildername': 'GPU Mac Builder (dbg)', 267 'parent_buildername': 'GPU Mac Builder (dbg)',
266 'testing': { 268 'testing': {
267 'platform': 'mac', 269 'platform': 'mac',
268 }, 270 },
269 'enable_swarming': True, 271 'enable_swarming': True,
270 }, 272 },
271 }, 273 },
272 } 274 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698