| 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 import copy | 5 import copy |
| 6 | 6 |
| 7 from . import chromium_chromiumos | 7 from . import chromium_chromiumos |
| 8 from . import steps | 8 from . import steps |
| 9 | 9 |
| 10 SPEC = copy.deepcopy(chromium_chromiumos.SPEC) | 10 SPEC = copy.deepcopy(chromium_chromiumos.SPEC) |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 # to Windows builds (so that start_crash_service step works). | 29 # to Windows builds (so that start_crash_service step works). |
| 30 'crash_service', | 30 'crash_service', |
| 31 ], | 31 ], |
| 32 'bot_type': 'builder', | 32 'bot_type': 'builder', |
| 33 'testing': { | 33 'testing': { |
| 34 'platform': 'win', | 34 'platform': 'win', |
| 35 }, | 35 }, |
| 36 'enable_swarming': True, | 36 'enable_swarming': True, |
| 37 'use_isolate': True, | 37 'use_isolate': True, |
| 38 }, | 38 }, |
| 39 'WebKit XP': { | |
| 40 'chromium_config': 'chromium', | |
| 41 'chromium_apply_config': ['mb'], | |
| 42 'gclient_config': 'chromium', | |
| 43 'gclient_apply_config': ['blink_or_chromium'], | |
| 44 'chromium_config_kwargs': { | |
| 45 'BUILD_CONFIG': 'Release', | |
| 46 'TARGET_BITS': 32, | |
| 47 }, | |
| 48 'bot_type': 'tester', | |
| 49 'parent_buildername': 'WebKit Win Builder', | |
| 50 'test_generators': [ | |
| 51 steps.generate_gtest, | |
| 52 steps.generate_script, | |
| 53 ], | |
| 54 'tests': [ | |
| 55 steps.BlinkTest(), | |
| 56 ], | |
| 57 'testing': { | |
| 58 'platform': 'win', | |
| 59 }, | |
| 60 'enable_swarming': True, | |
| 61 'use_isolate': True, | |
| 62 }, | |
| 63 'WebKit Win7': { | 39 'WebKit Win7': { |
| 64 'chromium_config': 'chromium', | 40 'chromium_config': 'chromium', |
| 65 'chromium_apply_config': ['mb'], | 41 'chromium_apply_config': ['mb'], |
| 66 'gclient_config': 'chromium', | 42 'gclient_config': 'chromium', |
| 67 'gclient_apply_config': ['blink_or_chromium'], | 43 'gclient_apply_config': ['blink_or_chromium'], |
| 68 'chromium_config_kwargs': { | 44 'chromium_config_kwargs': { |
| 69 'BUILD_CONFIG': 'Release', | 45 'BUILD_CONFIG': 'Release', |
| 70 'TARGET_BITS': 32, | 46 'TARGET_BITS': 32, |
| 71 }, | 47 }, |
| 72 'bot_type': 'tester', | 48 'bot_type': 'tester', |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 'src/third_party/WebKit/LayoutTests/OilpanExpectations', | 857 'src/third_party/WebKit/LayoutTests/OilpanExpectations', |
| 882 ]), | 858 ]), |
| 883 ], | 859 ], |
| 884 'testing': { | 860 'testing': { |
| 885 'platform': 'linux', | 861 'platform': 'linux', |
| 886 }, | 862 }, |
| 887 'enable_swarming': True, | 863 'enable_swarming': True, |
| 888 'use_isolate': True, | 864 'use_isolate': True, |
| 889 }, | 865 }, |
| 890 }) | 866 }) |
| OLD | NEW |