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

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

Issue 1104533002: Add recipe for split AMP/local CQ. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Make AMPGTestTest more like swarming tests. Created 5 years, 7 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 SPEC = { 9 SPEC = {
10 'settings': { 10 'settings': {
(...skipping 1222 matching lines...) Expand 10 before | Expand all | Expand 10 after
1233 'tests': [ 1233 'tests': [
1234 steps.AndroidInstrumentationTest( 1234 steps.AndroidInstrumentationTest(
1235 'ChromotingTest', 'remoting_test_apk', 1235 'ChromotingTest', 'remoting_test_apk',
1236 adb_install_apk=( 1236 adb_install_apk=(
1237 'Chromoting.apk', 'org.chromium.chromoting')), 1237 'Chromoting.apk', 'org.chromium.chromoting')),
1238 ], 1238 ],
1239 'testing': { 1239 'testing': {
1240 'platform': 'linux', 1240 'platform': 'linux',
1241 }, 1241 },
1242 }, 1242 },
1243 'Android Tests (amp split)': {
1244 'chromium_config': 'android',
1245 'gclient_config': 'chromium',
1246 'gclient_apply_config': ['android'],
1247 'chromium_config_kwargs': {
1248 'BUILD_CONFIG': 'Release',
1249 'TARGET_BITS': 32,
1250 'TARGET_PLATFORM': 'android',
1251 },
1252 'bot_type': 'tester',
1253 'parent_buildername': 'Android Builder',
1254 'android_config': 'main_builder',
1255 'root_devices': True,
1256 'device_name': ['Nexus 5'],
1257 'device_os': ['4.4.2', '4.4.3'],
1258 'device_minimum_os': '4.0',
1259 'device_timeout': 60,
1260 'tests': [
1261 steps.AndroidInstrumentationTest(
1262 'AndroidWebViewTest', 'android_webview_test_apk',
1263 isolate_file_path='android_webview/android_webview_test_apk.isolate' ,
1264 adb_install_apk=(
1265 'AndroidWebView.apk', 'org.chromium.android_webview.shell')),
1266 steps.AndroidInstrumentationTest(
1267 'ChromeShellTest', 'chrome_shell_test_apk',
1268 isolate_file_path='chrome/chrome_shell_test_apk.isolate',
1269 adb_install_apk=(
1270 'ChromeShell.apk', 'org.chromium.chrome.shell')),
1271 steps.AndroidInstrumentationTest(
1272 'ContentShellTest', 'content_shell_test_apk',
1273 isolate_file_path='content/content_shell_test_apk.isolate',
1274 adb_install_apk=(
1275 'ContentShell.apk', 'org.chromium.content_shell_apk')),
1276 steps.AndroidInstrumentationTest(
1277 'ChromeSyncShellTest', 'chrome_sync_shell_test_apk',
1278 adb_install_apk=(
1279 'ChromeSyncShell.apk', 'org.chromium.chrome.browser.sync')),
1280 steps.GTestTest('android_webview_unittests', amp_test=True),
1281 steps.GTestTest('base_unittests', amp_test=True,
1282 android_isolate_path='base/base_unittests.isolate'),
1283 steps.GTestTest(
1284 'breakpad_unittests',
1285 override_compile_targets=['breakpad_unittests_deps'],
1286 android_isolate_path='breakpad/breakpad_unittests.isolate'),
1287 steps.GTestTest('cc_unittests'),
1288 steps.GTestTest(
1289 'components_unittests', amp_test=True,
1290 android_isolate_path='components/components_unittests.isolate'),
1291 steps.GTestTest('content_browsertests'),
1292 steps.GTestTest('content_unittests'),
1293 steps.GTestTest('events_unittests', amp_test=True),
1294 steps.GTestTest('gl_tests', amp_test=True),
1295 steps.GTestTest('gpu_unittests'),
1296 steps.GTestTest('ipc_tests', amp_test=True),
1297 steps.GTestTest('media_unittests'),
1298 steps.GTestTest('net_unittests'),
1299 steps.GTestTest(
1300 'sandbox_linux_unittests',
1301 override_compile_targets=['sandbox_linux_unittests_deps']),
1302 steps.GTestTest('sql_unittests', amp_test=True,
1303 android_isolate_path='sql/sql_unittests.isolate'),
1304 steps.GTestTest('sync_unit_tests', amp_test=True,
1305 android_isolate_path='sync/sync_unit_tests.isolate'),
1306 steps.GTestTest('ui_android_unittests', amp_test=True),
1307 steps.GTestTest('ui_base_unittests'),
1308 steps.GTestTest('ui_touch_selection_unittests', amp_test=True),
1309 steps.GTestTest('unit_tests'),
1310 steps.AndroidJunitTest('junit_unit_tests'),
1311 steps.AndroidJunitTest('chrome_junit_tests'),
1312 steps.AndroidJunitTest('content_junit_tests'),
1313 ],
1314 'test_generators': [
1315 steps.generate_gtest,
1316 steps.generate_script,
1317 ],
1318 'testing': {
1319 'platform': 'linux',
1320 },
1321 },
1243 }, 1322 },
1244 } 1323 }
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/chromium/steps.py » ('j') | scripts/slave/recipe_modules/chromium/steps.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698