Chromium Code Reviews| 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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 263 'Cast Android (dbg)': 'android_cast_debug_static_bot', | 263 'Cast Android (dbg)': 'android_cast_debug_static_bot', |
| 264 'Cast Linux': 'cast_release_bot', | 264 'Cast Linux': 'cast_release_bot', |
| 265 'Linux Builder (dbg)': 'debug_bot', | 265 'Linux Builder (dbg)': 'debug_bot', |
| 266 'Linux Builder (dbg)(32)': 'debug_bot_x86', | 266 'Linux Builder (dbg)(32)': 'debug_bot_x86', |
| 267 'Linux Builder': 'release_bot', | 267 'Linux Builder': 'release_bot', |
| 268 # Trusty bots. | 268 # Trusty bots. |
| 269 'Cast Linux Trusty': 'cast_release_bot', | 269 'Cast Linux Trusty': 'cast_release_bot', |
| 270 'Linux Builder Trusty (dbg)': 'debug_bot', | 270 'Linux Builder Trusty (dbg)': 'debug_bot', |
| 271 'Linux Builder Trusty (dbg)(32)': 'debug_bot_x86', | 271 'Linux Builder Trusty (dbg)(32)': 'debug_bot_x86', |
| 272 'Linux Builder Trusty': 'release_bot', | 272 'Linux Builder Trusty': 'release_bot', |
| 273 'Linux Deterministic': 'release_bot', | 273 'Linux Deterministic': 'release_bot', |
|
Dirk Pranke
2017/02/23 02:52:46
Should this be "Deterministic Linux" now?
yyanagisawa
2017/02/23 03:02:55
Done.
| |
| 274 'linux_chromium_clobber_deterministic': 'release_bot', | |
|
Dirk Pranke
2017/02/23 02:52:46
I'm guessing this needs to be on tryserver.chromiu
yyanagisawa
2017/02/23 03:02:55
'tryserver.chromium.linux' already has this.
Dirk Pranke
2017/02/23 03:07:34
Okay, well, you don't need this line. No such buil
yyanagisawa
2017/02/23 03:10:43
Chiken -egg issue but when I land https://chromium
| |
| 274 }, | 275 }, |
| 275 | 276 |
| 276 'chromium.lkgr': { | 277 'chromium.lkgr': { |
| 277 'ASAN Debug': 'asan_lsan_edge_debug_bot', | 278 'ASAN Debug': 'asan_lsan_edge_debug_bot', |
| 278 'ASAN Release Media': 'asan_lsan_edge_fuzzer_v8_heap_chromeos_codecs_relea se_bot', | 279 'ASAN Release Media': 'asan_lsan_edge_fuzzer_v8_heap_chromeos_codecs_relea se_bot', |
| 279 'ASAN Release': 'asan_lsan_edge_fuzzer_v8_heap_release_bot', | 280 'ASAN Release': 'asan_lsan_edge_fuzzer_v8_heap_release_bot', |
| 280 'ASan Debug (32-bit x86 with V8-ARM)': 'asan_edge_v8_heap_debug_bot_hybrid ', | 281 'ASan Debug (32-bit x86 with V8-ARM)': 'asan_edge_v8_heap_debug_bot_hybrid ', |
| 281 'ASan Release (32-bit x86 with V8-ARM)': 'asan_edge_fuzzer_v8_heap_release _bot_hybrid', | 282 'ASan Release (32-bit x86 with V8-ARM)': 'asan_edge_fuzzer_v8_heap_release _bot_hybrid', |
| 282 'ASan Release Media (32-bit x86 with V8-ARM)': 'asan_edge_fuzzer_v8_heap_c hromeos_codecs_release_bot_hybrid', | 283 'ASan Release Media (32-bit x86 with V8-ARM)': 'asan_edge_fuzzer_v8_heap_c hromeos_codecs_release_bot_hybrid', |
| 283 'ChromiumOS ASAN Release': 'chromeos_asan_lsan_edge_fuzzer_v8_heap_release _bot', | 284 'ChromiumOS ASAN Release': 'chromeos_asan_lsan_edge_fuzzer_v8_heap_release _bot', |
| (...skipping 1618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1902 | 1903 |
| 1903 'x64': { | 1904 'x64': { |
| 1904 'gn_args': 'target_cpu="x64"', | 1905 'gn_args': 'target_cpu="x64"', |
| 1905 }, | 1906 }, |
| 1906 | 1907 |
| 1907 'x86': { | 1908 'x86': { |
| 1908 'gn_args': 'target_cpu="x86"', | 1909 'gn_args': 'target_cpu="x86"', |
| 1909 }, | 1910 }, |
| 1910 }, | 1911 }, |
| 1911 } | 1912 } |
| OLD | NEW |