| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 from . import steps | 5 from . import steps |
| 6 | 6 |
| 7 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-webkit-archive', | 9 'build_gs_bucket': 'chromium-webkit-archive', |
| 10 'src_side_runtest_py': False, | 10 'src_side_runtest_py': False, |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 'checkout_dir': 'mac_layout', | 164 'checkout_dir': 'mac_layout', |
| 165 }, | 165 }, |
| 166 'WebKit Mac10.11 (retina)': { | 166 'WebKit Mac10.11 (retina)': { |
| 167 'chromium_config': 'chromium', | 167 'chromium_config': 'chromium', |
| 168 'chromium_apply_config': ['mb'], | 168 'chromium_apply_config': ['mb'], |
| 169 'gclient_config': 'chromium', | 169 'gclient_config': 'chromium', |
| 170 'chromium_config_kwargs': { | 170 'chromium_config_kwargs': { |
| 171 'BUILD_CONFIG': 'Release', | 171 'BUILD_CONFIG': 'Release', |
| 172 'TARGET_BITS': 64, | 172 'TARGET_BITS': 64, |
| 173 }, | 173 }, |
| 174 'compile_targets': [ | 174 'bot_type': 'tester', |
| 175 'blink_tests', | 175 'parent_buildername': 'WebKit Mac Builder', |
| 176 ], | |
| 177 'tests': [ | 176 'tests': [ |
| 178 steps.BlinkTest(), | 177 steps.BlinkTest(), |
| 179 ], | 178 ], |
| 180 'testing': { | 179 'testing': { |
| 181 'platform': 'mac', | 180 'platform': 'mac', |
| 182 }, | 181 }, |
| 183 'enable_swarming': True, | 182 'enable_swarming': True, |
| 184 'swarming_dimensions': { | 183 'swarming_dimensions': { |
| 185 'os': 'Mac-10.11', | 184 'os': 'Mac-10.11', |
| 186 'hidpi': '1', | 185 'hidpi': '1', |
| 187 }, | 186 }, |
| 188 'use_isolate': True, | 187 'use_isolate': True, |
| 189 'checkout_dir': 'mac_layout', | 188 'checkout_dir': 'mac_layout', |
| 190 }, | 189 }, |
| 191 'WebKit Mac10.9': { | 190 'WebKit Mac10.9': { |
| 192 'chromium_config': 'chromium', | 191 'chromium_config': 'chromium', |
| 193 'chromium_apply_config': ['mb'], | 192 'chromium_apply_config': ['mb'], |
| 194 'gclient_config': 'chromium', | 193 'gclient_config': 'chromium', |
| 195 'chromium_config_kwargs': { | 194 'chromium_config_kwargs': { |
| 196 'BUILD_CONFIG': 'Release', | 195 'BUILD_CONFIG': 'Release', |
| 197 'TARGET_BITS': 64, | 196 'TARGET_BITS': 64, |
| 198 }, | 197 }, |
| 199 'bot_type': 'builder', | 198 'bot_type': 'tester', |
| 199 'parent_buildername': 'WebKit Mac Builder', |
| 200 'tests': [ | 200 'tests': [ |
| 201 steps.BlinkTest(), | 201 steps.BlinkTest(), |
| 202 ], | 202 ], |
| 203 'testing': { | 203 'testing': { |
| 204 'platform': 'mac', | 204 'platform': 'mac', |
| 205 }, | 205 }, |
| 206 'enable_swarming': True, | 206 'enable_swarming': True, |
| 207 'swarming_dimensions': { | 207 'swarming_dimensions': { |
| 208 'os': 'Mac-10.9', | 208 'os': 'Mac-10.9', |
| 209 }, | 209 }, |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 '--options=--enable-leak-detection', | 469 '--options=--enable-leak-detection', |
| 470 ]), | 470 ]), |
| 471 ], | 471 ], |
| 472 'testing': { | 472 'testing': { |
| 473 'platform': 'linux', | 473 'platform': 'linux', |
| 474 }, | 474 }, |
| 475 'enable_swarming': True, | 475 'enable_swarming': True, |
| 476 'use_isolate': True, | 476 'use_isolate': True, |
| 477 }, | 477 }, |
| 478 } | 478 } |
| OLD | NEW |