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

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

Issue 2108803003: Remove Windows/AMD from chromium.gpu and win_chromium_rel_ng. (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 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
491 { 491 {
492 'mastername': 'chromium.win', 492 'mastername': 'chromium.win',
493 'buildername': 'Win Builder', 493 'buildername': 'Win Builder',
494 'tester': 'Win7 Tests (1)', 494 'tester': 'Win7 Tests (1)',
495 }, 495 },
496 { 496 {
497 'mastername': 'chromium.gpu', 497 'mastername': 'chromium.gpu',
498 'buildername': 'GPU Win Builder', 498 'buildername': 'GPU Win Builder',
499 'tester': 'Win7 Release (NVIDIA)', 499 'tester': 'Win7 Release (NVIDIA)',
500 }, 500 },
501 {
502 'mastername': 'chromium.gpu',
503 'buildername': 'GPU Win Builder',
504 'tester': 'Win7 Release (ATI)',
505 },
506 ], 501 ],
507 }, 502 },
508 'win10_chromium_x64_rel_ng': simple_bot({ 503 'win10_chromium_x64_rel_ng': simple_bot({
509 'mastername': 'chromium.win', 504 'mastername': 'chromium.win',
510 'buildername': 'Win x64 Builder', 505 'buildername': 'Win x64 Builder',
511 'tester': 'Win10 Tests x64', 506 'tester': 'Win10 Tests x64',
512 }), 507 }),
513 'win10_chromium_x64_rel_ng_exp': simple_bot({ 508 'win10_chromium_x64_rel_ng_exp': simple_bot({
514 'mastername': 'chromium.win', 509 'mastername': 'chromium.win',
515 'buildername': 'Win x64 Builder', 510 'buildername': 'Win x64 Builder',
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 'mastername': 'client.v8.fyi', 598 'mastername': 'client.v8.fyi',
604 'buildername': 'V8 Linux GN', 599 'buildername': 'V8 Linux GN',
605 }), 600 }),
606 'v8_android_chromium_gn_dbg': simple_bot({ 601 'v8_android_chromium_gn_dbg': simple_bot({
607 'mastername': 'client.v8.fyi', 602 'mastername': 'client.v8.fyi',
608 'buildername': 'V8 Android GN (dbg)', 603 'buildername': 'V8 Android GN (dbg)',
609 }), 604 }),
610 }, 605 },
611 }, 606 },
612 }) 607 })
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698