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

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

Issue 2136443002: Add android_optional_gpu_tests_rel to master.tryserver.chromium.android. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 5 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 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
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({ 114 'android_n5x_swarming_rel': simple_bot({
115 'mastername': 'chromium.android', 115 'mastername': 'chromium.android',
116 'buildername': 'Android N5X Swarm Builder', 116 'buildername': 'Android N5X Swarm Builder',
117 }), 117 }),
118 'android_optional_gpu_tests_rel': simple_bot({
119 'mastername': 'chromium.gpu.fyi',
120 'buildername': 'Android Release (Nexus 5X)',
121 }),
118 'cast_shell_android': simple_bot({ 122 'cast_shell_android': simple_bot({
119 'mastername': 'chromium.linux', 123 'mastername': 'chromium.linux',
120 'buildername': 'Cast Android (dbg)', 124 'buildername': 'Cast Android (dbg)',
121 }), 125 }),
122 'linux_android_dbg_ng': simple_bot({ 126 'linux_android_dbg_ng': simple_bot({
123 'mastername': 'chromium.linux', 127 'mastername': 'chromium.linux',
124 'buildername': 'Android Builder (dbg)', 128 'buildername': 'Android Builder (dbg)',
125 'tester': 'Android Tests (dbg)', 129 'tester': 'Android Tests (dbg)',
126 }), 130 }),
127 'linux_android_rel_ng': simple_bot({ 131 'linux_android_rel_ng': simple_bot({
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
578 'mastername': 'client.v8.fyi', 582 'mastername': 'client.v8.fyi',
579 'buildername': 'V8 Linux GN', 583 'buildername': 'V8 Linux GN',
580 }), 584 }),
581 'v8_android_chromium_gn_dbg': simple_bot({ 585 'v8_android_chromium_gn_dbg': simple_bot({
582 'mastername': 'client.v8.fyi', 586 'mastername': 'client.v8.fyi',
583 'buildername': 'V8 Android GN (dbg)', 587 'buildername': 'V8 Android GN (dbg)',
584 }), 588 }),
585 }, 589 },
586 }, 590 },
587 }) 591 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698