| 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 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
| 8 | 8 |
| 9 | 9 |
| 10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 steps.generate_script, | 104 steps.generate_script, |
| 105 steps.generate_isolated_script, | 105 steps.generate_isolated_script, |
| 106 ], | 106 ], |
| 107 'use_isolate': True, | 107 'use_isolate': True, |
| 108 'enable_swarming': True, | 108 'enable_swarming': True, |
| 109 'swarming_dimensions': { | 109 'swarming_dimensions': { |
| 110 'cpu': 'armv7l-32', | 110 'cpu': 'armv7l-32', |
| 111 'os': 'Ubuntu-14.04', | 111 'os': 'Ubuntu-14.04', |
| 112 }, | 112 }, |
| 113 }, | 113 }, |
| 114 'Linux Trusty': { | |
| 115 'chromium_config': 'chromium', | |
| 116 'gclient_config': 'chromium', | |
| 117 'chromium_config_kwargs': { | |
| 118 'BUILD_CONFIG': 'Release', | |
| 119 'TARGET_BITS': 64, | |
| 120 }, | |
| 121 'bot_type': 'builder_tester', | |
| 122 'compile_targets': [ | |
| 123 'all', | |
| 124 ], | |
| 125 'test_generators': [ | |
| 126 steps.generate_gtest, | |
| 127 steps.generate_script, | |
| 128 steps.generate_isolated_script, | |
| 129 ], | |
| 130 'testing': { | |
| 131 'platform': 'linux', | |
| 132 }, | |
| 133 }, | |
| 134 'Linux Trusty (dbg)': { | |
| 135 'chromium_config': 'chromium', | |
| 136 'gclient_config': 'chromium', | |
| 137 'chromium_config_kwargs': { | |
| 138 'BUILD_CONFIG': 'Debug', | |
| 139 'TARGET_BITS': 64, | |
| 140 }, | |
| 141 'bot_type': 'builder_tester', | |
| 142 'compile_targets': [ | |
| 143 'all', | |
| 144 ], | |
| 145 'test_generators': [ | |
| 146 steps.generate_gtest, | |
| 147 steps.generate_script, | |
| 148 steps.generate_isolated_script, | |
| 149 ], | |
| 150 'testing': { | |
| 151 'platform': 'linux', | |
| 152 }, | |
| 153 }, | |
| 154 'Linux V8 API Stability': { | 114 'Linux V8 API Stability': { |
| 155 'chromium_config': 'chromium', | 115 'chromium_config': 'chromium', |
| 156 'chromium_apply_config': ['mb'], | 116 'chromium_apply_config': ['mb'], |
| 157 'gclient_config': 'chromium', | 117 'gclient_config': 'chromium', |
| 158 'gclient_apply_config': ['v8_canary', 'with_branch_heads'], | 118 'gclient_apply_config': ['v8_canary', 'with_branch_heads'], |
| 159 'chromium_config_kwargs': { | 119 'chromium_config_kwargs': { |
| 160 'BUILD_CONFIG': 'Release', | 120 'BUILD_CONFIG': 'Release', |
| 161 'TARGET_BITS': 64, | 121 'TARGET_BITS': 64, |
| 162 }, | 122 }, |
| 163 'bot_type': 'builder_tester', | 123 'bot_type': 'builder_tester', |
| (...skipping 1923 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2087 'enable_swarming': True, | 2047 'enable_swarming': True, |
| 2088 'testing': { | 2048 'testing': { |
| 2089 'platform': 'win', | 2049 'platform': 'win', |
| 2090 }, | 2050 }, |
| 2091 }, | 2051 }, |
| 2092 | 2052 |
| 2093 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2053 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2094 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2054 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2095 }, | 2055 }, |
| 2096 } | 2056 } |
| OLD | NEW |