forked from youtube/cobalt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mb_config.pyl
4887 lines (4019 loc) · 205 KB
/
mb_config.pyl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2015 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a .pyl, or "Python Literal", file. You can treat it just like a
# .json file, with the following exceptions:
# * all keys must be quoted (use single quotes, please);
# * comments are allowed, using '#' syntax; and
# * trailing commas are allowed.
{
# This is a map of builder group names -> builder names -> config names
# (where each config name is a key in the 'configs' dict, below). MB uses
# this dict to look up which config to use for a given bot.
'builder_groups': {
'chrome': {
'chromeos-arm-generic-cfi-thin-lto-chrome': 'chromeos_arm-generic_cfi_thin_lto_official_reclient',
'chromeos-arm64-generic-cfi-thin-lto-chrome': 'chromeos_arm64-generic_cfi_thin_lto_official_reclient',
'chromeos-betty-arc-r-chrome': 'chromeos_betty-arc-r_include_unwind_tables_official_use_fake_dbus_clients_reclient',
'chromeos-betty-pi-arc-cfi-thin-lto-chrome': 'chromeos_betty-pi-arc_cfi_thin_lto_official_reclient',
'chromeos-betty-pi-arc-chrome': 'chromeos_betty-pi-arc_dchecks_reclient',
'chromeos-eve-arc-r-chrome': 'chromeos_eve-arc-r_include_unwind_tables_official_reclient',
'chromeos-eve-chrome': 'chromeos_eve_include_unwind_tables_official_dchecks_reclient',
'chromeos-jacuzzi-chrome': 'chromeos_jacuzzi_include_unwind_tables_official_reclient',
'chromeos-kevin-chrome': 'chromeos_kevin_include_unwind_tables_official_dchecks_reclient',
'chromeos-octopus-chrome': 'chromeos_octopus_include_unwind_tables_official_dchecks_reclient',
'chromeos-octopus-chrome-skylab': 'chromeos_octopus_include_unwind_tables_official_dchecks_skylab',
'chromeos-reven-chrome': 'chromeos_reven_include_unwind_tables_official_dchecks_reclient',
'lacros-amd64-generic-chrome': 'chromeos_amd64-generic_lacros_official_no_symbols_reclient',
'lacros-amd64-generic-chrome-skylab': 'chromeos_amd64-generic_lacros_official_skylab_reclient',
'lacros-arm-generic-chrome': 'chromeos_arm-generic_lacros_official_reclient',
'lacros-arm-generic-chrome-skylab': 'chromeos_arm-generic_lacros_official_skylab_reclient',
'lacros-arm64-generic-chrome': 'chromeos_arm64-generic_lacros_official_reclient',
'lacros-arm64-generic-chrome-skylab': 'chromeos_arm64-generic_lacros_official_skylab_reclient',
# Don't include unwind tables for linux-/mac-/win-/win64-chrome builders.
# They monitor binary size growth, which may be affected by the tables.
'linux-chrome': 'official_reclient',
'linux-chromeos-chrome': 'official_reclient_chromeos_include_unwind_tables',
'mac-chrome': 'official_reclient_mac',
'win-branded-rel': 'chrome_branded_reclient_minimal_symbols',
'win-chrome': 'official_reclient_x86',
'win64-chrome': 'official_reclient_x64',
},
'chrome.gpu.fyi': {
'Lacros FYI Release (jacuzzi)': 'gpu_fyi_tests_lacros_jacuzzi_release_trybot_dcheck_off_no_symbols_reclient',
'Lacros FYI Release (octopus)': 'gpu_fyi_tests_lacros_octopus_release_trybot_dcheck_off_no_symbols_reclient',
},
'chrome.pgo': {
'android-arm32-pgo': 'official_android_arm32_pgo',
'android-arm64-pgo': 'official_android_arm64_pgo',
'lacros-amd64-generic-pgo': 'official_lacros_amd64_pgo',
'lacros-arm-generic-pgo': 'official_lacros_arm_pgo',
'lacros-arm64-generic-pgo': 'official_lacros_arm64_pgo',
'linux-pgo': 'official_linux_pgo',
'mac-arm-pgo': 'official_mac_arm_pgo',
'mac-pgo': 'official_mac_pgo',
'win32-pgo': 'official_x86_pgo',
'win64-pgo': 'official_x64_pgo',
},
# Take care when changing any of these builders to ensure that you do not
# include a configuration with 'chrome_with_codecs' since these builders
# generate publicly advertised non-Official builds which are not allowed
# to have proprietary codecs enabled.
'chromium': {
'android-archive-dbg': 'android_without_codecs_debug_bot_reclient',
'android-archive-rel': 'android_without_codecs_release_bot_minimal_symbols_reclient',
'android-arm64-archive-rel': 'android_without_codecs_release_bot_minimal_symbols_reclient_arm64',
'android-official': 'android_official_optimize_reclient',
'fuchsia-official': 'fuchsia_official_optimize_reclient',
'lacros-arm-archive-rel': 'chromeos_arm-generic_lacros_rel_reclient',
'lacros-arm64-archive-rel': 'chromeos_arm64-generic_lacros_rel_reclient',
'lacros64-archive-rel': 'chromeos_amd64-generic_lacros_rel_reclient',
'linux-archive-dbg': 'debug_bot_reclient',
'linux-archive-rel': 'linux_archive_release_bot_reclient',
'linux-lacros-archive-rel': 'lacros_on_linux_release_bot_reclient',
'linux-official': 'official_optimize_reclient',
'mac-archive-dbg': 'debug_bot_reclient',
'mac-archive-rel': 'release_bot_mac_strip_minimal_symbols_reclient',
'mac-arm64-archive-dbg': 'debug_bot_arm64_reclient',
'mac-arm64-archive-rel': 'release_bot_mac_strip_minimal_symbols_arm64_reclient',
'mac-official': 'official_optimize_reclient',
'win-archive-dbg': 'debug_bot_reclient',
'win-archive-rel': 'release_bot_minimal_symbols_reclient',
'win-official': 'official_optimize_minimal_symbols_reclient',
'win32-archive-dbg': 'debug_bot_x86_reclient',
'win32-archive-rel': 'release_bot_x86_minimal_symbols_reclient',
'win32-official': 'x86_official_optimize_reclient',
},
'chromium.accessibility': {
'fuchsia-x64-accessibility-rel': 'release_bot_fuchsia_reclient',
'linux-blink-web-tests-force-accessibility-rel': 'release_bot_blink_accessibility_reclient',
},
'chromium.android': {
'Android ASAN (dbg)': 'android_clang_asan_debug_bot_reclient',
'Android arm Builder (dbg)': 'android_webview_google_debug_static_bot_reclient',
'Android arm64 Builder (dbg)': 'android_webview_google_debug_static_bot_arm64_reclient',
'Android arm64 Builder All Targets (dbg)': 'android_webview_google_debug_static_bot_arm64_reclient',
# Trigger testers on Android Q+
'Android x64 Builder (dbg)': 'android_debug_static_bot_x64_reclient_webview_trichrome_webview_shell',
'Android x64 Builder All Targets (dbg)': 'android_debug_static_bot_x64_reclient_webview_trichrome_webview_shell',
'Android x86 Builder (dbg)': 'android_debug_static_bot_x86_reclient',
'Cast Android (dbg)': 'android_cast_debug_static_bot_reclient',
'Deterministic Android': 'android_without_codecs_release_bot_minimal_symbols_reclient',
'Deterministic Android (dbg)': 'android_debug_bot_reclient',
'android-10-arm64-rel': 'android_release_bot_minimal_symbols_arm64_fastbuild_webview_trichrome_reclient',
'android-11-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_trichrome_reclient',
'android-12-x64-rel': 'android_release_bot_minimal_symbols_x64_fastbuild_webview_trichrome_reclient',
'android-13-x64-rel': 'android_release_bot_minimal_symbols_x64_fastbuild_webview_trichrome_reclient',
'android-arm64-proguard-rel': 'android_release_bot_minimal_symbols_arm64_webview_google_reclient',
'android-bfcache-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
'android-binary-size-generator': 'android_binary_size_reclient',
'android-cronet-arm-dbg': 'android_cronet_debug_static_bot_arm_no_neon_reclient',
'android-cronet-arm-rel': 'android_cronet_release_bot_minimal_symbols_arm_no_neon_reclient',
'android-cronet-arm64-dbg': 'android_cronet_debug_static_bot_arm64_reclient',
'android-cronet-arm64-rel': 'android_cronet_release_bot_minimal_symbols_arm64_reclient',
'android-cronet-asan-arm-rel': 'android_cronet_release_bot_minimal_symbols_arm_no_neon_clang_asan_reclient',
'android-cronet-marshmallow-arm64-perf-rel': 'android_cronet_release_bot_minimal_symbols_arm64_reclient',
'android-cronet-x86-dbg': 'android_cronet_debug_static_bot_x86_reclient',
'android-cronet-x86-rel': 'android_cronet_release_bot_minimal_symbols_x86_reclient',
'android-nougat-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
'android-pie-arm64-rel': 'android_release_bot_minimal_symbols_arm64_webview_monochrome_reclient',
'android-pie-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
'android-weblayer-with-aosp-webview-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_resource_allowlisting_disable_proguard_chrome_google',
# Use webview_monochrome as this builder triggers tests on Android O & P
'android-weblayer-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_disable_proguard_webview_monochrome',
'android-x86-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_trichrome_reclient',
},
'chromium.android.fyi': {
'Android ASAN (dbg) (reclient)': 'android_clang_asan_debug_bot_reclient',
'Android arm64 Builder (dbg) (reclient)': 'android_webview_google_debug_static_bot_arm64_reclient',
'android-annotator-rel': 'android_release_bot_minimal_symbols_arm64_webview_google_reclient',
'android-chrome-pie-x86-wpt-fyi-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
'android-cronet-asan-x86-rel': 'android_cronet_release_bot_minimal_symbols_x86_clang_asan_reclient',
'android-pie-arm64-wpt-rel-non-cq': 'android_release_bot_minimal_symbols_arm64_webview_monochrome_reclient',
'android-weblayer-with-aosp-webview-x86-fyi-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_resource_allowlisting_disable_proguard_chrome_google_reclient',
'android-webview-pie-x86-wpt-fyi-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
},
'chromium.angle': {
'android-angle-chromium-arm64-builder': 'gpu_tests_android_release_bot_dcheck_always_on_arm64_fastbuild_reclient',
'fuchsia-angle-builder': 'angle_deqp_release_bot_dcheck_always_on_fuchsia_reclient',
'ios-angle-builder': 'angle_deqp_release_bot_dcheck_always_on_ios_reclient',
'linux-angle-chromium-builder': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'mac-angle-chromium-builder': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'win-angle-chromium-x64-builder': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'win-angle-chromium-x86-builder': 'gpu_tests_release_bot_dcheck_always_on_x86_reclient',
},
'chromium.cft': {
'linux-rel-cft': 'gpu_tests_release_bot_minimal_symbols_chrome_for_testing_reclient',
'mac-rel-cft': 'gpu_tests_release_bot_minimal_symbols_chrome_for_testing_reclient',
'win-rel-cft': 'gpu_tests_release_bot_minimal_symbols_chrome_for_testing_reclient',
},
'chromium.chromiumos': {
'Linux ChromiumOS Full': 'chromeos_with_codecs_release_bot_reclient',
'chromeos-amd64-generic-asan-rel': 'chromeos_amd64-generic_asan_reclient',
'chromeos-amd64-generic-cfi-thin-lto-rel': 'chromeos_amd64-generic_cfi_thin_lto_reclient',
'chromeos-amd64-generic-dbg': 'chromeos_amd64-generic_dbg_reclient',
'chromeos-amd64-generic-lacros-dbg': 'chromeos_amd64-generic_lacros_dbg_reclient',
'chromeos-amd64-generic-rel': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'chromeos-arm-generic-dbg': 'chromeos_arm-generic_dbg_reclient',
'chromeos-arm-generic-rel': 'chromeos_arm-generic_reclient',
'chromeos-arm64-generic-rel': 'chromeos_arm64-generic_dchecks_reclient',
'chromeos-jacuzzi-rel': 'chromeos_jacuzzi_dchecks_reclient',
'chromeos-octopus-rel': 'chromeos_octopus_dchecks_reclient',
'lacros-amd64-generic-binary-size-rel': 'chromeos_amd64-generic_lacros_rel_reclient',
'lacros-amd64-generic-rel': 'chromeos_amd64-generic_lacros_rel_reclient',
'lacros-amd64-generic-rel-skylab': 'chromeos_amd64-generic_lacros_rel_skylab_reclient',
'lacros-arm-generic-rel': 'chromeos_arm-generic_lacros_rel_reclient',
'lacros-arm-generic-rel-skylab': 'chromeos_arm-generic_lacros_rel_skylab_reclient',
'lacros-arm64-generic-rel': 'chromeos_arm64-generic_lacros_rel_reclient',
'lacros-arm64-generic-rel-skylab': 'chromeos_arm64-generic_lacros_rel_skylab_reclient',
'linux-ash-chromium-generator-rel': 'chromeos_with_codecs_release_bot_reclient',
'linux-cfm-rel': 'linux_cfm_release_bot_reclient',
'linux-chromeos-dbg': 'chromeos_with_codecs_debug_bot_reclient',
'linux-chromeos-rel': 'chromeos_with_codecs_with_lacros_release_bot_reclient',
'linux-lacros-builder-rel': 'lacros_on_linux_release_bot_reclient',
'linux-lacros-dbg': 'lacros_on_linux_debug_bot_reclient',
'linux-lacros-tester-rel': 'lacros_on_linux_release_bot',
},
'chromium.clang': {
'CFI Linux CF': 'cfi_full_cfi_icall_cfi_diag_recover_release_static_reclient',
'CFI Linux ToT': 'clang_tot_cfi_full_cfi_icall_cfi_diag_thin_lto_release_static_dcheck_always_on',
'CrWinAsan': 'asan_clang_fuzzer_static_v8_heap_minimal_symbols_release_tot',
'CrWinAsan(dll)': 'asan_clang_shared_v8_heap_minimal_symbols_release_tot',
'ToTAndroid': 'android_clang_tot_release_minimal_symbols',
'ToTAndroid (dbg)': 'android_clang_tot_dbg',
'ToTAndroid x64': 'android_clang_tot_x64',
'ToTAndroid x86': 'android_clang_tot_x86',
'ToTAndroid64': 'android_clang_tot_release_arm64',
'ToTAndroidASan': 'android_clang_tot_asan',
'ToTAndroidCoverage x86': 'android_clang_tot_coverage_x86',
'ToTAndroidOfficial': 'android_clang_tot_official_arm64',
'ToTChromeOS': 'lacros_on_linux_tot_release',
'ToTChromeOS (dbg)': 'lacros_on_linux_tot_debug',
'ToTFuchsia x64': 'fuchsia_clang_tot_release_x64',
'ToTFuchsiaOfficial arm64': 'fuchsia_clang_tot_official_arm64',
'ToTLinux': 'clang_tot_linux_full_symbols_shared_release',
'ToTLinux (dbg)': 'clang_tot_shared_debug',
'ToTLinuxASan': 'clang_tot_asan_lsan_static_release',
'ToTLinuxASanLibfuzzer': 'libfuzzer_asan_clang_tot_release',
'ToTLinuxCoverage': 'clang_tot_coverage_minimal_symbols_release',
'ToTLinuxMSan': 'clang_tot_msan_release',
'ToTLinuxOfficial': 'clang_tot_official',
'ToTLinuxPGO': 'clang_tot_official_pgo',
'ToTLinuxTSan': 'clang_tot_tsan_release',
'ToTLinuxUBSanVptr': 'clang_tot_ubsan_no_recover_hack_static_release',
'ToTMac': 'clang_tot_minimal_symbols_shared_release',
'ToTMac (dbg)': 'clang_tot_shared_debug',
'ToTMacASan': 'asan_disable_nacl_clang_tot_minimal_symbols_static_release',
'ToTMacCoverage': 'clang_tot_coverage_minimal_symbols_release',
'ToTMacOfficial': 'mac_clang_tot_official',
'ToTWin': 'clang_tot_minimal_symbols_static_release_x86',
'ToTWin(dbg)': 'clang_tot_shared_debug_x86',
'ToTWin(dll)': 'clang_tot_minimal_symbols_shared_release_x86_dcheck',
'ToTWin64': 'clang_tot_minimal_symbols_static_release',
'ToTWin64(dbg)': 'clang_tot_shared_debug',
'ToTWin64(dll)': 'clang_tot_shared_release_dcheck',
'ToTWin64PGO': 'clang_tot_official_pgo',
'ToTWinASanLibfuzzer': 'libfuzzer_windows_asan_clang_tot_release_bot',
'ToTWinOfficial': 'clang_tot_win_official_full_symbols_static_x86',
'ToTWinOfficial64': 'clang_tot_win_official_full_symbols_static',
'ToTWindowsCoverage': 'clang_tot_coverage_minimal_symbols_release',
'ToTiOS': 'ios_clang_tot_xctest',
'ToTiOSDevice': 'ios_clang_device_tot_xctest',
'linux-win_cross-rel': 'clang_tot_win_release_cross',
},
'chromium.coverage': {
'android-code-coverage': 'gpu_tests_android_release_bot_minimal_symbols_arm64_fastbuild_java_coverage_reclient',
'android-code-coverage-native': 'gpu_tests_android_release_bot_no_symbols_arm64_fastbuild_native_coverage_reclient',
'android-x86-code-coverage': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient_coverage',
'chromeos-js-code-coverage': 'js_coverage_reclient',
'fuchsia-code-coverage': 'fuchsia_clang_code_coverage_reclient',
'ios-simulator-code-coverage': 'clang_code_coverage_ios_xctest_reclient',
'linux-chromeos-code-coverage': 'chromeos_with_codecs_release_bot_coverage_reclient',
'linux-code-coverage': 'clang_code_coverage_reclient',
'linux-js-code-coverage': 'js_coverage_reclient',
'linux-lacros-code-coverage': 'lacros_on_linux_clang_code_coverage_reclient',
'mac-code-coverage': 'clang_code_coverage_reclient',
'win10-code-coverage': 'clang_code_coverage_reclient',
},
'chromium.dawn': {
'Dawn Android arm DEPS Release (Pixel 4)': 'dawn_tests_android_release_trybot_reclient',
'Dawn Android arm Release (Pixel 4)': 'dawn_tests_android_release_trybot_reclient',
'Dawn Linux TSAN Release': 'dawn_tests_tsan_release_bot_dcheck_always_on_reclient',
'Dawn Linux x64 Builder': 'dawn_tests_with_desktop_gl_release_trybot_reclient',
'Dawn Linux x64 DEPS Builder': 'dawn_tests_with_desktop_gl_release_trybot_reclient',
'Dawn Mac x64 Builder': 'dawn_tests_release_bot_dcheck_always_on_reclient',
'Dawn Mac x64 DEPS Builder': 'dawn_tests_release_bot_dcheck_always_on_reclient',
'Dawn Win10 x64 ASAN Builder': 'dawn_tests_asan_release_bot_dcheck_always_on_reclient',
'Dawn Win10 x64 Builder': 'dawn_tests_with_d3d11_release_bot_dcheck_always_on_reclient',
'Dawn Win10 x64 DEPS Builder': 'dawn_tests_with_d3d11_release_bot_dcheck_always_on_reclient',
'Dawn Win10 x86 Builder': 'dawn_tests_with_d3d11_release_bot_dcheck_always_on_x86_reclient',
'Dawn Win10 x86 DEPS Builder': 'dawn_tests_with_d3d11_release_bot_dcheck_always_on_x86_reclient',
},
'chromium.dev': {
# This should be the same with 'android-pie-arm64-rel'.
'android-pie-arm64-rel-dev': 'android_release_bot_minimal_symbols_arm64_webview_monochrome_reclient',
# These should be the same with 'Linux Builder'.
'linux-local-ssd-rel-dev': 'gpu_tests_release_bot_do_typecheck_reclient',
'linux-rel-dev': 'gpu_tests_release_bot_do_typecheck_reclient',
'linux-rel-jammy-dev': 'gpu_tests_release_bot_do_typecheck_reclient',
'linux-remote-ssd-rel-dev': 'gpu_tests_release_bot_do_typecheck_reclient',
# This should be the same with 'Mac Builder'.
'mac-arm-rel-dev': 'gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'mac-rel-dev': 'gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
# This should be the same with 'Win x64 Builder'.
'win-rel-dev': 'gpu_tests_release_bot_minimal_symbols_reclient',
'win11-rel-dev': 'gpu_tests_release_bot_minimal_symbols_reclient',
},
'chromium.devtools-frontend': {
'DevTools Linux (chromium)': 'release_trybot_blink_do_typecheck',
},
'chromium.fuchsia': {
'Deterministic Fuchsia (dbg)': 'debug_bot_fuchsia_reclient',
'fuchsia-arm64-cast-receiver-rel': 'release_bot_fuchsia_arm64_cast_receiver_reclient',
'fuchsia-arm64-rel': 'release_bot_fuchsia_arm64_reclient',
'fuchsia-x64-cast-receiver-rel': 'release_bot_fuchsia_cast_receiver_reclient',
'fuchsia-x64-dbg': 'debug_bot_fuchsia_compile_only_reclient',
'fuchsia-x64-rel': 'release_bot_fuchsia_reclient',
},
'chromium.fuchsia.fyi': {
'fuchsia-fyi-arm64-dbg': 'debug_bot_fuchsia_arm64_reclient',
'fuchsia-fyi-x64-asan': 'asan_lsan_bot_fuchsia_reclient',
'fuchsia-fyi-x64-dbg': 'debug_bot_fuchsia_reclient',
'fuchsia-x64-workstation': 'release_bot_fuchsia_chrome_reclient',
},
'chromium.fuzz': {
'ASAN Debug': 'asan_lsan_debug_bot_reclient',
'ASAN Release': 'asan_lsan_fuzzer_v8_heap_release_bot_reclient',
'ASAN Release Media': 'asan_lsan_fuzzer_v8_heap_chromeos_codecs_release_bot_reclient',
'ASan Debug (32-bit x86 with V8-ARM)': 'asan_v8_heap_debug_bot_hybrid_reclient',
'ASan Release (32-bit x86 with V8-ARM)': 'asan_fuzzer_v8_heap_release_bot_hybrid_reclient',
'ASan Release Media (32-bit x86 with V8-ARM)': 'asan_fuzzer_v8_heap_chromeos_codecs_release_bot_hybrid_reclient',
'Afl Upload Linux ASan': 'afl_asan_shared_release_bot_reclient',
'Centipede Upload Linux ASan': 'centipede_asan_shared_release_bot_reclient',
'ChromiumOS ASAN Release': 'chromeos_asan_lsan_fuzzer_v8_heap_release_bot_reclient',
'Libfuzzer Local Chrome OS ASan': 'libfuzzer_chromeos_asan_local',
'Libfuzzer Local Linux ASan': 'libfuzzer_asan_local',
'Libfuzzer Local Mac ASan': 'libfuzzer_mac_asan_local',
'Libfuzzer Local Windows ASan': 'libfuzzer_windows_asan_local',
'Libfuzzer Upload Chrome OS ASan': 'libfuzzer_chromeos_asan_release_bot_reclient',
'Libfuzzer Upload Linux ASan': 'libfuzzer_asan_release_bot_reclient',
'Libfuzzer Upload Linux ASan Debug': 'libfuzzer_asan_debug_bot_reclient',
'Libfuzzer Upload Linux MSan': 'libfuzzer_msan_release_bot_reclient',
'Libfuzzer Upload Linux UBSan': 'libfuzzer_ubsan_release_bot_reclient',
'Libfuzzer Upload Linux V8-ARM64 ASan': 'libfuzzer_asan_release_bot_v8_arm64_reclient',
'Libfuzzer Upload Linux V8-ARM64 ASan Debug': 'libfuzzer_asan_debug_bot_v8_arm64_reclient',
'Libfuzzer Upload Linux32 ASan': 'libfuzzer_asan_release_bot_x86_reclient',
'Libfuzzer Upload Linux32 V8-ARM ASan': 'libfuzzer_asan_release_bot_x86_v8_arm_reclient',
'Libfuzzer Upload Linux32 V8-ARM ASan Debug': 'libfuzzer_asan_debug_bot_x86_v8_arm_reclient',
'Libfuzzer Upload Mac ASan': 'libfuzzer_mac_asan_shared_release_bot_reclient',
'Libfuzzer Upload Windows ASan': 'libfuzzer_windows_asan_release_bot_reclient',
'Libfuzzer Upload iOS Catalyst Debug': 'ios_catalyst_debug_static_bot_compile_only_libfuzzer_asan_no_dsyms_no_remoting_reclient',
'MSAN Release (chained origins)': 'msan_release_bot_reclient',
'MSAN Release (no origins)': 'msan_no_origins_release_bot_reclient',
'Mac ASAN Release': 'asan_disable_nacl_fuzzer_v8_heap_release_bot_reclient',
'Mac ASAN Release Media': 'asan_disable_nacl_fuzzer_v8_heap_chrome_with_codecs_release_bot_reclient',
'TSAN Debug': 'tsan_disable_nacl_debug_bot_reclient',
'TSAN Release': 'tsan_disable_nacl_release_bot_reclient',
'UBSan Release': 'ubsan_release_bot_reclient',
'UBSan vptr Release': 'ubsan_vptr_release_bot_reclient',
'Win ASan Release': 'asan_fuzzer_v8_heap_release_bot_reclient',
'Win ASan Release Media': 'asan_fuzzer_v8_heap_chrome_with_codecs_release_bot_reclient',
},
'chromium.fyi': {
'Comparison Android (reclient)': {
'build1': 'android_webview_google_debug_static_bot_arm64_reclient',
'build2': 'android_webview_google_debug_static_bot_arm64_reclient',
},
'Comparison Linux (reclient)': {
'build1': 'gpu_tests_release_bot_reclient',
'build2': 'gpu_tests_release_bot_reclient',
},
'Comparison Mac (reclient)': {
'build1': 'gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'build2': 'gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
},
'Comparison Mac arm64 (reclient)': {
'build1': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'build2': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
},
'Comparison Mac arm64 on arm64 (reclient)': {
'build1': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'build2': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
},
'Comparison Simple Chrome (reclient)': {
'build1': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'build2': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
},
'Comparison Windows (8 cores) (reclient)': {
'build1': 'gpu_tests_release_bot_minimal_symbols_reclient',
'build2': 'gpu_tests_release_bot_minimal_symbols_reclient',
},
'Comparison Windows (reclient)': {
'build1': 'gpu_tests_release_bot_minimal_symbols_reclient',
'build2': 'gpu_tests_release_bot_minimal_symbols_reclient',
},
'Comparison ios (reclient)': {
'build1': 'ios_simulator_debug_static_bot_xctest_reclient',
'build2': 'ios_simulator_debug_static_bot_xctest_reclient',
},
'Linux Builder (j-500) (reclient)': 'gpu_tests_release_bot_reclient',
'Linux Builder (reclient compare)': 'gpu_tests_release_bot_reclient',
'Linux Viz': 'release_trybot_minimal_symbols_reclient',
# TODO(crbug.com/1260232): remove this after the migration.
'Mac Builder (reclient compare)': 'gpu_tests_release_bot_minimal_symbols_reclient',
# TODO(crbug.com/1244441): remove this after the migration.
'Mac Builder (reclient)': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Mac Builder Next': 'mac_arm64_gpu_tests_debug_bot_minimal_symbols_no_nacl_reclient',
'Mac deterministic': 'release_bot_mac_strip_minimal_symbols_reclient',
'Mac deterministic (dbg)': 'debug_bot_reclient',
'Site Isolation Android': 'android_release_bot_minimal_symbols_arm64_reclient',
'VR Linux': 'vr_release_bot_reclient',
'Win 10 Fast Ring': 'release_trybot_minimal_symbols_reclient',
'Win x64 Builder (reclient compare)': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Builder (reclient)': 'gpu_tests_release_bot_minimal_symbols_reclient',
'android-backuprefptr-arm-fyi-rel': 'release_trybot_backuprefptr_arm_reclient',
'android-backuprefptr-arm64-fyi-rel': 'release_trybot_backuprefptr_arm64_reclient',
'android-build-perf-developer': 'android_developer',
'android-fieldtrial-rel': 'android_release_bot_minimal_symbols_x86_fastbuild_webview_monochrome_reclient',
'android-perfetto-rel': 'perfetto_release_bot_reclient_android',
# Keep in sync with android-arm64-rel
'build-perf-android': 'android_release_trybot_arm64_webview_monochrome_expectations_fastbuild_native_coverage_reclient',
'build-perf-android-siso': {
'builtin': 'android_release_trybot_arm64_webview_monochrome_expectations_fastbuild_native_coverage_siso',
'reproxy': 'android_release_trybot_arm64_webview_monochrome_expectations_fastbuild_native_coverage_reclient',
},
# Keep in sync with linux-rel
'build-perf-linux': 'gpu_tests_release_trybot_no_symbols_use_dummy_lastchange_code_coverage_do_typecheck_reclient',
'build-perf-linux-siso': {
'builtin': 'gpu_tests_release_trybot_no_symbols_use_dummy_lastchange_code_coverage_do_typecheck_siso',
'reproxy': 'gpu_tests_release_trybot_no_symbols_use_dummy_lastchange_code_coverage_do_typecheck_reclient',
},
# Keep in sync with win-rel
'build-perf-windows': 'gpu_tests_release_trybot_resource_allowlisting_code_coverage_reclient',
'build-perf-windows-siso': {
'builtin': 'gpu_tests_release_trybot_resource_allowlisting_code_coverage_siso',
'reproxy': 'gpu_tests_release_trybot_resource_allowlisting_code_coverage_reclient',
},
# TODO(crbug.com/1235218): remove after the migration.
'chromeos-amd64-generic-rel (reclient compare)': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'chromeos-amd64-generic-rel (reclient)': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'ios-blink-dbg-fyi': 'ios_simulator_blink_xctest',
'ios-fieldtrial-rel': 'ios_simulator_debug_static_bot_xctest_arm64_reclient',
'ios-m1-simulator': 'ios_simulator_debug_static_bot_xctest_arm64_reclient',
'ios-m1-simulator-cronet': 'ios_cronet_xctest_arm64_reclient',
'ios-simulator-cr-recipe': 'ios_simulator_debug_static_bot_xctest',
'ios-simulator-cronet': 'ios_cronet_xctest_reclient',
'ios-simulator-multi-window': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-webkit-tot': 'ios_simulator_debug_static_bot_xctest_reclient_no_lld',
'ios-wpt-fyi-rel': 'ios_simulator_release_static_bot_xctest_reclient',
'ios15-beta-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios15-sdk-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios16-beta-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios16-sdk-device': 'ios_device_release_static_bot_xctest_reclient',
'ios16-sdk-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
'lacros-amd64-generic-rel (reclient)': 'chromeos_amd64-generic-vm_lacros_rel_reclient',
'lacros-amd64-generic-rel-fyi': 'chromeos_amd64-generic_lacros_rel_reclient',
'lacros-amd64-generic-rel-skylab-fyi': 'chromeos_amd64-generic_lacros_rel_skylab_reclient',
'lacros-arm-generic-rel-skylab-fyi': 'chromeos_arm-generic_lacros_rel_skylab_reclient',
'lacros-arm64-generic-rel-skylab-fyi': 'chromeos_arm64-generic_lacros_rel_skylab_reclient',
'linux-annotator-rel': 'release_bot_reclient',
'linux-backuprefptr-x64-fyi-rel': 'release_trybot_backuprefptr_x64_reclient',
'linux-blink-animation-use-time-delta': 'debug_bot_enable_blink_animation_use_time_delta_reclient',
'linux-blink-heap-concurrent-marking-tsan-rel': 'release_trybot_minimal_symbols_tsan',
'linux-blink-heap-verification': 'release_bot_enable_blink_heap_verification_dcheck_always_on_reclient',
'linux-blink-wpt-reset-rel': 'release_bot_blink_minimal_symbols_reclient',
'linux-build-perf-developer': 'developer',
'linux-chromeos-annotator-rel': 'chromeos_with_codecs_release_bot_reclient',
'linux-fieldtrial-rel': 'release_bot_minimal_symbols_reclient',
'linux-headless-shell-rel': 'headless_shell_release_bot_reclient',
'linux-lacros-builder-fyi-rel': 'lacros_on_linux_release_bot_reclient',
'linux-lacros-builder-rel (reclient)': 'lacros_on_linux_release_bot_reclient',
'linux-lacros-dbg-fyi': 'lacros_on_linux_debug_bot_reclient',
'linux-lacros-dbg-tests-fyi': 'lacros_on_linux_debug_bot',
'linux-lacros-tester-fyi-rel': 'lacros_on_linux_release_bot',
'linux-lacros-version-skew-fyi': 'lacros_on_linux_release_not_build_ash_bot_reclient',
'linux-network-sandbox-rel': 'release_bot_minimal_symbols_reclient',
'linux-perfetto-rel': 'perfetto_release_bot_reclient',
'linux-rel-no-external-ip': 'gpu_tests_release_bot_do_typecheck_reclient',
'linux-upload-perfetto': 'release_bot_perfetto_zlib_reclient',
'linux-wpt-content-shell-asan-fyi-rel': 'asan_lsan_release_trybot_reclient',
'linux-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'linux-wpt-content-shell-leak-detection': 'release_trybot_minimal_symbols_reclient',
'linux-wpt-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'linux-wpt-identity-fyi-rel': 'release_bot_minimal_symbols_reclient',
'linux-wpt-input-fyi-rel': 'release_bot_minimal_symbols_reclient',
'mac-backuprefptr-x64-fyi-rel': 'release_trybot_backuprefptr_x64_reclient',
'mac-hermetic-upgrade-rel': 'release_bot_reclient',
'mac-osxbeta-rel': 'gpu_tests_debug_trybot_reclient',
'mac-perfetto-rel': 'perfetto_release_bot_reclient',
'mac-upload-perfetto': 'release_bot_perfetto_zlib_reclient',
'mac10.15-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'mac11-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'mac12-arm64-wpt-content-shell-fyi-rel': 'mac_arm64_release_bot_reclient',
'mac12-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'mac13-arm64-wpt-content-shell-fyi-rel': 'mac_arm64_release_bot_reclient',
'mac13-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'win-annotator-rel': 'release_bot_reclient',
'win-backuprefptr-x64-fyi-rel': 'release_trybot_backuprefptr_x64_reclient',
'win-backuprefptr-x86-fyi-rel': 'release_trybot_backuprefptr_x86_reclient',
'win-build-perf-developer': 'developer',
'win-celab-builder-rel': 'release_bot_minimal_symbols_reclient',
'win-fieldtrial-rel': 'release_bot_minimal_symbols_reclient',
'win-perfetto-rel': 'perfetto_release_bot_reclient',
'win-upload-perfetto': 'release_bot_perfetto_zlib_reclient',
'win10-rel-no-external-ip': 'gpu_tests_release_bot_minimal_symbols_reclient',
'win10-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'win11-wpt-content-shell-fyi-rel': 'release_trybot_minimal_symbols_reclient',
'win32-archive-rel-goma-rbe-canary': 'release_bot_x86_minimal_symbols',
'win32-archive-rel-goma-rbe-latest': 'release_bot_x86_minimal_symbols',
'win32-arm64-rel': 'win32_arm64_release_bot_reclient',
},
'chromium.goma': {
'Chromium Android ARM 32-bit Goma RBE Staging': 'android_release_bot_minimal_symbols',
'Chromium Android ARM 32-bit Goma RBE ToT': 'android_release_bot_minimal_symbols',
# TODO(b/167942918): re-enable java goma?
'Chromium Android ARM 32-bit Goma RBE ToT (ATS)': 'android_release_bot_minimal_symbols',
'Chromium Linux Goma RBE Staging': 'release_bot',
'Chromium Linux Goma RBE Staging (clobber)': 'release_bot',
'Chromium Linux Goma RBE Staging (dbg)': 'debug_bot',
'Chromium Linux Goma RBE Staging (dbg) (clobber)': 'debug_bot',
'Chromium Linux Goma RBE ToT': 'release_bot',
'Chromium Linux Goma RBE ToT (ATS)': 'release_bot',
'Chromium Mac Goma RBE Staging': 'release_bot',
'Chromium Mac Goma RBE Staging (clobber)': 'release_bot',
'Chromium Mac Goma RBE Staging (dbg)': 'debug_bot',
'Chromium Mac Goma RBE ToT': 'release_bot',
'Chromium Win Goma RBE ATS Staging': 'release_bot_x86_minimal_symbols',
'Chromium Win Goma RBE ATS Staging (clobber)': 'release_bot_x86_minimal_symbols',
'Chromium Win Goma RBE ATS ToT': 'release_bot_x86_minimal_symbols',
'Chromium Win Goma RBE Staging': 'release_bot_x86_minimal_symbols',
'Chromium Win Goma RBE Staging (clobber)': 'release_bot_x86_minimal_symbols',
'Chromium Win Goma RBE ToT': 'release_bot_x86_minimal_symbols',
'Chromium iOS Goma RBE ToT': 'ios_device_release_compile_only',
'chromeos-amd64-generic-rel-goma-rbe-staging': 'chromeos_amd64-generic_use_fake_dbus_clients_vm_optimized_goma',
'chromeos-amd64-generic-rel-goma-rbe-tot': 'chromeos_amd64-generic_use_fake_dbus_clients_vm_optimized_goma',
},
'chromium.goma.fyi': {
'Linux Builder Goma RBE Canary': 'gpu_tests_release_bot',
'Linux Builder Goma RBE Latest Client': 'gpu_tests_release_bot',
'Mac Builder (dbg) Goma RBE Canary (clobber)': 'gpu_tests_debug_bot',
'Mac Builder (dbg) Goma RBE Latest Client (clobber)': 'gpu_tests_debug_bot',
'Mac M1 Builder (dbg) Goma RBE Canary (clobber)': 'gpu_tests_debug_bot_arm64',
'Win Builder (dbg) Goma RBE ATS Canary': 'gpu_tests_debug_bot_x86_no_symbols',
'Win Builder (dbg) Goma RBE ATS Latest Client': 'gpu_tests_debug_bot_x86_no_symbols',
'Win Builder (dbg) Goma RBE Canary': 'gpu_tests_debug_bot_x86_no_symbols',
'Win Builder (dbg) Goma RBE Latest Client': 'gpu_tests_debug_bot_x86_no_symbols',
'Win Builder Goma RBE ATS Canary': 'gpu_tests_release_bot_x86_minimal_symbols',
'Win Builder Goma RBE ATS Latest Client': 'gpu_tests_release_bot_x86_minimal_symbols',
'Win Builder Goma RBE Canary': 'gpu_tests_release_bot_x86_minimal_symbols',
'Win Builder Goma RBE Canary (clobber)': 'gpu_tests_release_bot_x86_minimal_symbols',
'Win Builder Goma RBE Latest Client': 'gpu_tests_release_bot_x86_minimal_symbols',
'android-archive-dbg-goma-rbe-ats-canary': 'android_without_codecs_debug_bot',
'android-archive-dbg-goma-rbe-ats-latest': 'android_without_codecs_debug_bot',
'android-archive-dbg-goma-rbe-canary': 'android_without_codecs_debug_bot',
'android-archive-dbg-goma-rbe-latest': 'android_without_codecs_debug_bot',
'chromeos-amd64-generic-rel-goma-rbe-canary': 'chromeos_amd64-generic_use_fake_dbus_clients_vm_optimized_goma',
'chromeos-amd64-generic-rel-goma-rbe-latest': 'chromeos_amd64-generic_use_fake_dbus_clients_vm_optimized_goma',
'ios-device-goma-rbe-canary-clobber': 'ios_device_release_compile_only',
'ios-device-goma-rbe-latest-clobber': 'ios_device_release_compile_only',
'linux-archive-rel-goma-rbe-ats-canary': 'release_bot',
'linux-archive-rel-goma-rbe-ats-latest': 'release_bot',
'linux-archive-rel-goma-rbe-canary': 'release_bot',
'linux-archive-rel-goma-rbe-latest': 'release_bot',
'mac-archive-rel-goma-rbe-canary': 'release_bot_mac_strip_minimal_symbols',
'mac-archive-rel-goma-rbe-latest': 'release_bot_mac_strip_minimal_symbols',
},
'chromium.gpu': {
# These all use the 'trybot' mixins to ensure that dcheck is on.
'Android Release (Nexus 5X)': 'gpu_tests_android_release_bot_dcheck_always_on_arm64_fastbuild_reclient',
'GPU Linux Builder': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'GPU Linux Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'GPU Mac Builder': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'GPU Mac Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'GPU Win x64 Builder': 'gpu_tests_release_bot_dcheck_always_on_resource_allowlisting_reclient',
'GPU Win x64 Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'GPU Win x64 Builder Code Coverage': 'gpu_tests_release_trybot_resource_allowlisting_code_coverage',
},
'chromium.gpu.fyi': {
# These all use the 'trybot' mixins to ensure that dcheck is on.
'ChromeOS FYI Release (amd64-generic)': 'gpu_tests_chromeos_amd64_release_trybot_dcheck_off_no_symbols_reclient',
'ChromeOS FYI Release (kevin)': 'gpu_tests_chromeos_kevin_release_trybot_dcheck_off_no_symbols_reclient',
'ChromeOS FYI Release Skylab (kevin)': 'gpu_tests_chromeos_kevin_release_trybot_dcheck_off_no_symbols_reclient_skylab',
'GPU FYI Android arm Builder': 'gpu_tests_android_release_trybot_reclient',
'GPU FYI Android arm64 Builder': 'gpu_tests_android_release_trybot_arm64_reclient',
'GPU FYI Lacros x64 Builder': 'gpu_tests_ozone_linux_non_x11_release_trybot_reclient',
'GPU FYI Linux Builder': 'gpu_fyi_tests_release_trybot_reclient',
'GPU FYI Linux Builder (dbg)': 'gpu_fyi_tests_debug_trybot_reclient',
'GPU FYI Mac Builder': 'gpu_fyi_tests_release_trybot_reclient',
'GPU FYI Mac Builder (asan)': 'gpu_fyi_tests_release_trybot_asan_reclient',
'GPU FYI Mac Builder (dbg)': 'gpu_fyi_tests_debug_trybot_reclient',
'GPU FYI Mac arm64 Builder': 'gpu_fyi_tests_release_trybot_arm64_reclient',
'GPU FYI Win Builder': 'gpu_fyi_tests_release_trybot_x86_reclient',
'GPU FYI Win x64 Builder': 'gpu_fyi_tests_release_trybot_reclient',
'GPU FYI Win x64 Builder (dbg)': 'gpu_fyi_tests_debug_trybot_reclient',
'GPU FYI Win x64 DX12 Vulkan Builder': 'gpu_fyi_tests_dx12vk_release_trybot_reclient',
'GPU FYI Win x64 DX12 Vulkan Builder (dbg)': 'gpu_fyi_tests_dx12vk_debug_trybot_reclient',
'GPU FYI XR Win x64 Builder': 'gpu_fyi_tests_release_trybot_reclient',
'Linux FYI GPU TSAN Release': 'gpu_fyi_tests_release_trybot_tsan_reclient',
},
'chromium.infra.codesearch': {
'codesearch-gen-chromium-android': 'codesearch_gen_chromium_android_bot',
'codesearch-gen-chromium-chromiumos': 'codesearch_gen_chromium_chromiumos_bot',
'codesearch-gen-chromium-fuchsia': 'codesearch_gen_chromium_fuchsia_bot',
'codesearch-gen-chromium-ios': 'codesearch_gen_chromium_ios_bot',
'codesearch-gen-chromium-lacros': 'codesearch_gen_chromium_lacros_bot',
'codesearch-gen-chromium-linux': 'codesearch_gen_chromium_bot',
'codesearch-gen-chromium-mac': 'codesearch_gen_chromium_mac_bot',
'codesearch-gen-chromium-webview': 'codesearch_gen_chromium_webview_bot',
'codesearch-gen-chromium-win': 'codesearch_gen_chromium_bot',
},
'chromium.linux': {
'Cast Audio Linux': 'cast_audio_release_bot_reclient',
'Cast Linux': 'cast_release_bot_reclient',
'Cast Linux ARM64': 'cast_arm64_release_bot_reclient',
'Cast Linux Debug': 'cast_debug_bot_reclient',
'Deterministic Linux': 'release_bot_minimal_symbols_reclient',
'Deterministic Linux (dbg)': {
'local': 'debug_bot_local_build',
'goma': 'debug_bot',
'reclient': 'debug_bot_reclient',
},
'Leak Detection Linux': 'release_bot_reclient',
'Linux Builder': 'gpu_tests_release_bot_do_typecheck_reclient',
'Linux Builder (Wayland)': 'gpu_tests_wayland_release_bot_reclient',
'Linux Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'Network Service Linux': 'release_bot_reclient',
'linux-bfcache-rel': 'release_bot_blink_reclient',
'linux-extended-tracing-rel': 'release_bot_extended_tracing_reclient',
'linux-gcc-rel': 'release_bot_minimal_symbols_no_clang',
},
'chromium.mac': {
'Mac Builder': 'gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'Mac Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'ios-catalyst': 'ios_catalyst_debug_static_bot_compile_only_libfuzzer_asan_no_dsyms_no_remoting_reclient',
'ios-device': 'ios_device_release_compile_only_reclient',
'ios-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-simulator-full-configs': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-simulator-noncq': 'ios_simulator_debug_static_bot_xctest_reclient',
'mac-arm64-on-arm64-rel': 'mac_arm64_release_bot_reclient',
'mac-arm64-rel': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'mac-intel-on-arm64-rel': 'release_bot_reclient_x64',
},
'chromium.memory': {
'Linux ASan LSan Builder': 'asan_lsan_release_trybot_reclient',
'Linux CFI': 'cfi_full_cfi_icall_cfi_diag_thin_lto_release_static_dcheck_always_on_reclient',
'Linux Chromium OS ASan LSan Builder': 'asan_lsan_chromeos_release_bot_dcheck_always_on_reclient',
'Linux ChromiumOS MSan Builder': 'chromeos_msan_release_bot_reclient',
'Linux MSan Builder': 'msan_release_bot_reclient',
'Linux TSan Builder': 'tsan_disable_nacl_release_bot_reclient',
'Mac ASan 64 Builder': 'asan_minimal_symbols_disable_nacl_release_bot_dcheck_always_on_reclient',
'WebKit Linux ASAN': 'asan_lsan_release_bot_blink_reclient',
'WebKit Linux Leak': 'release_bot_blink_reclient',
'WebKit Linux MSAN': 'msan_release_bot_blink_reclient',
'android-asan': 'android_clang_asan_release_bot_reclient',
'ios-asan': 'ios_simulator_release_static_asan_bot_xctest_reclient',
'linux-lacros-asan-lsan-rel': 'asan_lsan_lacros_release_bot_dcheck_always_on_reclient',
'linux-ubsan-vptr': 'ubsan_vptr_release_bot_reclient',
'win-asan': 'asan_clang_fuzzer_static_v8_heap_minimal_symbols_release_reclient',
},
'chromium.memory.fyi': {
'linux-ubsan-fyi-rel': 'ubsan_release_bot_reclient',
'mac-lsan-fyi-rel': 'asan_lsan_dcheck_disable_nacl_release_bot_reclient',
},
'chromium.perf': {
'Android Builder Perf': 'official_reclient_minimal_symbols_android',
'Android arm64 Builder Perf': 'official_minimal_symbols_android_arm64',
'android-builder-perf': 'official_reclient_minimal_symbols_android',
'android-builder-perf-pgo': 'official_reclient_minimal_symbols_android_pgo',
'android_arm64-builder-perf': 'official_minimal_symbols_android_arm64',
'android_arm64-builder-perf-pgo': 'official_reclient_minimal_symbols_android_arm64_pgo',
'android_arm64_high_end-builder-perf': 'official_reclient_minimal_symbols_android_arm64_high_end',
'android_arm64_high_end-builder-perf-pgo': 'official_reclient_minimal_symbols_android_arm64_high_end_pgo',
'chromecast-linux-builder-perf': 'cast_binary_size_reclient',
'chromeos-amd64-generic-lacros-builder-perf': 'chromeos_amd64-generic_lacros_official_reclient',
'chromeos-arm-generic-lacros-builder-perf': 'chromeos_arm-generic_lacros_official_reclient',
'chromeos-arm64-generic-lacros-builder-perf': 'chromeos_arm64-generic_lacros_official_reclient',
'linux-builder-perf': 'official_linux_perf',
'linux-builder-perf-pgo': 'official_reclient_linux_perf_pgo',
'linux-builder-perf-rel': 'official_linux_perf',
'mac-arm-builder-perf': 'official_reclient_mac_arm_perf',
'mac-arm-builder-perf-pgo': 'official_reclient_mac_arm_perf_pgo',
'mac-builder-perf': 'official_reclient_mac_perf',
'mac-builder-perf-pgo': 'official_reclient_mac_perf_pgo',
'win64-builder-perf': 'official_reclient_perf_win_cross',
'win64-builder-perf-pgo': 'official_reclient_perf_pgo',
},
'chromium.perf.calibration': {
'android-pixel2-perf-calibration': 'official_minimal_symbols_android_arm64',
'linux-perf-calibration': 'official_linux_perf',
},
'chromium.perf.fyi': {
'android-cfi-builder-perf-fyi': 'official_reclient_minimal_symbols_android_thin_lto_opt',
'android_arm64-cfi-builder-perf-fyi': 'official_reclient_minimal_symbols_android_thin_lto_opt_arm64',
'chromeos-kevin-builder-perf-fyi': 'chromeos_kevin_include_unwind_tables_official_reclient',
'fuchsia-builder-perf-arm64': 'official_reclient_fuchsia_arm64_perf',
'fuchsia-builder-perf-x64': 'official_reclient_fuchsia_x64_perf',
},
'chromium.perf.pinpoint': {
'Android Builder Perf': 'official_reclient_minimal_symbols_android',
'Android arm64 Builder Perf': 'official_minimal_symbols_android_arm64',
'android-builder-perf': 'official_reclient_minimal_symbols_android',
'android-builder-perf-pgo': 'official_reclient_minimal_symbols_android_pgo',
'android_arm64-builder-perf': 'official_minimal_symbols_android_arm64',
'android_arm64-builder-perf-pgo': 'official_reclient_minimal_symbols_android_arm64_pgo',
'android_arm64_high_end-builder-perf': 'official_reclient_minimal_symbols_android_arm64_high_end',
'android_arm64_high_end-builder-perf-pgo': 'official_reclient_minimal_symbols_android_arm64_high_end_pgo',
'chromecast-linux-builder-perf': 'cast_binary_size_reclient',
'chromeos-amd64-generic-lacros-builder-perf': 'chromeos_amd64-generic_lacros_official_reclient',
'chromeos-arm-generic-lacros-builder-perf': 'chromeos_arm-generic_lacros_official_reclient',
'chromeos-arm64-generic-lacros-builder-perf': 'chromeos_arm64-generic_lacros_official_reclient',
'linux-builder-perf': 'official_linux_perf',
'linux-builder-perf-pgo': 'official_reclient_linux_perf_pgo',
'linux-builder-perf-rel': 'official_linux_perf',
'mac-arm-builder-perf': 'official_reclient_mac_arm_perf',
'mac-arm-builder-perf-pgo': 'official_reclient_mac_arm_perf_pgo',
'mac-builder-perf': 'official_reclient_mac_perf',
'mac-builder-perf-pgo': 'official_reclient_mac_perf_pgo',
'win64-builder-perf': 'official_reclient_perf_win_cross',
'win64-builder-perf-pgo': 'official_reclient_perf_pgo',
},
'chromium.reclient.fyi': {
'Comparison Linux (reclient vs reclient remote links)': {
'build1': 'gpu_tests_release_bot_reclient',
'build2': 'gpu_tests_release_bot_remote_links_reclient',
},
'Comparison Linux (reclient vs reclient remote links)(small)': {
'build1': 'gpu_tests_release_bot_reclient',
'build2': 'gpu_tests_release_bot_remote_links_small_reclient',
},
'Linux Builder (canonical wd) (reclient compare)': 'gpu_tests_debug_bot_reclient',
'Linux Builder reclient staging': 'gpu_tests_release_bot_reclient',
'Linux Builder reclient staging untrusted': 'gpu_tests_release_bot_reclient',
'Linux Builder reclient test': 'gpu_tests_release_bot_reclient',
'Linux Builder reclient test (unified uploads)': 'gpu_tests_release_bot_reclient',
'Linux Builder reclient test untrusted': 'gpu_tests_release_bot_reclient',
'Linux Builder reclient test untrusted (unified uploads)': 'gpu_tests_release_bot_reclient',
'Mac Builder reclient staging': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Mac Builder reclient staging untrusted': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Mac Builder reclient test': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Mac Builder reclient test untrusted': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Simple Chrome Builder reclient staging': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'Simple Chrome Builder reclient staging untrusted': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'Simple Chrome Builder reclient test': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'Simple Chrome Builder reclient test untrusted': 'chromeos_amd64-generic-vm_use_fake_dbus_clients_reclient',
'Win x64 Builder reclient staging': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Builder reclient staging untrusted': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Builder reclient test': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Builder reclient test untrusted': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Cross Builder (reclient compare)': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Windows Cross deterministic': {
'local': 'release_bot_x86_minimal_symbols_local_build',
'reclient': 'release_bot_x86_minimal_symbols_reclient',
},
'ios-simulator reclient staging': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-simulator reclient staging untrusted': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-simulator reclient test': 'ios_simulator_debug_static_bot_xctest_reclient',
'ios-simulator reclient test untrusted': 'ios_simulator_debug_static_bot_xctest_reclient',
'mac-arm64-rel reclient staging': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'mac-arm64-rel reclient staging untrusted': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'mac-arm64-rel reclient test': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
'mac-arm64-rel reclient test untrusted': 'mac_arm64_gpu_tests_release_bot_minimal_symbols_no_nacl_reclient',
},
'chromium.rust': {
'android-rust-arm32-rel': 'release_rust_android_arm32_reclient',
'android-rust-arm64-dbg': 'debug_bot_rust_android_arm64_reclient',
'android-rust-arm64-rel': 'release_rust_android_arm64_reclient',
'linux-rust-x64-dbg': 'debug_bot_rust_desktop_x64_reclient',
'linux-rust-x64-rel': 'release_rust_desktop_x64_reclient',
'mac-rust-x64-rel': 'release_rust_desktop_x64_reclient',
'win-rust-x64-dbg': 'debug_bot_rust_desktop_x64_reclient',
'win-rust-x64-rel': 'release_rust_desktop_x64_reclient',
},
'chromium.swangle': {
'linux-swangle-chromium-x64': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'linux-swangle-tot-swiftshader-x64': 'angle_deqp_release_trybot_reclient',
'linux-swangle-x64': 'angle_deqp_release_trybot_reclient',
'mac-swangle-chromium-x64': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'win-swangle-chromium-x86': 'gpu_tests_release_trybot_minimal_symbol_x86_resource_allowlisting_reclient',
'win-swangle-tot-swiftshader-x64': 'angle_deqp_release_trybot_reclient',
'win-swangle-tot-swiftshader-x86': 'angle_deqp_release_bot_dcheck_always_on_x86_reclient',
'win-swangle-x64': 'angle_deqp_release_trybot_reclient',
'win-swangle-x86': 'angle_deqp_release_bot_dcheck_always_on_x86_reclient',
},
'chromium.updater': {
'linux-updater-builder-dbg': 'updater_debug_bot_reclient',
'linux-updater-builder-rel': 'updater_release_bot_reclient',
'mac-updater-builder-arm64-dbg': 'updater_debug_bot_arm64_reclient',
'mac-updater-builder-arm64-rel': 'updater_release_bot_arm64_reclient',
'mac-updater-builder-asan-dbg': 'updater_debug_bot_asan_reclient',
'mac-updater-builder-dbg': 'updater_debug_bot_reclient',
'mac-updater-builder-rel': 'updater_release_bot_reclient',
'win-updater-builder-dbg': 'updater_debug_bot_reclient',
'win-updater-builder-rel': 'updater_release_bot_reclient',
'win32-updater-builder-dbg': 'updater_debug_bot_x86_reclient',
'win32-updater-builder-rel': 'updater_release_bot_x86_reclient',
},
# TODO(crbug.com/818301): This group is going away.
'chromium.webkit': {
'WebKit Linux Trusty ASAN': 'asan_lsan_release_bot',
'WebKit Linux Trusty Leak': 'release_bot',
'WebKit Mac Builder': 'release_bot',
'WebKit Win Builder': 'release_bot_x86_minimal_symbols',
},
'chromium.webrtc': {
'WebRTC Chromium Android Builder': 'android_debug_static_bot_arm64_reclient',
'WebRTC Chromium Linux Builder': 'gpu_tests_release_bot_reclient',
'WebRTC Chromium Mac Builder': 'gpu_tests_release_bot_reclient',
'WebRTC Chromium Win Builder': 'release_bot_minimal_symbols_no_com_init_hooks_with_codecs_reclient',
},
'chromium.webrtc.fyi': {
'WebRTC Chromium FYI Android Builder': 'android_release_bot_minimal_symbols_reclient',
'WebRTC Chromium FYI Android Builder (dbg)': 'android_debug_static_bot_reclient',
'WebRTC Chromium FYI Android Builder ARM64 (dbg)': 'android_debug_static_bot_arm64_reclient',
'WebRTC Chromium FYI Linux Builder': 'gpu_tests_release_bot_reclient',
'WebRTC Chromium FYI Linux Builder (dbg)': 'debug_bot_reclient',
'WebRTC Chromium FYI Mac Builder': 'gpu_tests_release_bot_reclient',
'WebRTC Chromium FYI Mac Builder (dbg)': 'debug_bot_reclient',
'WebRTC Chromium FYI Win Builder': 'release_bot_minimal_symbols_no_com_init_hooks_with_codecs_reclient',
'WebRTC Chromium FYI Win Builder (dbg)': 'debug_bot_no_com_init_hooks_with_codecs_reclient',
'WebRTC Chromium FYI ios-device': 'ios_device_release_compile_only_reclient',
'WebRTC Chromium FYI ios-simulator': 'ios_simulator_debug_static_bot_xctest_reclient',
},
'chromium.win': {
# Windows bots take too long to link w/ full symbols and time out.
'Win Builder': 'gpu_tests_release_bot_x86_no_symbols_reclient',
'Win Builder (dbg)': 'gpu_tests_debug_bot_x86_no_symbols_reclient',
'Win x64 Builder': 'gpu_tests_release_bot_minimal_symbols_reclient',
'Win x64 Builder (dbg)': 'gpu_tests_debug_bot_reclient',
'Win x64 Builder Code Coverage': 'gpu_tests_release_bot_minimal_symbols_code_coverage',
'Windows deterministic': 'release_bot_x86_minimal_symbols_reclient',
},
'client.devtools-frontend.integration': {
'DevTools Linux': 'release_trybot_blink_do_typecheck',
'DevTools Linux Fastbuild': 'release_trybot_blink',
},
'client.nacl.sdk': {
'linux-sdk-asan-multi': 'release_bot',
'linux-sdk-multi': 'release_bot',
'linux-sdk-multirel': 'release_bot',
'mac-sdk-multi': 'release_bot',
'mac-sdk-multirel': 'release_bot',
'windows-sdk-multi': 'release_bot_x86_minimal_symbols',
'windows-sdk-multirel': 'release_bot_x86_minimal_symbols',
},
'client.openscreen.chromium': {
'chromium_linux64_debug': 'debug_bot_reclient',
'chromium_mac_debug': 'debug_bot_reclient',
},
'client.v8.chromium': {
'Linux - Future': 'v8_future_release_bot_reclient',
'Linux - Future (dbg)': 'v8_future_debug_bot_reclient',
'Linux V8 API Stability': 'release_bot_reclient',
},
'client.v8.fyi': {
'Android V8 FYI Release (Nexus 5X)': 'gpu_tests_android_release_trybot_arm64_reclient',
'Linux ASAN Builder': 'asan_lsan_release_trybot_reclient',
'Linux Debug Builder': 'debug_bot_blink_reclient',
'Linux V8 FYI Release (NVIDIA)': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'Linux V8 FYI Release - pointer compression (NVIDIA)': 'gpu_tests_release_trybot_ptr_comp_reclient',
'Mac V8 FYI Release (Intel)': 'gpu_tests_release_trybot_minimal_symbols_reclient',
'V8 Android GN (dbg)': 'android_debug_bot_reclient',
'V8 Blink Linux': 'release_bot_blink_reclient',
'V8 Blink Linux Debug': 'release_bot_blink_v8_debug_reclient',
'V8 Blink Linux Future': 'release_bot_blink_reclient',
'V8 Blink Mac': 'release_bot_blink_reclient',
'V8 Blink Win': 'release_bot_blink_reclient',
'V8 Linux GN': 'release_bot_reclient',
'Win V8 FYI Release (NVIDIA)': 'gpu_tests_release_trybot_minimal_symbol_x86_resource_allowlisting_reclient',
},
'internal.chrome.fyi': {
'android-buildspeed-dbg': 'android_debug_bot_reclient_fastbuild',
'chromeos-arm-generic-cfi-thin-lto-chrome-reclient': 'chromeos_arm-generic_cfi_thin_lto_official_reclient',
'lacros-arm-generic-chrome-fyi-reclient': 'chromeos_arm-generic_lacros_official_skylab_reclient',
'linux-finch-smoke-chrome': 'official_reclient',
'lorenz-graph-dbg': 'android_debug_bot_reclient_external_fastbuild',
'mac-arm64-finch-smoke-chrome': 'official_reclient_mac_arm',
'win-arm64-dbg': 'gpu_tests_arm64_debug_reclient',
'win-arm64-rel': 'gpu_tests_arm64_release_minimal_symbol_reclient',
'win-celab-rel': 'official_celab_release_bot',
'win-finch-smoke-chrome': 'official_reclient',
},
'internal.chromeos.fyi': {
'chromeos-betty-pi-arc-chrome-dchecks': 'chromeos_betty-pi-arc_dchecks_reclient',
'chromeos-betty-pi-arc-finch-smoke-chrome': 'chromeos_betty-pi-arc_dchecks_reclient',
'chromeos-brya-chrome-skylab-fyi': 'chromeos_brya_include_unwind_tables_official_dchecks_skylab_reclient',
'chromeos-jacuzzi-chrome-skylab-fyi': 'chromeos_jacuzzi_include_unwind_tables_official_dchecks_skylab_reclient',
'chromeos-octopus-chrome-skylab-fyi': 'chromeos_octopus_include_unwind_tables_official_dchecks_skylab_reclient',
'chromeos-trogdor-chrome-skylab-fyi': 'chromeos_trogdor_include_unwind_tables_official_dchecks_skylab_reclient',
'chromeos-volteer-chrome-skylab-fyi': 'chromeos_volteer_include_unwind_tables_official_dchecks_skylab_reclient',
'lacros-amd64-generic-chrome-fyi': 'chromeos_amd64-generic_lacros_official_skylab_reclient',
'lacros-arm-generic-chrome-fyi': 'chromeos_arm-generic_lacros_official_skylab_reclient',
},
# Internal codesearch builders.
'luci.infra-internal.codesearch': {
'codesearch-gen-chrome-internal-linux': 'codesearch_gen_chromium_bot',
},
'official.chrome': {
'fuchsia-arm64': 'official_fuchsia_arm64',
'fuchsia-x64': 'official_fuchsia_x64',
},
'tryserver.blink': {
# Most tryservers should have '_trybot' in their config names, but
# 'release_trybot' includes 'dcheck_always_on', and the blink
# release trybots must *not* enable dchecks, because that could
# cause them to produce different baselines than the release
# waterfall bots, and run_web_tests.py can't handle that (by design).
'linux-blink-rel': 'release_bot_blink_minimal_symbols_reclient',
'mac10.13-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac10.14-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac10.15-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac11.0-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac11.0.arm64-blink-rel': 'release_bot_blink_arm64_minimal_symbols_reclient',
'mac12.0-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac12.0.arm64-blink-rel': 'release_bot_blink_arm64_minimal_symbols_reclient',
'mac13-blink-rel': 'release_bot_blink_minimal_symbols_no_nacl_reclient',
'mac13.arm64-blink-rel': 'release_bot_blink_arm64_minimal_symbols_reclient',
'win10.20h2-blink-rel': 'release_bot_blink_x86_minimal_symbols_reclient',
'win11-blink-rel': 'release_bot_blink_x64_minimal_symbols_reclient',
},
'tryserver.chrome': {
'chromeos-arm-generic-cfi-thin-lto-chrome': 'chromeos_arm-generic_cfi_thin_lto_official',
'chromeos-arm64-generic-cfi-thin-lto-chrome': 'chromeos_arm64-generic_cfi_thin_lto_official',
'chromeos-betty-arc-r-chrome': 'chromeos_betty-arc-r_include_unwind_tables_official_use_fake_dbus_clients',
'chromeos-betty-pi-arc-cfi-thin-lto-chrome': 'chromeos_betty-pi-arc_cfi_thin_lto_official',
'chromeos-betty-pi-arc-chrome': 'chromeos_betty-pi-arc_dchecks',
'chromeos-betty-pi-arc-chrome-dchecks': 'chromeos_betty-pi-arc_dchecks',
'chromeos-betty-pi-arc-finch-smoke-chrome': 'chromeos_betty-pi-arc_dchecks',
'chromeos-brya-chrome-skylab': 'chromeos_brya_include_unwind_tables_official_dchecks_skylab',
'chromeos-eve-arc-r-chrome': 'chromeos_eve-arc-r_include_unwind_tables_official',
'chromeos-eve-chrome': 'chromeos_eve_include_unwind_tables_official_dchecks',
'chromeos-eve-compile-chrome': 'chromeos_eve_include_unwind_tables_official_dchecks',
'chromeos-jacuzzi-chrome': 'chromeos_jacuzzi_include_unwind_tables_official',
'chromeos-jacuzzi-chrome-skylab': 'chromeos_jacuzzi_include_unwind_tables_official_dchecks_skylab_reclient',
'chromeos-jacuzzi-compile-chrome': 'chromeos_jacuzzi_include_unwind_tables_official',
'chromeos-kevin-chrome': 'chromeos_kevin_include_unwind_tables_official_dchecks',
'chromeos-kevin-compile-chrome': 'chromeos_kevin_include_unwind_tables_official_dchecks',
'chromeos-octopus-chrome': 'chromeos_octopus_include_unwind_tables_official_dchecks',
'chromeos-octopus-chrome-skylab': 'chromeos_octopus_include_unwind_tables_official_dchecks_skylab',
'chromeos-octopus-compile-chrome': 'chromeos_octopus_include_unwind_tables_official_dchecks',
'chromeos-reven-chrome': 'chromeos_reven_include_unwind_tables_official_dchecks',
'chromeos-trogdor-chrome-skylab': 'chromeos_trogdor_include_unwind_tables_official_dchecks_skylab',
'chromeos-volteer-chrome-skylab': 'chromeos_volteer_include_unwind_tables_official_dchecks_skylab',
'lacros-amd64-generic-chrome': 'chromeos_amd64-generic_lacros_official_no_symbols',
'lacros-amd64-generic-chrome-skylab': 'chromeos_amd64-generic_lacros_official_skylab',
'lacros-arm-generic-chrome-skylab': 'chromeos_arm-generic_lacros_official_skylab',
'lacros-arm64-generic-chrome-skylab': 'chromeos_arm64-generic_lacros_official_skylab',
'linux-chrome': 'official_reclient',
'linux-chromeos-chrome': 'official_reclient_chromeos_include_unwind_tables',
'linux-chromeos-compile-chrome': 'official_reclient_chromeos_include_unwind_tables',
'linux-finch-smoke-chrome': 'official_reclient',
'mac-arm64-finch-smoke-chrome': 'official_reclient_mac_arm',
'mac-chrome': 'official_reclient_mac',
'win-branded-compile-rel': 'chrome_branded_reclient_minimal_symbols',
'win-celab-try-rel': 'official_celab_release_bot',
'win-chrome': 'official_reclient_x86',
'win-finch-smoke-chrome': 'official_reclient',
'win64-chrome': 'official_reclient_x64',
},
'tryserver.chrome.pgo': {
'android-arm32-pgo': 'official_android_arm32_pgo',
'android-arm64-pgo': 'official_android_arm64_pgo',
'lacros-amd64-generic-pgo': 'official_lacros_amd64_pgo',
'lacros-arm-generic-pgo': 'official_lacros_arm_pgo',
'lacros-arm64-generic-pgo': 'official_lacros_arm64_pgo',
'linux-pgo': 'official_linux_pgo',
'mac-arm-pgo': 'official_mac_arm_pgo',
'mac-pgo': 'official_mac_pgo',