| 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 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 573 | 573 |
| 574 # This is intentionally a release_bot and not a release_trybot; | 574 # This is intentionally a release_bot and not a release_trybot; |
| 575 # enabling DCHECKs seems to cause flaky failures that don't show up | 575 # enabling DCHECKs seems to cause flaky failures that don't show up |
| 576 # on the continuous builder. | 576 # on the continuous builder. |
| 577 'linux_chromium_msan_rel_ng': 'msan_release_bot', | 577 'linux_chromium_msan_rel_ng': 'msan_release_bot', |
| 578 | 578 |
| 579 'linux_chromium_rel_ng': 'gpu_tests_release_trybot', | 579 'linux_chromium_rel_ng': 'gpu_tests_release_trybot', |
| 580 'linux_chromium_tsan_rel_ng': 'tsan_disable_nacl_release_trybot', | 580 'linux_chromium_tsan_rel_ng': 'tsan_disable_nacl_release_trybot', |
| 581 'linux_chromium_ubsan_rel_ng': 'ubsan_vptr_release_trybot', | 581 'linux_chromium_ubsan_rel_ng': 'ubsan_vptr_release_trybot', |
| 582 | 582 |
| 583 # This is 'release_bot' rather than 'release_trybot' because | 583 # These are 'release_bot' rather than 'release_trybot' because |
| 584 # 'release_trybot' includes 'dcheck_always_on', which might cause | 584 # 'release_trybot' includes 'dcheck_always_on', which might cause |
| 585 # some layout test results to be different than for normal release | 585 # some layout test results to be different than for normal release |
| 586 # builds (and we only store baselines for release builds). | 586 # builds (and we only store baselines for release builds). |
| 587 'linux_layout_tests_slimming_paint_v2': 'release_bot', | 587 'linux_layout_tests_slimming_paint_v2': 'release_bot', |
| 588 'linux_layout_tests_layout_ng': 'release_bot', |
| 588 | 589 |
| 589 'linux_nacl_sdk_build': 'release_bot', | 590 'linux_nacl_sdk_build': 'release_bot', |
| 590 'linux_nacl_sdk': 'release_bot', | 591 'linux_nacl_sdk': 'release_bot', |
| 591 'linux_optional_gpu_tests_rel': 'gpu_fyi_tests_release_trybot', | 592 'linux_optional_gpu_tests_rel': 'gpu_fyi_tests_release_trybot', |
| 592 'linux_site_isolation': 'release_trybot', | 593 'linux_site_isolation': 'release_trybot', |
| 593 'linux_upload_clang': 'release_bot', | 594 'linux_upload_clang': 'release_bot', |
| 594 }, | 595 }, |
| 595 | 596 |
| 596 'tryserver.chromium.mac': { | 597 'tryserver.chromium.mac': { |
| 597 'ios-device': 'ios', | 598 'ios-device': 'ios', |
| (...skipping 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1935 | 1936 |
| 1936 'x64': { | 1937 'x64': { |
| 1937 'gn_args': 'target_cpu="x64"', | 1938 'gn_args': 'target_cpu="x64"', |
| 1938 }, | 1939 }, |
| 1939 | 1940 |
| 1940 'x86': { | 1941 'x86': { |
| 1941 'gn_args': 'target_cpu="x86"', | 1942 'gn_args': 'target_cpu="x86"', |
| 1942 }, | 1943 }, |
| 1943 }, | 1944 }, |
| 1944 } | 1945 } |
| OLD | NEW |