| 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 1914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1925 steps.AndroidInstrumentationTest('ContentShellTest'), | 1925 steps.AndroidInstrumentationTest('ContentShellTest'), |
| 1926 steps.AndroidInstrumentationTest('ChromePublicTest'), | 1926 steps.AndroidInstrumentationTest('ChromePublicTest'), |
| 1927 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), | 1927 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), |
| 1928 steps.AMPGTestTest('android_webview_unittests', | 1928 steps.AMPGTestTest('android_webview_unittests', |
| 1929 device_name=['Nexus 5'], device_os=['4.4.2']), | 1929 device_name=['Nexus 5'], device_os=['4.4.2']), |
| 1930 steps.AMPGTestTest('base_unittests', | 1930 steps.AMPGTestTest('base_unittests', |
| 1931 device_name=['Nexus 5'], device_os=['4.4.2'], | 1931 device_name=['Nexus 5'], device_os=['4.4.2'], |
| 1932 android_isolate_path='base/base_unittests.isolate'), | 1932 android_isolate_path='base/base_unittests.isolate'), |
| 1933 steps.GTestTest( | 1933 steps.GTestTest( |
| 1934 'breakpad_unittests', | 1934 'breakpad_unittests', |
| 1935 override_compile_targets=['breakpad_unittests_deps'], | 1935 override_compile_targets=['breakpad_unittests_deps']), |
| 1936 android_isolate_path='breakpad/breakpad_unittests.isolate'), | |
| 1937 steps.GTestTest('cc_unittests'), | 1936 steps.GTestTest('cc_unittests'), |
| 1938 steps.AMPGTestTest('components_unittests', | 1937 steps.AMPGTestTest('components_unittests', |
| 1939 device_name=['Nexus 5'], device_os=['4.4.2'], | 1938 device_name=['Nexus 5'], device_os=['4.4.2'], |
| 1940 android_isolate_path='components/components_unittests.isolate'), | 1939 android_isolate_path='components/components_unittests.isolate'), |
| 1941 steps.GTestTest('content_browsertests'), | 1940 steps.GTestTest('content_browsertests'), |
| 1942 steps.GTestTest('content_unittests'), | 1941 steps.GTestTest('content_unittests'), |
| 1943 steps.AMPGTestTest('events_unittests', | 1942 steps.AMPGTestTest('events_unittests', |
| 1944 device_name=['Nexus 5'], device_os=['4.4.2']), | 1943 device_name=['Nexus 5'], device_os=['4.4.2']), |
| 1945 steps.AMPGTestTest('gl_tests', | 1944 steps.AMPGTestTest('gl_tests', |
| 1946 device_name=['Nexus 5'], device_os=['4.4.2']), | 1945 device_name=['Nexus 5'], device_os=['4.4.2']), |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2151 'compile_targets': [ | 2150 'compile_targets': [ |
| 2152 'chrome', | 2151 'chrome', |
| 2153 ], | 2152 ], |
| 2154 'enable_swarming': True, | 2153 'enable_swarming': True, |
| 2155 'testing': { | 2154 'testing': { |
| 2156 'platform': 'win', | 2155 'platform': 'win', |
| 2157 }, | 2156 }, |
| 2158 }, | 2157 }, |
| 2159 }, | 2158 }, |
| 2160 } | 2159 } |
| OLD | NEW |