| 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 1854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1865 }, | 1865 }, |
| 1866 'bot_type': 'builder_tester', | 1866 'bot_type': 'builder_tester', |
| 1867 'test_generators': [ | 1867 'test_generators': [ |
| 1868 steps.generate_gtest, | 1868 steps.generate_gtest, |
| 1869 ], | 1869 ], |
| 1870 'testing': { | 1870 'testing': { |
| 1871 'platform': 'linux', | 1871 'platform': 'linux', |
| 1872 }, | 1872 }, |
| 1873 }, | 1873 }, |
| 1874 | 1874 |
| 1875 'Blimp Linux (dbg)': { | |
| 1876 'chromium_config': 'chromium', | |
| 1877 'chromium_apply_config': ['mb'], | |
| 1878 'gclient_config': 'chromium', | |
| 1879 'chromium_config_kwargs': { | |
| 1880 'BUILD_CONFIG': 'Debug', | |
| 1881 'TARGET_BITS': 64, | |
| 1882 'TARGET_PLATFORM': 'linux', | |
| 1883 }, | |
| 1884 'bot_type': 'builder_tester', | |
| 1885 'test_generators': [ | |
| 1886 steps.generate_gtest, | |
| 1887 ], | |
| 1888 'testing': { | |
| 1889 'platform': 'linux', | |
| 1890 }, | |
| 1891 }, | |
| 1892 | |
| 1893 'Android Builder (dbg)': { | 1875 'Android Builder (dbg)': { |
| 1894 'chromium_config': 'android', | 1876 'chromium_config': 'android', |
| 1895 'chromium_apply_config': ['chrome_with_codecs', 'mb'], | 1877 'chromium_apply_config': ['chrome_with_codecs', 'mb'], |
| 1896 'gclient_config': 'chromium', | 1878 'gclient_config': 'chromium', |
| 1897 'gclient_apply_config': ['android'], | 1879 'gclient_apply_config': ['android'], |
| 1898 'chromium_config_kwargs': { | 1880 'chromium_config_kwargs': { |
| 1899 'BUILD_CONFIG': 'Debug', | 1881 'BUILD_CONFIG': 'Debug', |
| 1900 'TARGET_BITS': 32, | 1882 'TARGET_BITS': 32, |
| 1901 'TARGET_PLATFORM': 'android', | 1883 'TARGET_PLATFORM': 'android', |
| 1902 }, | 1884 }, |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2186 'enable_swarming': True, | 2168 'enable_swarming': True, |
| 2187 'testing': { | 2169 'testing': { |
| 2188 'platform': 'win', | 2170 'platform': 'win', |
| 2189 }, | 2171 }, |
| 2190 }, | 2172 }, |
| 2191 | 2173 |
| 2192 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2174 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2193 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2175 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2194 }, | 2176 }, |
| 2195 } | 2177 } |
| OLD | NEW |