Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
| 6 | 6 |
| 7 # READ THIS: | 7 # READ THIS: |
| 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure | 8 # See http://dev.chromium.org/developers/testing/chromium-build-infrastructure |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 631 'factory': m_annotator.BaseFactory( | 631 'factory': m_annotator.BaseFactory( |
| 632 'chromium_trybot', | 632 'chromium_trybot', |
| 633 { | 633 { |
| 634 'build_config': ('Release' if 'rel' in targ else 'Debug'), | 634 'build_config': ('Release' if 'rel' in targ else 'Debug'), |
| 635 'recipe_config': 'chromeos', | 635 'recipe_config': 'chromeos', |
| 636 } | 636 } |
| 637 ), | 637 ), |
| 638 # Share build directory with compatible existing builders to save space. | 638 # Share build directory with compatible existing builders to save space. |
| 639 'slavebuilddir': 'linux_chromeos' | 639 'slavebuilddir': 'linux_chromeos' |
| 640 }, { | 640 }, { |
| 641 'name': 'linux_chromium_chromeos_compile%s' % targ, | |
| 642 'factory': m_annotator.BaseFactory( | |
| 643 'chromium_trybot', | |
| 644 { | |
| 645 'build_config': ('Release' if 'rel' in targ else 'Debug'), | |
|
Paweł Hajdan Jr.
2014/10/31 10:03:50
Please remove this dict, it's no-op.
dnj
2014/10/31 16:49:50
Done. I'll remove it from the full build configura
| |
| 646 'recipe_config': 'chromeos', | |
| 647 } | |
| 648 ), | |
| 649 # Share build directory with compatible existing builders to save space. | |
| 650 'slavebuilddir': 'linux_chromeos' | |
| 651 }, { | |
| 641 'name': 'linux_chromium_trusty%s' % targ, | 652 'name': 'linux_chromium_trusty%s' % targ, |
| 642 'factory': m_annotator.BaseFactory('chromium_trybot'), | 653 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 643 # Share build directory with compatible existing builders to save space. | 654 # Share build directory with compatible existing builders to save space. |
| 644 'slavebuilddir': 'linux', | 655 'slavebuilddir': 'linux', |
| 645 }, { | 656 }, { |
| 646 'name': 'linux_chromium_trusty32%s' % targ, | 657 'name': 'linux_chromium_trusty32%s' % targ, |
| 647 'factory': m_annotator.BaseFactory('chromium_trybot'), | 658 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 648 # Share build directory with compatible existing builders to save space. | 659 # Share build directory with compatible existing builders to save space. |
| 649 'slavebuilddir': 'linux', | 660 'slavebuilddir': 'linux', |
| 650 }, { | 661 }, { |
| (...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1112 # base.make_stop_form = hack_stop(base.make_stop_form) | 1123 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 1113 | 1124 |
| 1114 | 1125 |
| 1115 ####### PROJECT IDENTITY | 1126 ####### PROJECT IDENTITY |
| 1116 | 1127 |
| 1117 # The 'projectURL' string will be used to provide a link | 1128 # The 'projectURL' string will be used to provide a link |
| 1118 # from buildbot HTML pages to your project's home page. | 1129 # from buildbot HTML pages to your project's home page. |
| 1119 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1130 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1120 | 1131 |
| 1121 # vi: set ts=4 sts=2 sw=2 et: | 1132 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |