| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ( 7, 'smoothness_tough_canvas_cases'), | 121 ( 7, 'smoothness_tough_canvas_cases'), |
| 122 (13, 'spaceport'), | 122 (13, 'spaceport'), |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 # These run only on Desktop because of various technical limitations. | 125 # These run only on Desktop because of various technical limitations. |
| 126 # We'd like to run them on Android when possible. | 126 # We'd like to run them on Android when possible. |
| 127 _DESKTOP_ONLY_BENCHMARKS = [ | 127 _DESKTOP_ONLY_BENCHMARKS = [ |
| 128 ( 1, 'load_library_perf_tests'), | 128 ( 1, 'load_library_perf_tests'), |
| 129 (15, 'media_media_cns_cases'), | 129 (15, 'media_media_cns_cases'), |
| 130 (15, 'media_tough_media_cases'), | 130 (15, 'media_tough_media_cases'), |
| 131 ( 5, 'memory'), |
| 131 ( 2, 'startup_cold'), | 132 ( 2, 'startup_cold'), |
| 132 ( 7, 'startup_cold_dirty'), | 133 ( 7, 'startup_cold_dirty'), |
| 133 ( 7, 'startup_cold_session_restore'), | 134 ( 7, 'startup_cold_session_restore'), |
| 134 ( 2, 'startup_warm'), | 135 ( 2, 'startup_warm'), |
| 135 ( 2, 'startup_warm_dirty'), | 136 ( 2, 'startup_warm_dirty'), |
| 136 ( 4, 'startup_warm_session_restore'), | 137 ( 4, 'startup_warm_session_restore'), |
| 138 ( 1, 'sync'), |
| 137 ( 2, 'tab_switching_top_10'), | 139 ( 2, 'tab_switching_top_10'), |
| 138 ] | 140 ] |
| 139 | 141 |
| 140 # These run only on Android because they are only relevant to mobile. | 142 # These run only on Android because they are only relevant to mobile. |
| 141 # TODO: Estimate runtimes when we shard Android. | 143 # TODO: Estimate runtimes when we shard Android. |
| 142 _ANDROID_ONLY_BENCHMARKS = [ | 144 _ANDROID_ONLY_BENCHMARKS = [ |
| 143 ( 0, 'media_android'), | 145 ( 0, 'media_android'), |
| 144 ( 0, 'memory_mobile_memory'), | 146 ( 0, 'memory_mobile_memory'), |
| 145 ( 0, 'page_cycler_pica'), | 147 ( 0, 'page_cycler_pica'), |
| 146 ( 0, 'page_cycler_top_10_mobile'), | 148 ( 0, 'page_cycler_top_10_mobile'), |
| (...skipping 1085 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 | 1234 |
| 1233 ####### PROJECT IDENTITY | 1235 ####### PROJECT IDENTITY |
| 1234 | 1236 |
| 1235 # the 'projectName' string will be used to describe the project that this | 1237 # the 'projectName' string will be used to describe the project that this |
| 1236 # buildbot is working on. For example, it is used as the title of the | 1238 # buildbot is working on. For example, it is used as the title of the |
| 1237 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 1239 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 1238 # from buildbot HTML pages to your project's home page. | 1240 # from buildbot HTML pages to your project's home page. |
| 1239 | 1241 |
| 1240 c['projectName'] = ActiveMaster.project_name | 1242 c['projectName'] = ActiveMaster.project_name |
| 1241 c['projectURL'] = config.Master.project_url | 1243 c['projectURL'] = config.Master.project_url |
| OLD | NEW |