| 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 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 623 # Share build directory with compatible existing builders to save space. | 623 # Share build directory with compatible existing builders to save space. |
| 624 'slavebuilddir': 'linux_chromeos' | 624 'slavebuilddir': 'linux_chromeos' |
| 625 }, { | 625 }, { |
| 626 'name': 'linux_chromium_chromeos_athena%s' % targ, | 626 'name': 'linux_chromium_chromeos_athena%s' % targ, |
| 627 'factory': m_annotator.BaseFactory('chromium_trybot'), | 627 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 628 'slavebuilddir': 'linux_chromeos_athena' | 628 'slavebuilddir': 'linux_chromeos_athena' |
| 629 }, { | 629 }, { |
| 630 'name': 'linux_chromium_chromeos%s' % targ, | 630 'name': 'linux_chromium_chromeos%s' % targ, |
| 631 'factory': m_annotator.BaseFactory( | 631 'factory': m_annotator.BaseFactory( |
| 632 'chromium_trybot', | 632 'chromium_trybot', |
| 633 { | |
| 634 'build_config': ('Release' if 'rel' in targ else 'Debug'), | |
| 635 'recipe_config': 'chromeos', | |
| 636 } | |
| 637 ), | 633 ), |
| 638 # Share build directory with compatible existing builders to save space. | 634 # Share build directory with compatible existing builders to save space. |
| 639 'slavebuilddir': 'linux_chromeos' | 635 'slavebuilddir': 'linux_chromeos' |
| 636 }, { |
| 637 'name': 'linux_chromium_chromeos_compile%s_ng' % targ, |
| 638 'factory': m_annotator.BaseFactory( |
| 639 'chromium_trybot', |
| 640 ), |
| 641 # Share build directory with compatible existing builders to save space. |
| 642 'slavebuilddir': 'linux_chromeos' |
| 640 }, { | 643 }, { |
| 641 'name': 'linux_chromium_trusty%s' % targ, | 644 'name': 'linux_chromium_trusty%s' % targ, |
| 642 'factory': m_annotator.BaseFactory('chromium_trybot'), | 645 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 643 # Share build directory with compatible existing builders to save space. | 646 # Share build directory with compatible existing builders to save space. |
| 644 'slavebuilddir': 'linux', | 647 'slavebuilddir': 'linux', |
| 645 }, { | 648 }, { |
| 646 'name': 'linux_chromium_trusty32%s' % targ, | 649 'name': 'linux_chromium_trusty32%s' % targ, |
| 647 'factory': m_annotator.BaseFactory('chromium_trybot'), | 650 'factory': m_annotator.BaseFactory('chromium_trybot'), |
| 648 # Share build directory with compatible existing builders to save space. | 651 # Share build directory with compatible existing builders to save space. |
| 649 'slavebuilddir': 'linux', | 652 'slavebuilddir': 'linux', |
| (...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1112 # base.make_stop_form = hack_stop(base.make_stop_form) | 1115 # base.make_stop_form = hack_stop(base.make_stop_form) |
| 1113 | 1116 |
| 1114 | 1117 |
| 1115 ####### PROJECT IDENTITY | 1118 ####### PROJECT IDENTITY |
| 1116 | 1119 |
| 1117 # The 'projectURL' string will be used to provide a link | 1120 # The 'projectURL' string will be used to provide a link |
| 1118 # from buildbot HTML pages to your project's home page. | 1121 # from buildbot HTML pages to your project's home page. |
| 1119 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 1122 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| 1120 | 1123 |
| 1121 # vi: set ts=4 sts=2 sw=2 et: | 1124 # vi: set ts=4 sts=2 sw=2 et: |
| OLD | NEW |