Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1574943003: add instrumentation tests to cloud bot (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698