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

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

Issue 1158703005: Add Linux ARM builder to main waterfall (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 6 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 }, 10 },
11 'builders': { 11 'builders': {
12 'Linux ARM': {
13 'chromium_config': 'chromium',
14 'gclient_config': 'chromium',
15 'chromium_config_kwargs': {
16 'BUILD_CONFIG': 'Release',
17 'TARGET_ARCH': 'arm',
18 'TARGET_BITS': 32,
19 },
20 'bot_type': 'builder',
21 'compile_targets': [
22 'all',
23 ],
24 'use_isolate': True,
25 'testing': {
26 'platform': 'linux',
27 },
28 },
12 'Linux Builder': { 29 'Linux Builder': {
13 'chromium_config': 'chromium', 30 'chromium_config': 'chromium',
14 'gclient_config': 'chromium', 31 'gclient_config': 'chromium',
15 'chromium_config_kwargs': { 32 'chromium_config_kwargs': {
16 'BUILD_CONFIG': 'Release', 33 'BUILD_CONFIG': 'Release',
17 'TARGET_BITS': 64, 34 'TARGET_BITS': 64,
18 }, 35 },
19 'bot_type': 'builder', 36 'bot_type': 'builder',
20 'compile_targets': [ 37 'compile_targets': [
21 'chromium_swarm_tests', 38 'chromium_swarm_tests',
(...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 'TARGET_BITS': 32, 440 'TARGET_BITS': 32,
424 'TARGET_PLATFORM': 'android', 441 'TARGET_PLATFORM': 'android',
425 }, 442 },
426 'android_config': 'cast_builder', 443 'android_config': 'cast_builder',
427 'testing': { 444 'testing': {
428 'platform': 'linux', 445 'platform': 'linux',
429 }, 446 },
430 }, 447 },
431 }, 448 },
432 } 449 }
OLDNEW
« no previous file with comments | « masters/master.chromium.linux/slaves.cfg ('k') | scripts/slave/recipes/chromium.expected/full_chromium_linux_Linux_ARM.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698