| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 annotator_factory | 7 from master.factory import annotator_factory |
| 8 | 8 |
| 9 m_annotator = annotator_factory.AnnotatorFactory() | 9 m_annotator = annotator_factory.AnnotatorFactory() |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 specs = [ | 29 specs = [ |
| 30 {'name': 'Android Debug'}, | 30 {'name': 'Android Debug'}, |
| 31 {'name': 'Android Release'}, | 31 {'name': 'Android Release'}, |
| 32 {'name': 'Android Debug (GN)', 'slavebuilddir': 'android_gn'}, | 32 {'name': 'Android Debug (GN)', 'slavebuilddir': 'android_gn'}, |
| 33 {'name': 'Android Release (GN)', 'slavebuilddir': 'android_gn'}, | 33 {'name': 'Android Release (GN)', 'slavebuilddir': 'android_gn'}, |
| 34 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'}, | 34 {'name': 'Android Clang Debug', 'slavebuilddir': 'android_clang'}, |
| 35 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'}, | 35 {'name': 'Android ARM64 Debug', 'slavebuilddir': 'android_arm64'}, |
| 36 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'}, | 36 {'name': 'Android32 x86 Debug', 'slavebuilddir': 'android_x86'}, |
| 37 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'}, | 37 {'name': 'Android64 x64 Debug', 'slavebuilddir': 'android_x64'}, |
| 38 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'}, | 38 {'name': 'Android32 MIPS Debug', 'slavebuilddir': 'android_mips'}, |
| 39 { |
| 40 'name': 'Android Tester ARM32 Debug (Nexus 5X)', |
| 41 'slavebuilddir': 'android_arm32', |
| 42 }, |
| 43 { |
| 44 'name': 'Android Tester ARM32 Release (Nexus 5X)', |
| 45 'slavebuilddir': 'android_arm32', |
| 46 }, |
| 47 { |
| 48 'name': 'Android Tester ARM64 Debug (Nexus 5X)', |
| 49 'slavebuilddir': 'android_arm64', |
| 50 }, |
| 39 ] | 51 ] |
| 40 | 52 |
| 41 c['builders'].extend([ | 53 c['builders'].extend([ |
| 42 { | 54 { |
| 43 'name': spec['name'], | 55 'name': spec['name'], |
| 44 'factory': m_annotator.BaseFactory('libyuv/libyuv'), | 56 'factory': m_annotator.BaseFactory('libyuv/libyuv'), |
| 45 'notify_on_missing': True, | 57 'notify_on_missing': True, |
| 46 'category': 'android', | 58 'category': 'android', |
| 47 'slavebuilddir': spec.get('slavebuilddir', 'android'), | 59 'slavebuilddir': spec.get('slavebuilddir', 'android'), |
| 48 } for spec in specs | 60 } for spec in specs |
| 49 ]) | 61 ]) |
| OLD | NEW |