OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 | 5 |
6 from master import master_config | 6 from master import master_config |
7 from master.factory import chromium_factory | 7 from master.factory import chromium_factory |
8 | 8 |
9 defaults = {} | 9 defaults = {} |
10 | 10 |
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
106 '--compiler=goma', | 106 '--compiler=goma', |
107 '--', | 107 '--', |
108 ] + linux_aura_build_targets, | 108 ] + linux_aura_build_targets, |
109 factory_properties={ | 109 factory_properties={ |
110 'generate_gtest_json': True, | 110 'generate_gtest_json': True, |
111 'gclient_env': {'GYP_DEFINES': 'use_aura=1', 'GYP_GENERATORS': 'ninja'}, | 111 'gclient_env': {'GYP_DEFINES': 'use_aura=1', 'GYP_GENERATORS': 'ninja'}, |
112 'window_manager': 'False', | 112 'window_manager': 'False', |
113 'blink_config': 'blink', | 113 'blink_config': 'blink', |
114 })) | 114 })) |
115 | 115 |
116 B('Linux Perf', 'f_linux_perf_rel', scheduler='global_scheduler') | |
117 F('f_linux_perf_rel', linux().ChromiumFactory( | |
118 options=[ | |
119 '--build-tool=ninja', | |
120 '--compiler=goma', | |
121 '--', | |
122 'chromium_builder_perf' | |
123 ], | |
124 tests=[ | |
125 'blink_perf', | |
126 'dom_perf', | |
127 'dromaeo', | |
128 'page_cycler_bloat', | |
129 'page_cycler_dhtml', | |
130 'page_cycler_indexeddb', | |
131 'page_cycler_intl_ar_fa_he', | |
132 'page_cycler_intl_es_fr_pt-BR', | |
133 'page_cycler_intl_hi_ru', | |
134 'page_cycler_intl_ja_zh', | |
135 'page_cycler_intl_ko_th_vi', | |
136 'page_cycler_morejs', | |
137 'page_cycler_moz', | |
138 'page_cycler_typical_25', | |
139 'startup', | |
140 'sunspider' | |
141 ], | |
142 factory_properties={ | |
143 'perf_id': 'chromium-rel-linux-webkit', | |
144 'show_perf_results': True, | |
145 'gclient_env': { 'GYP_GENERATORS': 'ninja' }, | |
146 'blink_config': 'blink', | |
147 })) | |
148 | 116 |
149 def Update(_config, _active_master, c): | 117 def Update(_config, _active_master, c): |
150 return helper.Update(c) | 118 return helper.Update(c) |
OLD | NEW |