| 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 2053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2064 'test_generators': [ | 2064 'test_generators': [ |
| 2065 steps.generate_gtest, | 2065 steps.generate_gtest, |
| 2066 steps.generate_instrumentation_test, | 2066 steps.generate_instrumentation_test, |
| 2067 steps.generate_isolated_script, | 2067 steps.generate_isolated_script, |
| 2068 steps.generate_script, | 2068 steps.generate_script, |
| 2069 ], | 2069 ], |
| 2070 'testing': { | 2070 'testing': { |
| 2071 'platform': 'linux', | 2071 'platform': 'linux', |
| 2072 }, | 2072 }, |
| 2073 }, | 2073 }, |
| 2074 'Chromium Win 10': { | 2074 'Win 10 Fast Ring': { |
| 2075 'chromium_config': 'chromium', | 2075 'chromium_config': 'chromium', |
| 2076 'chromium_apply_config': ['mb'], |
| 2076 'gclient_config': 'chromium', | 2077 'gclient_config': 'chromium', |
| 2077 'GYP_DEFINES': { | 2078 'GYP_DEFINES': { |
| 2078 'dcheck_always_on': '1', | 2079 'dcheck_always_on': '1', |
| 2079 }, | 2080 }, |
| 2080 'chromium_config_kwargs': { | 2081 'chromium_config_kwargs': { |
| 2081 'BUILD_CONFIG': 'Release', | 2082 'BUILD_CONFIG': 'Release', |
| 2082 'TARGET_BITS': 64, | 2083 'TARGET_BITS': 64, |
| 2083 }, | 2084 }, |
| 2084 'test_generators': [ | 2085 'test_generators': [ |
| 2085 steps.generate_gtest, | 2086 steps.generate_gtest, |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2158 'enable_swarming': True, | 2159 'enable_swarming': True, |
| 2159 'testing': { | 2160 'testing': { |
| 2160 'platform': 'win', | 2161 'platform': 'win', |
| 2161 }, | 2162 }, |
| 2162 }, | 2163 }, |
| 2163 | 2164 |
| 2164 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2165 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2165 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2166 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2166 }, | 2167 }, |
| 2167 } | 2168 } |
| OLD | NEW |