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

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

Issue 2006143010: Add android_n5x_swarming_rel builder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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 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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 6
7 7
8 def simple_bot(bot_id, analyze_mode=None): 8 def simple_bot(bot_id, analyze_mode=None):
9 return { 9 return {
10 'bot_ids': [bot_id], 10 'bot_ids': [bot_id],
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 'buildername': 'Android Builder', 104 'buildername': 'Android Builder',
105 }, analyze_mode='compile'), 105 }, analyze_mode='compile'),
106 'android_coverage': simple_bot({ 106 'android_coverage': simple_bot({
107 'mastername': 'chromium.fyi', 107 'mastername': 'chromium.fyi',
108 'buildername': 'Android Coverage (dbg)' 108 'buildername': 'Android Coverage (dbg)'
109 }), 109 }),
110 'android_swarming_rel': simple_bot({ 110 'android_swarming_rel': simple_bot({
111 'mastername': 'chromium.android', 111 'mastername': 'chromium.android',
112 'buildername': 'Android Swarm Builder', 112 'buildername': 'Android Swarm Builder',
113 }), 113 }),
114 'android_n5x_swarming_rel': simple_bot({
115 'mastername': 'chromium.android',
116 'buildername': 'Android N5X Swarm Builder',
117 }),
114 'cast_shell_android': simple_bot({ 118 'cast_shell_android': simple_bot({
115 'mastername': 'chromium.linux', 119 'mastername': 'chromium.linux',
116 'buildername': 'Cast Android (dbg)', 120 'buildername': 'Cast Android (dbg)',
117 }), 121 }),
118 'linux_android_dbg_ng': simple_bot({ 122 'linux_android_dbg_ng': simple_bot({
119 'mastername': 'chromium.linux', 123 'mastername': 'chromium.linux',
120 'buildername': 'Android Builder (dbg)', 124 'buildername': 'Android Builder (dbg)',
121 'tester': 'Android Tests (dbg)', 125 'tester': 'Android Tests (dbg)',
122 }), 126 }),
123 'linux_android_rel_ng': simple_bot({ 127 'linux_android_rel_ng': simple_bot({
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
571 'mastername': 'client.v8.fyi', 575 'mastername': 'client.v8.fyi',
572 'buildername': 'V8 Linux GN', 576 'buildername': 'V8 Linux GN',
573 }), 577 }),
574 'v8_android_chromium_gn_dbg': simple_bot({ 578 'v8_android_chromium_gn_dbg': simple_bot({
575 'mastername': 'client.v8.fyi', 579 'mastername': 'client.v8.fyi',
576 'buildername': 'V8 Android GN (dbg)', 580 'buildername': 'V8 Android GN (dbg)',
577 }), 581 }),
578 }, 582 },
579 }, 583 },
580 }) 584 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698