| 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from infra.libs.infra_types import freeze | 7 from infra.libs.infra_types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 }, | 48 }, |
| 49 'win_blink_oilpan_compile_rel': { | 49 'win_blink_oilpan_compile_rel': { |
| 50 'mastername': 'chromium.webkit', | 50 'mastername': 'chromium.webkit', |
| 51 'buildername': 'WebKit Win Oilpan', | 51 'buildername': 'WebKit Win Oilpan', |
| 52 'analyze_mode': 'compile', | 52 'analyze_mode': 'compile', |
| 53 }, | 53 }, |
| 54 }, | 54 }, |
| 55 }, | 55 }, |
| 56 'tryserver.chromium.linux': { | 56 'tryserver.chromium.linux': { |
| 57 'builders': { | 57 'builders': { |
| 58 'linux_arm_compile': { | |
| 59 'mastername': 'chromium.linux', | |
| 60 'buildername': 'Linux ARM', | |
| 61 'analyze_mode': 'compile', | |
| 62 }, | |
| 63 'android_amp': { | 58 'android_amp': { |
| 64 'mastername': 'chromium.fyi', | 59 'mastername': 'chromium.fyi', |
| 65 'buildername': 'Android Tests (amp split)', | 60 'buildername': 'Android Tests (amp split)', |
| 66 }, | 61 }, |
| 67 'android_arm64_dbg_recipe': { | 62 'android_arm64_dbg_recipe': { |
| 68 'mastername': 'chromium.linux', | 63 'mastername': 'chromium.linux', |
| 69 'buildername': 'Android Arm64 Builder (dbg)', | 64 'buildername': 'Android Arm64 Builder (dbg)', |
| 70 'analyze_mode': 'compile', | 65 'analyze_mode': 'compile', |
| 71 }, | 66 }, |
| 72 'android_clang_dbg_recipe': { | 67 'android_clang_dbg_recipe': { |
| (...skipping 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 yield ( | 1226 yield ( |
| 1232 api.test('webkit_tests_fail_compile_without_patch_fail') + | 1227 api.test('webkit_tests_fail_compile_without_patch_fail') + |
| 1233 props(buildername='linux_chromium_rel_ng') + | 1228 props(buildername='linux_chromium_rel_ng') + |
| 1234 props(patch_project='blink') + | 1229 props(patch_project='blink') + |
| 1235 api.platform.name('linux') + | 1230 api.platform.name('linux') + |
| 1236 api.override_step_data('read test spec', api.json.output({})) + | 1231 api.override_step_data('read test spec', api.json.output({})) + |
| 1237 api.override_step_data('webkit_tests (with patch)', | 1232 api.override_step_data('webkit_tests (with patch)', |
| 1238 api.test_utils.canned_test_output(False)) + | 1233 api.test_utils.canned_test_output(False)) + |
| 1239 api.override_step_data('compile (without patch)', retcode=1) | 1234 api.override_step_data('compile (without patch)', retcode=1) |
| 1240 ) | 1235 ) |
| OLD | NEW |