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

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

Issue 1915003004: Reflect new naming of isolate files for android_webview_test. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: 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 | Annotate | Revision Log
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 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after
1999 'bot_type': 'tester', 1999 'bot_type': 'tester',
2000 'parent_buildername': 'Android Builder (dbg)', 2000 'parent_buildername': 'Android Builder (dbg)',
2001 'android_config': 'main_builder', 2001 'android_config': 'main_builder',
2002 'root_devices': True, 2002 'root_devices': True,
2003 'enable_swarming': False, 2003 'enable_swarming': False,
2004 'tests': [ 2004 'tests': [
2005 steps.AMPInstrumentationTest( 2005 steps.AMPInstrumentationTest(
2006 test_apk='AndroidWebViewTest', 2006 test_apk='AndroidWebViewTest',
2007 apk_under_test='AndroidWebView', 2007 apk_under_test='AndroidWebView',
2008 android_isolate_path= 2008 android_isolate_path=
2009 'android_webview/android_webview_test_apk.isolate', 2009 'android_webview/android_webview_test_data.isolate',
2010 compile_target='android_webview_test_apk', 2010 compile_target='android_webview_test_apk',
2011 device_name=['Nexus 5'], device_os=['4.4.2']), 2011 device_name=['Nexus 5'], device_os=['4.4.2']),
2012 ], 2012 ],
2013 'test_generators': [ 2013 'test_generators': [
2014 steps.generate_gtest, 2014 steps.generate_gtest,
2015 steps.generate_script, 2015 steps.generate_script,
2016 steps.generate_isolated_script, 2016 steps.generate_isolated_script,
2017 ], 2017 ],
2018 'testing': { 2018 'testing': {
2019 'platform': 'linux', 2019 'platform': 'linux',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
2162 'enable_swarming': True, 2162 'enable_swarming': True,
2163 'testing': { 2163 'testing': {
2164 'platform': 'win', 2164 'platform': 'win',
2165 }, 2165 },
2166 }, 2166 },
2167 2167
2168 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, 2168 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC,
2169 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, 2169 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC,
2170 }, 2170 },
2171 } 2171 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698