| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 from buildbot.schedulers.basic import SingleBranchScheduler | 5 from buildbot.schedulers.basic import SingleBranchScheduler |
| 6 | 6 |
| 7 from master.factory import remote_run_factory | 7 from master.factory import remote_run_factory |
| 8 | 8 |
| 9 import master_site_config | 9 import master_site_config |
| 10 ActiveMaster = master_site_config.WebRTC | 10 ActiveMaster = master_site_config.WebRTC |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 'Android32 (M Nexus5X)', | 29 'Android32 (M Nexus5X)', |
| 30 'Android64 (M Nexus5X)(dbg)', | 30 'Android64 (M Nexus5X)(dbg)', |
| 31 'Android64 (M Nexus5X)', | 31 'Android64 (M Nexus5X)', |
| 32 'Android32 Builder x86', | 32 'Android32 Builder x86', |
| 33 'Android32 Builder x86 (dbg)', | 33 'Android32 Builder x86 (dbg)', |
| 34 'Android32 Builder MIPS (dbg)', | 34 'Android32 Builder MIPS (dbg)', |
| 35 'Android32 Clang (dbg)', | 35 'Android32 Clang (dbg)', |
| 36 'Android64 Builder x64 (dbg)', | 36 'Android64 Builder x64 (dbg)', |
| 37 'Android32 GYP', | 37 'Android32 GYP', |
| 38 'Android32 GYP (dbg)', | 38 'Android32 GYP (dbg)', |
| 39 'Android32 (more configs)', |
| 39 ]), | 40 ]), |
| 40 ]) | 41 ]) |
| 41 | 42 |
| 42 # 'slavebuilddir' below is used to reduce the number of checkouts since some | 43 # 'slavebuilddir' below is used to reduce the number of checkouts since some |
| 43 # of the builders are pooled over multiple slave machines. | 44 # of the builders are pooled over multiple slave machines. |
| 44 specs = [ | 45 specs = [ |
| 45 {'name': 'Android32 (M Nexus5X)(dbg)', 'slavebuilddir': 'android_arm32'}, | 46 {'name': 'Android32 (M Nexus5X)(dbg)', 'slavebuilddir': 'android_arm32'}, |
| 46 {'name': 'Android32 (M Nexus5X)', 'slavebuilddir': 'android_arm32'}, | 47 {'name': 'Android32 (M Nexus5X)', 'slavebuilddir': 'android_arm32'}, |
| 47 {'name': 'Android64 (M Nexus5X)(dbg)', 'slavebuilddir': 'android_arm64'}, | 48 {'name': 'Android64 (M Nexus5X)(dbg)', 'slavebuilddir': 'android_arm64'}, |
| 48 {'name': 'Android64 (M Nexus5X)', 'slavebuilddir': 'android_arm64'}, | 49 {'name': 'Android64 (M Nexus5X)', 'slavebuilddir': 'android_arm64'}, |
| 49 {'name': 'Android32 Builder x86', 'slavebuilddir': 'android_x86'}, | 50 {'name': 'Android32 Builder x86', 'slavebuilddir': 'android_x86'}, |
| 50 {'name': 'Android32 Builder x86 (dbg)', 'slavebuilddir': 'android_x86'}, | 51 {'name': 'Android32 Builder x86 (dbg)', 'slavebuilddir': 'android_x86'}, |
| 51 {'name': 'Android32 Builder MIPS (dbg)', 'slavebuilddir': 'android_mips'}, | 52 {'name': 'Android32 Builder MIPS (dbg)', 'slavebuilddir': 'android_mips'}, |
| 52 {'name': 'Android32 Clang (dbg)', 'slavebuilddir': 'android_clang'}, | 53 {'name': 'Android32 Clang (dbg)', 'slavebuilddir': 'android_clang'}, |
| 53 {'name': 'Android64 Builder x64 (dbg)', 'slavebuilddir': 'android_x64'}, | 54 {'name': 'Android64 Builder x64 (dbg)', 'slavebuilddir': 'android_x64'}, |
| 54 {'name': 'Android32 GYP', 'slavebuilddir': 'android_gyp'}, | 55 {'name': 'Android32 GYP', 'slavebuilddir': 'android_gyp'}, |
| 55 {'name': 'Android32 GYP (dbg)', 'slavebuilddir': 'android_gyp'}, | 56 {'name': 'Android32 GYP (dbg)', 'slavebuilddir': 'android_gyp'}, |
| 57 {'name': 'Android32 (more configs)', 'slavebuilddir': 'android'}, |
| 56 ] | 58 ] |
| 57 | 59 |
| 58 c['builders'].extend([ | 60 c['builders'].extend([ |
| 59 { | 61 { |
| 60 'name': spec['name'], | 62 'name': spec['name'], |
| 61 'factory': m_remote_run('webrtc/standalone'), | 63 'factory': m_remote_run('webrtc/standalone'), |
| 62 'notify_on_missing': True, | 64 'notify_on_missing': True, |
| 63 'category': 'android', | 65 'category': 'android', |
| 64 'slavebuilddir': spec.get('slavebuilddir', 'android'), | 66 'slavebuilddir': spec.get('slavebuilddir', 'android'), |
| 65 } for spec in specs | 67 } for spec in specs |
| 66 ]) | 68 ]) |
| OLD | NEW |