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

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

Issue 1848513003: Switch Android Asan Builder Tests on chromium.fyi to chromium recipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Spaces Created 4 years, 8 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 1973 matching lines...) Expand 10 before | Expand all | Expand 10 after
1984 'root_devices': True, 1984 'root_devices': True,
1985 'enable_swarming': False, 1985 'enable_swarming': False,
1986 'tests': [ 1986 'tests': [
1987 steps.GTestTest('remoting_unittests'), 1987 steps.GTestTest('remoting_unittests'),
1988 steps.AndroidInstrumentationTest('ChromotingTest'), 1988 steps.AndroidInstrumentationTest('ChromotingTest'),
1989 ], 1989 ],
1990 'testing': { 1990 'testing': {
1991 'platform': 'linux', 1991 'platform': 'linux',
1992 }, 1992 },
1993 }, 1993 },
1994 1994 'Android Asan Builder Tests (dbg)': {
1995 1995 'chromium_config': 'android',
1996 'chromium_apply_config': ['mb'],
1997 'gclient_config': 'chromium',
1998 'gclient_apply_config': ['android'],
1999 'chromium_config_kwargs': {
2000 'BUILD_CONFIG': 'Debug',
2001 'TARGET_BITS': 32,
2002 'TARGET_PLATFORM': 'android',
2003 },
2004 'bot_type': 'builder_tester',
2005 'android_config': 'clang_tests',
2006 'root_devices': True,
2007 'tests': [
2008 steps.AndroidInstrumentationTest('AndroidWebViewTest', tool='asan'),
2009 steps.AndroidInstrumentationTest('ChromePublicTest', tool='asan'),
2010 steps.AndroidInstrumentationTest('ContentShellTest', tool='asan'),
2011 steps.AndroidInstrumentationTest('ChromeSyncShellTest', tool='asan'),
2012 ],
2013 'test_generators': [
2014 steps.generate_gtest,
2015 steps.generate_instrumentation_test,
2016 steps.generate_isolated_script,
2017 steps.generate_script,
2018 ],
2019 'testing': {
2020 'platform': 'linux',
2021 },
2022 },
1996 'Chromium Win 10': { 2023 'Chromium Win 10': {
1997 'chromium_config': 'chromium', 2024 'chromium_config': 'chromium',
1998 'gclient_config': 'chromium', 2025 'gclient_config': 'chromium',
1999 'GYP_DEFINES': { 2026 'GYP_DEFINES': {
2000 'dcheck_always_on': '1', 2027 'dcheck_always_on': '1',
2001 }, 2028 },
2002 'chromium_config_kwargs': { 2029 'chromium_config_kwargs': {
2003 'BUILD_CONFIG': 'Release', 2030 'BUILD_CONFIG': 'Release',
2004 'TARGET_BITS': 64, 2031 'TARGET_BITS': 64,
2005 }, 2032 },
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
2108 'compile_targets': [ 2135 'compile_targets': [
2109 'chrome', 2136 'chrome',
2110 ], 2137 ],
2111 'enable_swarming': True, 2138 'enable_swarming': True,
2112 'testing': { 2139 'testing': {
2113 'platform': 'win', 2140 'platform': 'win',
2114 }, 2141 },
2115 }, 2142 },
2116 }, 2143 },
2117 } 2144 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698