| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 {'name': 'android_compile_arm64_dbg', 'slavebuilddir': 'android_arm64'}, | 110 {'name': 'android_compile_arm64_dbg', 'slavebuilddir': 'android_arm64'}, |
| 111 {'name': 'android_compile_arm64_rel', 'slavebuilddir': 'android_arm64'}, | 111 {'name': 'android_compile_arm64_rel', 'slavebuilddir': 'android_arm64'}, |
| 112 {'name': 'android_compile_mips_dbg', 'slavebuilddir': 'android_mips'}, | 112 {'name': 'android_compile_mips_dbg', 'slavebuilddir': 'android_mips'}, |
| 113 {'name': 'android_compile_x86_rel', 'slavebuilddir': 'android_x86'}, | 113 {'name': 'android_compile_x86_rel', 'slavebuilddir': 'android_x86'}, |
| 114 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, | 114 {'name': 'android_compile_x86_dbg', 'slavebuilddir': 'android_x86'}, |
| 115 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, | 115 {'name': 'android_compile_x64_dbg', 'slavebuilddir': 'android_x64'}, |
| 116 {'name': 'android_dbg', 'slavebuilddir': 'android'}, | 116 {'name': 'android_dbg', 'slavebuilddir': 'android'}, |
| 117 {'name': 'android_rel', 'slavebuilddir': 'android'}, | 117 {'name': 'android_rel', 'slavebuilddir': 'android'}, |
| 118 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, | 118 {'name': 'android_clang_dbg', 'slavebuilddir': 'android_clang'}, |
| 119 {'name': 'android_arm64_rel', 'slavebuilddir': 'android_arm64'}, | 119 {'name': 'android_arm64_rel', 'slavebuilddir': 'android_arm64'}, |
| 120 {'name': 'android_n6', 'slavebuilddir': 'android'}, | |
| 121 {'name': 'android_gyp_dbg', 'slavebuilddir': 'android_gyp'}, | 120 {'name': 'android_gyp_dbg', 'slavebuilddir': 'android_gyp'}, |
| 122 {'name': 'android_gyp_rel', 'slavebuilddir': 'android_gyp'}, | 121 {'name': 'android_gyp_rel', 'slavebuilddir': 'android_gyp'}, |
| 123 ] | 122 ] |
| 124 | 123 |
| 125 | 124 |
| 126 m_annotator = annotator_factory.AnnotatorFactory() | 125 m_annotator = annotator_factory.AnnotatorFactory() |
| 127 | 126 |
| 128 | 127 |
| 129 def m_remote_run(recipe, **kwargs): | 128 def m_remote_run(recipe, **kwargs): |
| 130 return remote_run_factory.RemoteRunFactory( | 129 return remote_run_factory.RemoteRunFactory( |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 # Must be at least 2x the number of slaves. | 250 # Must be at least 2x the number of slaves. |
| 252 c['eventHorizon'] = 100 | 251 c['eventHorizon'] = 100 |
| 253 # Must be at least 2x the number of on-going builds. | 252 # Must be at least 2x the number of on-going builds. |
| 254 c['buildCacheSize'] = 100 | 253 c['buildCacheSize'] = 100 |
| 255 | 254 |
| 256 ####### PROJECT IDENTITY | 255 ####### PROJECT IDENTITY |
| 257 | 256 |
| 258 # The 'projectURL' string will be used to provide a link | 257 # The 'projectURL' string will be used to provide a link |
| 259 # from buildbot HTML pages to your project's home page. | 258 # from buildbot HTML pages to your project's home page. |
| 260 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' | 259 c['projectURL'] = 'http://dev.chromium.org/developers/testing/try-server-usage' |
| OLD | NEW |