| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 from infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'bot_update', | 8 'bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 'tester': 'Linux ChromiumOS Ozone Tests (1)', | 128 'tester': 'Linux ChromiumOS Ozone Tests (1)', |
| 129 }, | 129 }, |
| 130 'linux_chromium_chromeos_ozone_dbg_ng': { | 130 'linux_chromium_chromeos_ozone_dbg_ng': { |
| 131 'mastername': 'chromium.chromiumos', | 131 'mastername': 'chromium.chromiumos', |
| 132 'buildername': 'Linux ChromiumOS Ozone Builder (dbg)', | 132 'buildername': 'Linux ChromiumOS Ozone Builder (dbg)', |
| 133 }, | 133 }, |
| 134 'linux_chromium_compile_dbg_32_ng': { | 134 'linux_chromium_compile_dbg_32_ng': { |
| 135 'mastername': 'chromium.linux', | 135 'mastername': 'chromium.linux', |
| 136 'buildername': 'Linux Builder (dbg)(32)', | 136 'buildername': 'Linux Builder (dbg)(32)', |
| 137 }, | 137 }, |
| 138 'linux_site_isolation': { |
| 139 'mastername': 'chromium.fyi', |
| 140 'buildername': 'Site Isolation Linux', |
| 141 }, |
| 138 'linux_chromium_practice_rel_ng': { | 142 'linux_chromium_practice_rel_ng': { |
| 139 'mastername': 'chromium.fyi', | 143 'mastername': 'chromium.fyi', |
| 140 'buildername': 'ChromiumPracticeFullTester', | 144 'buildername': 'ChromiumPracticeFullTester', |
| 141 }, | 145 }, |
| 142 }, | 146 }, |
| 143 }, | 147 }, |
| 144 'tryserver.chromium.mac': { | 148 'tryserver.chromium.mac': { |
| 145 'builders': { | 149 'builders': { |
| 146 'mac_chromium_dbg_ng': { | 150 'mac_chromium_dbg_ng': { |
| 147 'mastername': 'chromium.mac', | 151 'mastername': 'chromium.mac', |
| (...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 tryserver=True) | 892 tryserver=True) |
| 889 yield step_failure(mastername='tryserver.chromium.linux', | 893 yield step_failure(mastername='tryserver.chromium.linux', |
| 890 buildername='android_clang_dbg_recipe', | 894 buildername='android_clang_dbg_recipe', |
| 891 steps=['findbugs (with patch)'], | 895 steps=['findbugs (with patch)'], |
| 892 tryserver=True) | 896 tryserver=True) |
| 893 yield step_failure(mastername='tryserver.chromium.linux', | 897 yield step_failure(mastername='tryserver.chromium.linux', |
| 894 buildername='android_clang_dbg_recipe', | 898 buildername='android_clang_dbg_recipe', |
| 895 steps=['findbugs (with patch)', | 899 steps=['findbugs (with patch)', |
| 896 'findbugs (without patch)'], | 900 'findbugs (without patch)'], |
| 897 tryserver=True) | 901 tryserver=True) |
| OLD | NEW |