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

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

Issue 2269303002: Set up Blimp Integration script on FYI bot (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Set up Blimp Integration script on FYI bot Created 4 years, 4 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 9
10 KITCHEN_TEST_SPEC = { 10 KITCHEN_TEST_SPEC = {
(...skipping 2041 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 'bot_type': 'tester', 2052 'bot_type': 'tester',
2053 'android_config': 'main_builder_mb', 2053 'android_config': 'main_builder_mb',
2054 'remove_system_webview': True, 2054 'remove_system_webview': True,
2055 'tests': [ 2055 'tests': [
2056 steps.FindAnnotatedTest(), 2056 steps.FindAnnotatedTest(),
2057 ], 2057 ],
2058 'testing': { 2058 'testing': {
2059 'platform': 'linux', 2059 'platform': 'linux',
2060 }, 2060 },
2061 }, 2061 },
2062 'Android Blimp Integration Test': {
2063 'chromium_config': 'android',
2064 'gclient_config': 'chromium',
2065 'gclient_apply_config': ['android'],
2066 'chromium_config_kwargs': {
2067 'BUILD_CONFIG': 'Debug',
2068 'TARGET_PLATFORM': 'android',
2069 },
2070 'parent_buildername': 'Android Builder (dbg)',
2071 'bot_type': 'tester',
2072 'android_config': 'main_builder_mb',
2073 'remove_system_webview': True,
2074 'tests': [
2075 steps.BlimpIntegrationScriptTest(),
2076 ],
2077 'testing': {
2078 'platform': 'linux',
2079 },
2080 },
2062 2081
2063 2082
2064 'Android Asan Builder Tests (dbg)': { 2083 'Android Asan Builder Tests (dbg)': {
2065 'chromium_config': 'android', 2084 'chromium_config': 'android',
2066 'chromium_apply_config': ['mb'], 2085 'chromium_apply_config': ['mb'],
2067 'gclient_config': 'chromium', 2086 'gclient_config': 'chromium',
2068 'gclient_apply_config': ['android'], 2087 'gclient_apply_config': ['android'],
2069 'chromium_config_kwargs': { 2088 'chromium_config_kwargs': {
2070 'BUILD_CONFIG': 'Debug', 2089 'BUILD_CONFIG': 'Debug',
2071 'TARGET_BITS': 32, 2090 'TARGET_BITS': 32,
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
2271 steps.generate_gtest, 2290 steps.generate_gtest,
2272 steps.generate_script, 2291 steps.generate_script,
2273 steps.generate_isolated_script, 2292 steps.generate_isolated_script,
2274 ], 2293 ],
2275 'testing': { 'platform': 'win', }, 2294 'testing': { 'platform': 'win', },
2276 'use_isolate': True, 2295 'use_isolate': True,
2277 'enable_swarming': True, 2296 'enable_swarming': True,
2278 }, 2297 },
2279 }, 2298 },
2280 } 2299 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698