Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Contains the bulk of the V8 builder configurations so they can be reused | 5 # Contains the bulk of the V8 builder configurations so they can be reused |
| 6 # from multiple recipes. | 6 # from multiple recipes. |
| 7 | 7 |
| 8 from recipe_engine.types import freeze | 8 from recipe_engine.types import freeze |
| 9 | 9 |
| 10 | 10 |
| (...skipping 1510 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1521 'default_hard_timeout': 4 * 60 * 60, | 1521 'default_hard_timeout': 4 * 60 * 60, |
| 1522 }, | 1522 }, |
| 1523 'tests': [Deopt], | 1523 'tests': [Deopt], |
| 1524 'testing': {'platform': 'linux'}, | 1524 'testing': {'platform': 'linux'}, |
| 1525 }, | 1525 }, |
| 1526 }, | 1526 }, |
| 1527 }, | 1527 }, |
| 1528 ####### Waterfall: client.v8.ports | 1528 ####### Waterfall: client.v8.ports |
| 1529 'client.v8.ports': { | 1529 'client.v8.ports': { |
| 1530 'builders': { | 1530 'builders': { |
| 1531 'V8 Linux - s390 - sim': { | |
| 1532 'chromium_apply_config': [ | |
| 1533 'clang', 'v8_ninja', 'goma', 'simulate_s390'], | |
| 1534 'v8_config_kwargs': { | |
| 1535 'BUILD_CONFIG': 'Release', | |
| 1536 'TARGET_BITS': 32, | |
| 1537 }, | |
| 1538 'bot_type': 'builder_tester', | |
| 1539 'tests': [V8Testing], | |
| 1540 'testing': {'platform': 'linux'}, | |
| 1541 }, | |
| 1542 'V8 Linux - s390x - sim': { | |
| 1543 'chromium_apply_config': [ | |
| 1544 'clang', 'v8_ninja', 'goma', 'simulate_s390'], | |
| 1545 'v8_config_kwargs': { | |
| 1546 'BUILD_CONFIG': 'Release', | |
| 1547 'TARGET_BITS': 64, | |
|
kjellander_chromium
2016/04/06 15:09:59
So the x in s390x means 64-bit?
Michael Achenbach
2016/04/06 16:03:18
s390x has 64 while s390 has 31 bits (yes 1). I don
Sergiy Byelozyorov
2016/04/06 16:42:07
Wow! How does this work?
Michael Achenbach
2016/04/06 17:36:44
The internet has probably a lot of reading materia
| |
| 1548 }, | |
| 1549 'bot_type': 'builder_tester', | |
| 1550 'tests': [V8Testing], | |
| 1551 'testing': {'platform': 'linux'}, | |
| 1552 }, | |
| 1531 'V8 Linux - x87 - nosnap - debug builder': { | 1553 'V8 Linux - x87 - nosnap - debug builder': { |
| 1532 'v8_apply_config': ['no_snapshot'], | 1554 'v8_apply_config': ['no_snapshot'], |
| 1533 'chromium_apply_config': [ | 1555 'chromium_apply_config': [ |
| 1534 'v8_ninja', 'default_compiler', 'goma', 'no_snapshot', 'x87'], | 1556 'v8_ninja', 'default_compiler', 'goma', 'no_snapshot', 'x87'], |
| 1535 'v8_config_kwargs': { | 1557 'v8_config_kwargs': { |
| 1536 'BUILD_CONFIG': 'Debug', | 1558 'BUILD_CONFIG': 'Debug', |
| 1537 'TARGET_BITS': 32, | 1559 'TARGET_BITS': 32, |
| 1538 }, | 1560 }, |
| 1539 'bot_type': 'builder', | 1561 'bot_type': 'builder', |
| 1540 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', | 1562 'build_gs_archive': 'linux_x87_nosnap_dbg_archive', |
| (...skipping 960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2501 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) | 2523 dart_win_release['chromium_apply_config'].extend(['v8_ninja', 'msvs2013']) |
| 2502 | 2524 |
| 2503 BUILDERS = freeze(BUILDERS) | 2525 BUILDERS = freeze(BUILDERS) |
| 2504 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) | 2526 BRANCH_BUILDERS = freeze(BRANCH_BUILDERS) |
| 2505 | 2527 |
| 2506 def iter_builders(): | 2528 def iter_builders(): |
| 2507 for mastername, master_config in BUILDERS.iteritems(): | 2529 for mastername, master_config in BUILDERS.iteritems(): |
| 2508 builders = master_config['builders'] | 2530 builders = master_config['builders'] |
| 2509 for buildername, bot_config in builders.iteritems(): | 2531 for buildername, bot_config in builders.iteritems(): |
| 2510 yield mastername, builders, buildername, bot_config | 2532 yield mastername, builders, buildername, bot_config |
| OLD | NEW |