| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 305 |
| 306 'chromium.memory': { | 306 'chromium.memory': { |
| 307 'Linux ASan LSan Builder': 'asan_lsan_release_trybot', | 307 'Linux ASan LSan Builder': 'asan_lsan_release_trybot', |
| 308 'Linux Chromium OS ASan LSan Builder': 'asan_lsan_chromeos_release_trybot'
, | 308 'Linux Chromium OS ASan LSan Builder': 'asan_lsan_chromeos_release_trybot'
, |
| 309 'Linux ChromiumOS MSan Builder': 'chromeos_msan_release_bot', | 309 'Linux ChromiumOS MSan Builder': 'chromeos_msan_release_bot', |
| 310 'Linux MSan Builder': 'msan_release_bot', | 310 'Linux MSan Builder': 'msan_release_bot', |
| 311 'Linux TSan Builder': 'tsan_disable_nacl_release_bot', | 311 'Linux TSan Builder': 'tsan_disable_nacl_release_bot', |
| 312 'Mac ASan 64 Builder': 'asan_full_symbols_disable_nacl_release_bot_dcheck_
always_on', | 312 'Mac ASan 64 Builder': 'asan_full_symbols_disable_nacl_release_bot_dcheck_
always_on', |
| 313 }, | 313 }, |
| 314 | 314 |
| 315 'chromium.memory.fyi': { | |
| 316 'Chromium Linux ChromeOS MSan Builder': 'chromeos_msan_release_bot', | |
| 317 'Chromium Linux MSan Builder': 'msan_release_bot', | |
| 318 }, | |
| 319 | |
| 320 'chromium.memory.full': { | |
| 321 'Chromium Linux ChromeOS MSan Builder': 'chromeos_msan_release_bot', | |
| 322 'Chromium Linux MSan Builder': 'msan_release_bot', | |
| 323 'Chromium Linux TSan Builder': 'tsan_disable_nacl_release_bot', | |
| 324 }, | |
| 325 | |
| 326 'chromium.perf': { | 315 'chromium.perf': { |
| 327 'Android Builder': 'official_goma_minimal_symbols_android', | 316 'Android Builder': 'official_goma_minimal_symbols_android', |
| 328 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', | 317 'Android arm64 Builder': 'official_goma_minimal_symbols_android_arm64', |
| 329 'Android Compile': 'official_goma_minimal_symbols_android', | 318 'Android Compile': 'official_goma_minimal_symbols_android', |
| 330 'Android arm64 Compile': 'official_goma_minimal_symbols_android_arm64', | 319 'Android arm64 Compile': 'official_goma_minimal_symbols_android_arm64', |
| 331 'Linux Builder': 'official_goma', | 320 'Linux Builder': 'official_goma', |
| 332 'Mac Builder': 'official_goma', | 321 'Mac Builder': 'official_goma', |
| 333 'Win Builder': 'official_goma_x86', | 322 'Win Builder': 'official_goma_x86', |
| 334 'Win x64 Builder': 'official_goma', | 323 'Win x64 Builder': 'official_goma', |
| 335 }, | 324 }, |
| (...skipping 1601 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1937 | 1926 |
| 1938 'x64': { | 1927 'x64': { |
| 1939 'gn_args': 'target_cpu="x64"', | 1928 'gn_args': 'target_cpu="x64"', |
| 1940 }, | 1929 }, |
| 1941 | 1930 |
| 1942 'x86': { | 1931 'x86': { |
| 1943 'gn_args': 'target_cpu="x86"', | 1932 'gn_args': 'target_cpu="x86"', |
| 1944 }, | 1933 }, |
| 1945 }, | 1934 }, |
| 1946 } | 1935 } |
| OLD | NEW |