| 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 1940 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1951 ], | 1951 ], |
| 1952 'testing': { | 1952 'testing': { |
| 1953 'platform': 'linux', | 1953 'platform': 'linux', |
| 1954 }, | 1954 }, |
| 1955 }, | 1955 }, |
| 1956 | 1956 |
| 1957 | 1957 |
| 1958 'Chromium Win 10': { | 1958 'Chromium Win 10': { |
| 1959 'chromium_config': 'chromium', | 1959 'chromium_config': 'chromium', |
| 1960 'gclient_config': 'chromium', | 1960 'gclient_config': 'chromium', |
| 1961 'GYP_DEFINES': { |
| 1962 'dcheck_always_on': '1', |
| 1963 }, |
| 1961 'chromium_config_kwargs': { | 1964 'chromium_config_kwargs': { |
| 1962 'BUILD_CONFIG': 'Release', | 1965 'BUILD_CONFIG': 'Release', |
| 1963 'TARGET_BITS': 64, | 1966 'TARGET_BITS': 64, |
| 1964 }, | 1967 }, |
| 1965 'test_generators': [ | 1968 'test_generators': [ |
| 1966 steps.generate_gtest, | 1969 steps.generate_gtest, |
| 1967 steps.generate_script, | 1970 steps.generate_script, |
| 1968 steps.generate_isolated_script, | 1971 steps.generate_isolated_script, |
| 1969 ], | 1972 ], |
| 1970 'testing': { | 1973 'testing': { |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2067 'compile_targets': [ | 2070 'compile_targets': [ |
| 2068 'chrome', | 2071 'chrome', |
| 2069 ], | 2072 ], |
| 2070 'enable_swarming': True, | 2073 'enable_swarming': True, |
| 2071 'testing': { | 2074 'testing': { |
| 2072 'platform': 'win', | 2075 'platform': 'win', |
| 2073 }, | 2076 }, |
| 2074 }, | 2077 }, |
| 2075 }, | 2078 }, |
| 2076 } | 2079 } |
| OLD | NEW |