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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 # TODO: It would be really nice if buildbot could calculate these runtimes. | 77 # TODO: It would be really nice if buildbot could calculate these runtimes. |
78 | 78 |
79 # These are benchmarks that run everywhere. | 79 # These are benchmarks that run everywhere. |
80 _CROSS_PLATFORM_BENCHMARKS = [ | 80 _CROSS_PLATFORM_BENCHMARKS = [ |
81 (23, 'blink_perf'), | 81 (23, 'blink_perf'), |
82 ( 3, 'dom_perf'), | 82 ( 3, 'dom_perf'), |
83 (28, 'dromaeo'), | 83 (28, 'dromaeo'), |
84 ( 1, 'indexeddb_perf'), | 84 ( 1, 'indexeddb_perf'), |
85 ( 3, 'kraken'), | 85 ( 3, 'kraken'), |
86 ( 1, 'media_mse_cases'), | 86 ( 1, 'media_mse_cases'), |
87 (15, 'media_media_cns_cases'), | |
88 ( 3, 'octane'), | 87 ( 3, 'octane'), |
89 ( 8, 'page_cycler_bloat'), | 88 ( 8, 'page_cycler_bloat'), |
90 ( 2, 'page_cycler_dhtml'), | 89 ( 2, 'page_cycler_dhtml'), |
91 ( 2, 'page_cycler_indexeddb'), | 90 ( 2, 'page_cycler_indexeddb'), |
92 ( 5, 'page_cycler_intl_ar_fa_he'), | 91 ( 5, 'page_cycler_intl_ar_fa_he'), |
93 (14, 'page_cycler_intl_es_fr_pt-BR'), | 92 (14, 'page_cycler_intl_es_fr_pt-BR'), |
94 (13, 'page_cycler_intl_hi_ru'), | 93 (13, 'page_cycler_intl_hi_ru'), |
95 (18, 'page_cycler_intl_ja_zh'), | 94 (18, 'page_cycler_intl_ja_zh'), |
96 (12, 'page_cycler_intl_ko_th_vi'), | 95 (12, 'page_cycler_intl_ko_th_vi'), |
97 ( 8, 'page_cycler_morejs'), | 96 ( 8, 'page_cycler_morejs'), |
(...skipping 18 matching lines...) Expand all Loading... |
116 ( 1, 'robohornet_pro'), | 115 ( 1, 'robohornet_pro'), |
117 ( 7, 'smoothness_top_25'), | 116 ( 7, 'smoothness_top_25'), |
118 ( 7, 'smoothness_tough_canvas_cases'), | 117 ( 7, 'smoothness_tough_canvas_cases'), |
119 (13, 'spaceport'), | 118 (13, 'spaceport'), |
120 ] | 119 ] |
121 | 120 |
122 # These run only on Desktop because of various technical limitations. | 121 # These run only on Desktop because of various technical limitations. |
123 # We'd like to run them on Android when possible. | 122 # We'd like to run them on Android when possible. |
124 _DESKTOP_ONLY_BENCHMARKS = [ | 123 _DESKTOP_ONLY_BENCHMARKS = [ |
125 ( 1, 'idb_perf'), | 124 ( 1, 'idb_perf'), |
| 125 (15, 'media_media_cns_cases'), |
126 (15, 'media_tough_media_cases'), | 126 (15, 'media_tough_media_cases'), |
127 ( 5, 'memory'), | 127 ( 5, 'memory'), |
128 ( 4, 'shutdown'), | 128 ( 4, 'shutdown'), |
129 ( 2, 'startup_cold'), | 129 ( 2, 'startup_cold'), |
130 ( 7, 'startup_cold_dirty'), | 130 ( 7, 'startup_cold_dirty'), |
131 ( 7, 'startup_cold_session_restore'), | 131 ( 7, 'startup_cold_session_restore'), |
132 ( 2, 'startup_warm'), | 132 ( 2, 'startup_warm'), |
133 ( 2, 'startup_warm_dirty'), | 133 ( 2, 'startup_warm_dirty'), |
134 ( 4, 'startup_warm_session_restore'), | 134 ( 4, 'startup_warm_session_restore'), |
135 ( 1, 'sync'), | 135 ( 1, 'sync'), |
(...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1189 | 1189 |
1190 ####### PROJECT IDENTITY | 1190 ####### PROJECT IDENTITY |
1191 | 1191 |
1192 # the 'projectName' string will be used to describe the project that this | 1192 # the 'projectName' string will be used to describe the project that this |
1193 # buildbot is working on. For example, it is used as the title of the | 1193 # buildbot is working on. For example, it is used as the title of the |
1194 # waterfall HTML page. The 'projectURL' string will be used to provide a link | 1194 # waterfall HTML page. The 'projectURL' string will be used to provide a link |
1195 # from buildbot HTML pages to your project's home page. | 1195 # from buildbot HTML pages to your project's home page. |
1196 | 1196 |
1197 c['projectName'] = ActiveMaster.project_name | 1197 c['projectName'] = ActiveMaster.project_name |
1198 c['projectURL'] = config.Master.project_url | 1198 c['projectURL'] = config.Master.project_url |
OLD | NEW |