| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 }, | 228 }, |
| 229 'linux_chromium_gn_rel': { | 229 'linux_chromium_gn_rel': { |
| 230 'mastername': 'chromium.linux', | 230 'mastername': 'chromium.linux', |
| 231 'buildername': 'Linux GN', | 231 'buildername': 'Linux GN', |
| 232 }, | 232 }, |
| 233 'linux_chromium_rel_ng': { | 233 'linux_chromium_rel_ng': { |
| 234 'mastername': 'chromium.linux', | 234 'mastername': 'chromium.linux', |
| 235 'buildername': 'Linux Builder', | 235 'buildername': 'Linux Builder', |
| 236 'tester': 'Linux Tests', | 236 'tester': 'Linux Tests', |
| 237 }, | 237 }, |
| 238 'ned_tests_rel_ng': { |
| 239 'mastername': 'chromium.linux', |
| 240 'buildername': 'Linux Builder', |
| 241 'tester': 'Ned Tests', |
| 242 }, |
| 238 'linux_chromium_asan_rel_ng': { | 243 'linux_chromium_asan_rel_ng': { |
| 239 'mastername': 'chromium.memory', | 244 'mastername': 'chromium.memory', |
| 240 'buildername': 'Linux ASan LSan Builder', | 245 'buildername': 'Linux ASan LSan Builder', |
| 241 'tester': 'Linux ASan LSan Tests (1)', | 246 'tester': 'Linux ASan LSan Tests (1)', |
| 242 }, | 247 }, |
| 243 'linux_chromium_compile_dbg_ng': { | 248 'linux_chromium_compile_dbg_ng': { |
| 244 'mastername': 'chromium.linux', | 249 'mastername': 'chromium.linux', |
| 245 'buildername': 'Linux Builder (dbg)', | 250 'buildername': 'Linux Builder (dbg)', |
| 246 'analyze_mode': 'compile', | 251 'analyze_mode': 'compile', |
| 247 }, | 252 }, |
| (...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1424 api.test_utils.canned_test_output(passing=True)) | 1429 api.test_utils.canned_test_output(passing=True)) |
| 1425 ) | 1430 ) |
| 1426 | 1431 |
| 1427 yield ( | 1432 yield ( |
| 1428 api.test('use_v8_patch_on_blink_trybot') + | 1433 api.test('use_v8_patch_on_blink_trybot') + |
| 1429 props(mastername='tryserver.blink', | 1434 props(mastername='tryserver.blink', |
| 1430 buildername='mac_blink_rel', | 1435 buildername='mac_blink_rel', |
| 1431 patch_project='v8') + | 1436 patch_project='v8') + |
| 1432 api.platform.name('mac') | 1437 api.platform.name('mac') |
| 1433 ) | 1438 ) |
| OLD | NEW |