| 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 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1955 'gclient_config': 'chromium', | 1955 'gclient_config': 'chromium', |
| 1956 'gclient_apply_config': ['android'], | 1956 'gclient_apply_config': ['android'], |
| 1957 'chromium_config_kwargs': { | 1957 'chromium_config_kwargs': { |
| 1958 'BUILD_CONFIG': 'Release', | 1958 'BUILD_CONFIG': 'Release', |
| 1959 'TARGET_BITS': 32, | 1959 'TARGET_BITS': 32, |
| 1960 'TARGET_PLATFORM': 'android', | 1960 'TARGET_PLATFORM': 'android', |
| 1961 }, | 1961 }, |
| 1962 'bot_type': 'builder_tester', | 1962 'bot_type': 'builder_tester', |
| 1963 'android_config': 'gce_builder', | 1963 'android_config': 'gce_builder', |
| 1964 'tests': [ | 1964 'tests': [ |
| 1965 steps.AndroidInstrumentationTest('AndroidWebViewTest'), |
| 1966 steps.AndroidInstrumentationTest('ChromePublicTest'), |
| 1967 steps.AndroidInstrumentationTest('ContentShellTest'), |
| 1968 steps.AndroidInstrumentationTest('ChromeSyncShellTest'), |
| 1965 steps.AndroidJunitTest('base_junit_tests'), | 1969 steps.AndroidJunitTest('base_junit_tests'), |
| 1966 steps.AndroidJunitTest('chrome_junit_tests'), | 1970 steps.AndroidJunitTest('chrome_junit_tests'), |
| 1967 steps.AndroidJunitTest('components_junit_tests'), | 1971 steps.AndroidJunitTest('components_junit_tests'), |
| 1968 steps.AndroidJunitTest('content_junit_tests'), | 1972 steps.AndroidJunitTest('content_junit_tests'), |
| 1969 steps.AndroidJunitTest('junit_unit_tests'), | 1973 steps.AndroidJunitTest('junit_unit_tests'), |
| 1970 steps.AndroidJunitTest('net_junit_tests'), | 1974 steps.AndroidJunitTest('net_junit_tests'), |
| 1971 ], | 1975 ], |
| 1972 'test_generators': [ | 1976 'test_generators': [ |
| 1973 steps.generate_gtest, | 1977 steps.generate_gtest, |
| 1974 steps.generate_script, | 1978 steps.generate_script, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2016 'compile_targets': [ | 2020 'compile_targets': [ |
| 2017 'chrome', | 2021 'chrome', |
| 2018 ], | 2022 ], |
| 2019 'enable_swarming': True, | 2023 'enable_swarming': True, |
| 2020 'testing': { | 2024 'testing': { |
| 2021 'platform': 'win', | 2025 'platform': 'win', |
| 2022 }, | 2026 }, |
| 2023 }, | 2027 }, |
| 2024 }, | 2028 }, |
| 2025 } | 2029 } |
| OLD | NEW |