| 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 SPEC = { | 9 SPEC = { |
| 10 'settings': { | 10 'settings': { |
| (...skipping 2030 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2041 'test_generators': [ | 2041 'test_generators': [ |
| 2042 steps.generate_gtest, | 2042 steps.generate_gtest, |
| 2043 steps.generate_script, | 2043 steps.generate_script, |
| 2044 steps.generate_isolated_script, | 2044 steps.generate_isolated_script, |
| 2045 steps.generate_instrumentation_test, | 2045 steps.generate_instrumentation_test, |
| 2046 ], | 2046 ], |
| 2047 'testing': { | 2047 'testing': { |
| 2048 'platform': 'linux', | 2048 'platform': 'linux', |
| 2049 }, | 2049 }, |
| 2050 }, | 2050 }, |
| 2051 'Win10 Tests (1)': { | |
| 2052 'chromium_config': 'chromium', | |
| 2053 'chromium_apply_config': ['ninja_confirm_noop'], | |
| 2054 'gclient_config': 'chromium', | |
| 2055 'chromium_config_kwargs': { | |
| 2056 'BUILD_CONFIG': 'Release', | |
| 2057 'TARGET_BITS': 32, | |
| 2058 }, | |
| 2059 'bot_type': 'tester', | |
| 2060 'test_generators': [ | |
| 2061 steps.generate_gtest, | |
| 2062 steps.generate_script, | |
| 2063 steps.generate_isolated_script, | |
| 2064 ], | |
| 2065 'tests': [ | |
| 2066 steps.MiniInstallerTest(), | |
| 2067 ], | |
| 2068 'parent_buildername': 'Win Builder', | |
| 2069 'testing': { | |
| 2070 'platform': 'win', | |
| 2071 }, | |
| 2072 'enable_swarming': True, | |
| 2073 'swarming_dimensions': { | |
| 2074 'os': 'Windows-10-SP0', | |
| 2075 }, | |
| 2076 }, | |
| 2077 'Win SyzyAsan (rel)': { | 2051 'Win SyzyAsan (rel)': { |
| 2078 'chromium_config': 'chromium', | 2052 'chromium_config': 'chromium', |
| 2079 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], | 2053 'chromium_apply_config': ['syzyasan_compile_only', 'shared_library'], |
| 2080 'gclient_config': 'chromium', | 2054 'gclient_config': 'chromium', |
| 2081 'chromium_config_kwargs': { | 2055 'chromium_config_kwargs': { |
| 2082 'BUILD_CONFIG': 'Release', | 2056 'BUILD_CONFIG': 'Release', |
| 2083 'TARGET_PLATFORM': 'win', | 2057 'TARGET_PLATFORM': 'win', |
| 2084 'TARGET_BITS': 32, | 2058 'TARGET_BITS': 32, |
| 2085 }, | 2059 }, |
| 2086 'compile_targets': [ | 2060 'compile_targets': [ |
| 2087 'chrome', | 2061 'chrome', |
| 2088 ], | 2062 ], |
| 2089 'enable_swarming': True, | 2063 'enable_swarming': True, |
| 2090 'testing': { | 2064 'testing': { |
| 2091 'platform': 'win', | 2065 'platform': 'win', |
| 2092 }, | 2066 }, |
| 2093 }, | 2067 }, |
| 2094 }, | 2068 }, |
| 2095 } | 2069 } |
| OLD | NEW |