| 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 recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'amp', | 10 'amp', |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 263 }, | 263 }, |
| 264 'linux_chromium_gn_rel': { | 264 'linux_chromium_gn_rel': { |
| 265 'mastername': 'chromium.linux', | 265 'mastername': 'chromium.linux', |
| 266 'buildername': 'Linux GN', | 266 'buildername': 'Linux GN', |
| 267 }, | 267 }, |
| 268 'linux_chromium_rel_ng': { | 268 'linux_chromium_rel_ng': { |
| 269 'mastername': 'chromium.linux', | 269 'mastername': 'chromium.linux', |
| 270 'buildername': 'Linux Builder', | 270 'buildername': 'Linux Builder', |
| 271 'tester': 'Linux Tests', | 271 'tester': 'Linux Tests', |
| 272 }, | 272 }, |
| 273 'ned_tests_rel_ng': { |
| 274 'mastername': 'chromium.linux', |
| 275 'buildername': 'Linux Builder', |
| 276 'tester': 'Ned Tests', |
| 277 }, |
| 273 'linux_chromium_asan_rel_ng': { | 278 'linux_chromium_asan_rel_ng': { |
| 274 'mastername': 'chromium.memory', | 279 'mastername': 'chromium.memory', |
| 275 'buildername': 'Linux ASan LSan Builder', | 280 'buildername': 'Linux ASan LSan Builder', |
| 276 'tester': 'Linux ASan LSan Tests (1)', | 281 'tester': 'Linux ASan LSan Tests (1)', |
| 277 }, | 282 }, |
| 278 'linux_chromium_compile_dbg_ng': { | 283 'linux_chromium_compile_dbg_ng': { |
| 279 'mastername': 'chromium.linux', | 284 'mastername': 'chromium.linux', |
| 280 'buildername': 'Linux Builder (dbg)', | 285 'buildername': 'Linux Builder (dbg)', |
| 281 'analyze_mode': 'compile', | 286 'analyze_mode': 'compile', |
| 282 }, | 287 }, |
| (...skipping 1244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1527 api.test_utils.canned_test_output(passing=True)) | 1532 api.test_utils.canned_test_output(passing=True)) |
| 1528 ) | 1533 ) |
| 1529 | 1534 |
| 1530 yield ( | 1535 yield ( |
| 1531 api.test('use_v8_patch_on_blink_trybot') + | 1536 api.test('use_v8_patch_on_blink_trybot') + |
| 1532 props(mastername='tryserver.blink', | 1537 props(mastername='tryserver.blink', |
| 1533 buildername='mac_blink_rel', | 1538 buildername='mac_blink_rel', |
| 1534 patch_project='v8') + | 1539 patch_project='v8') + |
| 1535 api.platform.name('mac') | 1540 api.platform.name('mac') |
| 1536 ) | 1541 ) |
| OLD | NEW |