| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # ex: set syntax=python: | 2 # ex: set syntax=python: |
| 3 | 3 |
| 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 5 # Use of this source code is governed by a BSD-style license that can be | 5 # Use of this source code is governed by a BSD-style license that can be |
| 6 # found in the LICENSE file. | 6 # found in the LICENSE file. |
| 7 | 7 |
| 8 # This is the buildmaster config file for the 'chromium' bot. It must | 8 # This is the buildmaster config file for the 'chromium' bot. It must |
| 9 # be installed as 'master.cfg' in your buildmaster's base directory | 9 # be installed as 'master.cfg' in your buildmaster's base directory |
| 10 # (although the filename can be changed with the --basedir option to | 10 # (although the filename can be changed with the --basedir option to |
| (...skipping 869 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 880 return F_ANDROID( | 880 return F_ANDROID( |
| 881 target='Release', | 881 target='Release', |
| 882 annotation_script='src/build/android/buildbot/bb_run_bot.py', | 882 annotation_script='src/build/android/buildbot/bb_run_bot.py', |
| 883 tests=tests, | 883 tests=tests, |
| 884 factory_properties={ | 884 factory_properties={ |
| 885 'android_bot_id': 'perf-tests-rel-%s' % device_id, | 885 'android_bot_id': 'perf-tests-rel-%s' % device_id, |
| 886 'build_url': android_rel_archive, | 886 'build_url': android_rel_archive, |
| 887 'perf_id': 'android-%s' % device_id, | 887 'perf_id': 'android-%s' % device_id, |
| 888 'show_perf_results': True, | 888 'show_perf_results': True, |
| 889 'test_platform': 'android', | 889 'test_platform': 'android', |
| 890 'android_sharded_perf_tests': 'chromium_perf_android.json', |
| 890 }) | 891 }) |
| 891 | 892 |
| 892 f_cr_rel_android_gn = AndroidPerf('gn') | 893 f_cr_rel_android_gn = AndroidPerf('gn') |
| 893 f_cr_rel_android_nexus4 = AndroidPerf('nexus4') | 894 f_cr_rel_android_nexus4 = AndroidPerf('nexus4') |
| 894 f_cr_rel_android_nexus10 = AndroidPerf('nexus10') | 895 f_cr_rel_android_nexus10 = AndroidPerf('nexus10') |
| 895 | 896 |
| 896 # ---------------------------------------------------------------------------- | 897 # ---------------------------------------------------------------------------- |
| 897 # BUILDER DEFINITIONS | 898 # BUILDER DEFINITIONS |
| 898 | 899 |
| 899 # The 'builders' list defines the Builders. Each one is configured with a | 900 # The 'builders' list defines the Builders. Each one is configured with a |
| (...skipping 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1327 c['projectName'] = ActiveMaster.project_name | 1328 c['projectName'] = ActiveMaster.project_name |
| 1328 c['projectURL'] = config.Master.project_url | 1329 c['projectURL'] = config.Master.project_url |
| 1329 | 1330 |
| 1330 # the 'buildbotURL' string should point to the location where the buildbot's | 1331 # the 'buildbotURL' string should point to the location where the buildbot's |
| 1331 # internal web server (usually the html.Waterfall page) is visible. This | 1332 # internal web server (usually the html.Waterfall page) is visible. This |
| 1332 # typically uses the port number set in the Waterfall 'status' entry, but | 1333 # typically uses the port number set in the Waterfall 'status' entry, but |
| 1333 # with an externally-visible host name which the buildbot cannot figure out | 1334 # with an externally-visible host name which the buildbot cannot figure out |
| 1334 # without some help. | 1335 # without some help. |
| 1335 | 1336 |
| 1336 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.perf/' | 1337 c['buildbotURL'] = 'http://build.chromium.org/p/chromium.perf/' |
| OLD | NEW |