| OLD | NEW |
| 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 # This is a .pyl, or "Python Literal", file. You can treat it just like a | 5 # This is a .pyl, or "Python Literal", file. You can treat it just like a |
| 6 # .json file, with the following exceptions: | 6 # .json file, with the following exceptions: |
| 7 # * all keys must be quoted (use single quotes, please); | 7 # * all keys must be quoted (use single quotes, please); |
| 8 # * comments are allowed, using '#' syntax; and | 8 # * comments are allowed, using '#' syntax; and |
| 9 # * trailing commas are allowed. | 9 # * trailing commas are allowed. |
| 10 | 10 |
| (...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 'Mac deterministic (dbg)': 'debug_bot', | 199 'Mac deterministic (dbg)': 'debug_bot', |
| 200 'Mojo ChromiumOS': 'chromeos_with_codecs_ozone_release_trybot', | 200 'Mojo ChromiumOS': 'chromeos_with_codecs_ozone_release_trybot', |
| 201 'Mojo Windows': 'release_bot_x86', | 201 'Mojo Windows': 'release_bot_x86', |
| 202 'Ozone Linux': 'release_bot_ozone_linux', | 202 'Ozone Linux': 'release_bot_ozone_linux', |
| 203 'Site Isolation Android': 'android_release_bot_minimal_symbols_arm64', | 203 'Site Isolation Android': 'android_release_bot_minimal_symbols_arm64', |
| 204 'Site Isolation Linux': 'release_trybot', | 204 'Site Isolation Linux': 'release_trybot', |
| 205 'Site Isolation Win': 'release_trybot_x86', | 205 'Site Isolation Win': 'release_trybot_x86', |
| 206 'ThinLTO Linux ToT': 'thin_lto_clang_tot_full_symbols_release_static_use_l
ld', | 206 'ThinLTO Linux ToT': 'thin_lto_clang_tot_full_symbols_release_static_use_l
ld', |
| 207 'UBSanVptr Linux': 'ubsan_vptr_release_bot', | 207 'UBSanVptr Linux': 'ubsan_vptr_release_bot', |
| 208 'WebKit Linux - TraceWrappables': 'debug_bot', | 208 'WebKit Linux - TraceWrappables': 'debug_bot', |
| 209 'WebKit Linux - WPTServe': 'release_bot', | |
| 210 'WebKit Mac - WPTServe': 'release_bot', | |
| 211 'WebKit Win - WPTServe': 'release_bot_x86', | |
| 212 'WebKit Linux - RandomOrder': 'release_bot', | 209 'WebKit Linux - RandomOrder': 'release_bot', |
| 213 'WebKit Mac - RandomOrder': 'release_bot', | 210 'WebKit Mac - RandomOrder': 'release_bot', |
| 214 'WebKit Win - RandomOrder': 'release_bot_x86', | 211 'WebKit Win - RandomOrder': 'release_bot_x86', |
| 215 'Win 10 Fast Ring': 'release_trybot', | 212 'Win 10 Fast Ring': 'release_trybot', |
| 216 'Windows deterministic': 'release_bot_x86', | 213 'Windows deterministic': 'release_bot_x86', |
| 217 'Windows Clang deterministic': 'clang_release_bot_minimal_symbols_x86', | 214 'Windows Clang deterministic': 'clang_release_bot_minimal_symbols_x86', |
| 218 }, | 215 }, |
| 219 | 216 |
| 220 'chromium.goma': { | 217 'chromium.goma': { |
| 221 'Chromium Linux Goma Staging': 'release_bot', | 218 'Chromium Linux Goma Staging': 'release_bot', |
| (...skipping 1711 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1933 | 1930 |
| 1934 'x64': { | 1931 'x64': { |
| 1935 'gn_args': 'target_cpu="x64"', | 1932 'gn_args': 'target_cpu="x64"', |
| 1936 }, | 1933 }, |
| 1937 | 1934 |
| 1938 'x86': { | 1935 'x86': { |
| 1939 'gn_args': 'target_cpu="x86"', | 1936 'gn_args': 'target_cpu="x86"', |
| 1940 }, | 1937 }, |
| 1941 }, | 1938 }, |
| 1942 } | 1939 } |
| OLD | NEW |