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 | 9 |
10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
(...skipping 1988 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |