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

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

Issue 1895503002: Delete android_amp trybot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 8 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'buildername': 'WebKit Win7 (dbg)', 60 'buildername': 'WebKit Win7 (dbg)',
61 }, analyze_mode='compile'), 61 }, analyze_mode='compile'),
62 'win_blink_compile_rel': simple_bot({ 62 'win_blink_compile_rel': simple_bot({
63 'mastername': 'chromium.webkit', 63 'mastername': 'chromium.webkit',
64 'buildername': 'WebKit Win7', 64 'buildername': 'WebKit Win7',
65 }, analyze_mode='compile'), 65 }, analyze_mode='compile'),
66 }, 66 },
67 }, 67 },
68 'tryserver.chromium.android': { 68 'tryserver.chromium.android': {
69 'builders': { 69 'builders': {
70 'android_amp': simple_bot({
71 'mastername': 'chromium.fyi',
72 'buildername': 'Android Tests (amp split)',
73 }),
74 'android_archive_rel_ng': simple_bot({ 70 'android_archive_rel_ng': simple_bot({
75 'mastername': 'chromium', 71 'mastername': 'chromium',
76 'buildername': 'Android', 72 'buildername': 'Android',
77 }), 73 }),
78 'android_arm64_dbg_recipe': simple_bot({ 74 'android_arm64_dbg_recipe': simple_bot({
79 'mastername': 'chromium.linux', 75 'mastername': 'chromium.linux',
80 'buildername': 'Android Arm64 Builder (dbg)', 76 'buildername': 'Android Arm64 Builder (dbg)',
81 }, analyze_mode='compile'), 77 }, analyze_mode='compile'),
82 'android_blink_rel': simple_bot({ 78 'android_blink_rel': simple_bot({
83 'mastername': 'chromium.webkit', 79 'mastername': 'chromium.webkit',
(...skipping 513 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 'mastername': 'client.v8.fyi', 593 'mastername': 'client.v8.fyi',
598 'buildername': 'V8 Linux GN', 594 'buildername': 'V8 Linux GN',
599 }), 595 }),
600 'v8_android_chromium_gn_dbg': simple_bot({ 596 'v8_android_chromium_gn_dbg': simple_bot({
601 'mastername': 'client.v8.fyi', 597 'mastername': 'client.v8.fyi',
602 'buildername': 'V8 Android GN (dbg)', 598 'buildername': 'V8 Android GN (dbg)',
603 }), 599 }),
604 }, 600 },
605 }, 601 },
606 }) 602 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698