| 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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 # These are GPU sensitive benchmarks that run on bots that vary only the GPU | 104 # These are GPU sensitive benchmarks that run on bots that vary only the GPU |
| 105 # hardware in addition to bots across all the platforms. | 105 # hardware in addition to bots across all the platforms. |
| 106 _GPU_BENCHMARKS = [ | 106 _GPU_BENCHMARKS = [ |
| 107 ( 3, 'cc_perftests'), | 107 ( 3, 'cc_perftests'), |
| 108 ( 3, 'fast_path_key_mobile_sites'), | 108 ( 3, 'fast_path_key_mobile_sites'), |
| 109 ( 2, 'image_decoding_tough_decoding_cases'), | 109 ( 2, 'image_decoding_tough_decoding_cases'), |
| 110 (14, 'jsgamebench'), | 110 (14, 'jsgamebench'), |
| 111 ( 5, 'maps'), | 111 ( 5, 'maps'), |
| 112 ( 1, 'media_perftests'), | 112 ( 4, 'media_perftests'), |
| 113 ( 0, 'rasterize_and_record_key_silk_cases'), # TODO: Estimate runtime. | 113 ( 0, 'rasterize_and_record_key_silk_cases'), # TODO: Estimate runtime. |
| 114 (18, 'rasterize_and_record_micro_top_25'), | 114 (18, 'rasterize_and_record_micro_top_25'), |
| 115 (18, 'rasterize_and_record_top_25'), | 115 (18, 'rasterize_and_record_top_25'), |
| 116 ( 1, 'robohornet_pro'), | 116 ( 1, 'robohornet_pro'), |
| 117 ( 7, 'smoothness_top_25'), | 117 ( 7, 'smoothness_top_25'), |
| 118 ( 7, 'smoothness_tough_canvas_cases'), | 118 ( 7, 'smoothness_tough_canvas_cases'), |
| 119 (13, 'spaceport'), | 119 (13, 'spaceport'), |
| 120 ] | 120 ] |
| 121 | 121 |
| 122 # These run only on Desktop because of various technical limitations. | 122 # These run only on Desktop because of various technical limitations. |
| (...skipping 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 | 1207 |
| 1208 ####### PROJECT IDENTITY | 1208 ####### PROJECT IDENTITY |
| 1209 | 1209 |
| 1210 # the 'projectName' string will be used to describe the project that this | 1210 # the 'projectName' string will be used to describe the project that this |
| 1211 # buildbot is working on. For example, it is used as the title of the | 1211 # buildbot is working on. For example, it is used as the title of the |
| 1212 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 1212 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
| 1213 # from buildbot HTML pages to your project's home page. | 1213 # from buildbot HTML pages to your project's home page. |
| 1214 | 1214 |
| 1215 c['projectName'] = ActiveMaster.project_name | 1215 c['projectName'] = ActiveMaster.project_name |
| 1216 c['projectURL'] = config.Master.project_url | 1216 c['projectURL'] = config.Master.project_url |
| OLD | NEW |