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

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

Issue 1371913005: chromium_tests: add explicit compile targets to bots that need them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 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 | Annotate | Revision Log
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 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-linux-archive', 9 'build_gs_bucket': 'chromium-linux-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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'Android Arm64 Builder (dbg)': { 211 'Android Arm64 Builder (dbg)': {
212 'chromium_config': 'android', 212 'chromium_config': 'android',
213 'gclient_config': 'chromium', 213 'gclient_config': 'chromium',
214 'gclient_apply_config': ['android'], 214 'gclient_apply_config': ['android'],
215 'chromium_config_kwargs': { 215 'chromium_config_kwargs': {
216 'BUILD_CONFIG': 'Debug', 216 'BUILD_CONFIG': 'Debug',
217 'TARGET_BITS': 64, 217 'TARGET_BITS': 64,
218 'TARGET_PLATFORM': 'android', 218 'TARGET_PLATFORM': 'android',
219 }, 219 },
220 'android_config': 'arm64_builder', 220 'android_config': 'arm64_builder',
221 'compile_targets': [
222 'chromium_builder_tests'
223 ],
221 'testing': { 224 'testing': {
222 'platform': 'linux', 225 'platform': 'linux',
223 }, 226 },
224 }, 227 },
225 'Android Builder (dbg)': { 228 'Android Builder (dbg)': {
226 'chromium_config': 'android', 229 'chromium_config': 'android',
227 'gclient_config': 'chromium', 230 'gclient_config': 'chromium',
228 'gclient_apply_config': ['android'], 231 'gclient_apply_config': ['android'],
229 'chromium_config_kwargs': { 232 'chromium_config_kwargs': {
230 'BUILD_CONFIG': 'Debug', 233 'BUILD_CONFIG': 'Debug',
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
534 'TARGET_BITS': 32, 537 'TARGET_BITS': 32,
535 'TARGET_PLATFORM': 'android', 538 'TARGET_PLATFORM': 'android',
536 }, 539 },
537 'android_config': 'cast_builder', 540 'android_config': 'cast_builder',
538 'testing': { 541 'testing': {
539 'platform': 'linux', 542 'platform': 'linux',
540 }, 543 },
541 }, 544 },
542 }, 545 },
543 } 546 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698