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

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

Issue 1819613002: Flip remaining chromium_gn bots to the chromium recipe. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: update w/ review feedback, add deapply test Created 4 years, 9 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
636 ], 636 ],
637 }, 637 },
638 }, 638 },
639 }, 639 },
640 'tryserver.v8': { 640 'tryserver.v8': {
641 'builders': { 641 'builders': {
642 'v8_linux_blink_rel': simple_bot({ 642 'v8_linux_blink_rel': simple_bot({
643 'mastername': 'chromium.webkit', 643 'mastername': 'chromium.webkit',
644 'buildername': 'WebKit Linux', 644 'buildername': 'WebKit Linux',
645 }), 645 }),
646 'v8_linux_chromium_gn_rel': simple_bot({
647 'mastername': 'client.v8.fyi',
648 'buildername': 'V8 Linux GN',
649 }),
650 'v8_android_chromium_gn_dbg': simple_bot({
651 'mastername': 'client.v8.fyi',
652 'buildername': 'V8 Android GN (dbg)',
653 }),
646 }, 654 },
647 }, 655 },
648 }) 656 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698