| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 # | 3 # |
| 4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
| 5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
| 6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
| 7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
| 8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
| 9 | 9 |
| 10 import os | 10 import os |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 {'name': 'android_compile_mips_dbg', 'slavebuilddir': 'android_mips'}, | 115 {'name': 'android_compile_mips_dbg', 'slavebuilddir': 'android_mips'}, |
| 116 {'name': 'android_compile_x86_rel', 'slavebuilddir': 'android_x86'}, | 116 {'name': 'android_compile_x86_rel', 'slavebuilddir': 'android_x86'}, |
| 117 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, | 117 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, |
| 118 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, | 118 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, |
| 119 {'name': 'android_dbg', 'slavebuilddir': 'android'}, | 119 {'name': 'android_dbg', 'slavebuilddir': 'android'}, |
| 120 {'name': 'android_rel', 'slavebuilddir': 'android'}, | 120 {'name': 'android_rel', 'slavebuilddir': 'android'}, |
| 121 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, | 121 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, |
| 122 {'name': 'android_arm64_rel', 'slavebuilddir': 'android_arm64'}, | 122 {'name': 'android_arm64_rel', 'slavebuilddir': 'android_arm64'}, |
| 123 {'name': 'android_gyp_dbg', 'slavebuilddir': 'android_gyp'}, | 123 {'name': 'android_gyp_dbg', 'slavebuilddir': 'android_gyp'}, |
| 124 {'name': 'android_gyp_rel', 'slavebuilddir': 'android_gyp'}, | 124 {'name': 'android_gyp_rel', 'slavebuilddir': 'android_gyp'}, |
| 125 {'name': 'android_more_configs', 'slavebuilddir': 'android'}, |
| 125 ] | 126 ] |
| 126 | 127 |
| 127 | 128 |
| 128 m_annotator = annotator_factory.AnnotatorFactory() | 129 m_annotator = annotator_factory.AnnotatorFactory() |
| 129 | 130 |
| 130 | 131 |
| 131 def m_remote_run(recipe, **kwargs): | 132 def m_remote_run(recipe, **kwargs): |
| 132 return remote_run_factory.RemoteRunFactory( | 133 return remote_run_factory.RemoteRunFactory( |
| 133 active_master=ActiveMaster, | 134 active_master=ActiveMaster, |
| 134 repository='https://chromium.googlesource.com/chromium/tools/build.git', | 135 repository='https://chromium.googlesource.com/chromium/tools/build.git', |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 # Must be at least 2x the number of slaves. | 254 # Must be at least 2x the number of slaves. |
| 254 c['eventHorizon'] = 100 | 255 c['eventHorizon'] = 100 |
| 255 # Must be at least 2x the number of on-going builds. | 256 # Must be at least 2x the number of on-going builds. |
| 256 c['buildCacheSize'] = 100 | 257 c['buildCacheSize'] = 100 |
| 257 | 258 |
| 258 ####### PROJECT IDENTITY | 259 ####### PROJECT IDENTITY |
| 259 | 260 |
| 260 # The 'projectURL' string will be used to provide a link | 261 # The 'projectURL' string will be used to provide a link |
| 261 # from buildbot HTML pages to your project's home page. | 262 # from buildbot HTML pages to your project's home page. |
| 262 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 263 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |