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

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

Issue 2415543004: 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',
174 ], 173 ],
175 'gclient_config': 'chromium', 174 'gclient_config': 'chromium',
176 'chromium_config_kwargs': { 175 'chromium_config_kwargs': {
177 'BUILD_CONFIG': 'Release', 176 'BUILD_CONFIG': 'Release',
178 'TARGET_BITS': 64, 177 'TARGET_BITS': 64,
179 }, 178 },
180 'bot_type': 'builder', 179 'bot_type': 'builder',
181 'compile_targets': [ 180 'compile_targets': [
182 ], 181 ],
183 'testing': { 182 'testing': {
184 'platform': 'mac', 183 'platform': 'mac',
185 }, 184 },
186 'enable_swarming': True, 185 'enable_swarming': True,
187 'use_isolate': True, 186 'use_isolate': True,
188 'checkout_dir': 'mac', 187 'checkout_dir': 'mac',
189 }, 188 },
190 'GPU Mac Builder (dbg)': { 189 'GPU Mac Builder (dbg)': {
191 'chromium_config': 'chromium', 190 'chromium_config': 'chromium',
192 'chromium_apply_config': [ 191 'chromium_apply_config': [
193 'archive_gpu_tests', 192 'archive_gpu_tests',
194 'chrome_with_codecs', 193 'chrome_with_codecs',
195 'mb', 194 'mb',
196 'ninja_confirm_noop', 195 'ninja_confirm_noop',
197 'force_mac_toolchain',
198 ], 196 ],
199 'gclient_config': 'chromium', 197 'gclient_config': 'chromium',
200 'chromium_config_kwargs': { 198 'chromium_config_kwargs': {
201 'BUILD_CONFIG': 'Debug', 199 'BUILD_CONFIG': 'Debug',
202 'TARGET_BITS': 64, 200 'TARGET_BITS': 64,
203 }, 201 },
204 'bot_type': 'builder', 202 'bot_type': 'builder',
205 'compile_targets': [ 203 'compile_targets': [
206 ], 204 ],
207 'testing': { 205 'testing': {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 }, 263 },
266 'bot_type': 'tester', 264 'bot_type': 'tester',
267 'parent_buildername': 'GPU Mac Builder (dbg)', 265 'parent_buildername': 'GPU Mac Builder (dbg)',
268 'testing': { 266 'testing': {
269 'platform': 'mac', 267 'platform': 'mac',
270 }, 268 },
271 'enable_swarming': True, 269 'enable_swarming': True,
272 }, 270 },
273 }, 271 },
274 } 272 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698