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

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: nit: remove extra line in chromium/example.py Created 5 years, 6 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 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after
1480 steps.GTestTest('remoting_unittests'), 1480 steps.GTestTest('remoting_unittests'),
1481 steps.AndroidInstrumentationTest( 1481 steps.AndroidInstrumentationTest(
1482 'ChromotingTest', 'remoting_test_apk', 1482 'ChromotingTest', 'remoting_test_apk',
1483 adb_install_apk=( 1483 adb_install_apk=(
1484 'Chromoting.apk', 'org.chromium.chromoting')), 1484 'Chromoting.apk', 'org.chromium.chromoting')),
1485 ], 1485 ],
1486 'testing': { 1486 'testing': {
1487 'platform': 'linux', 1487 'platform': 'linux',
1488 }, 1488 },
1489 }, 1489 },
1490 'Android Tests (amp split)': {
1491 'chromium_config': 'android',
1492 'gclient_config': 'chromium',
1493 'gclient_apply_config': ['android'],
1494 'chromium_config_kwargs': {
1495 'BUILD_CONFIG': 'Release',
1496 'TARGET_BITS': 32,
1497 'TARGET_PLATFORM': 'android',
1498 },
1499 'bot_type': 'tester',
1500 'parent_buildername': 'Android Builder',
1501 'android_config': 'main_builder',
1502 'root_devices': True,
1503 'enable_swarming': False,
1504 'tests': [
1505 steps.AndroidInstrumentationTest(
1506 'AndroidWebViewTest', 'android_webview_test_apk',
1507 isolate_file_path='android_webview/android_webview_test_apk.isolate' ,
1508 adb_install_apk=(
1509 'AndroidWebView.apk', 'org.chromium.android_webview.shell')),
1510 steps.AndroidInstrumentationTest(
1511 'ChromeShellTest', 'chrome_shell_test_apk',
1512 isolate_file_path='chrome/chrome_shell_test_apk.isolate',
1513 adb_install_apk=(
1514 'ChromeShell.apk', 'org.chromium.chrome.shell')),
1515 steps.AndroidInstrumentationTest(
1516 'ContentShellTest', 'content_shell_test_apk',
1517 isolate_file_path='content/content_shell_test_apk.isolate',
1518 adb_install_apk=(
1519 'ContentShell.apk', 'org.chromium.content_shell_apk')),
1520 steps.AndroidInstrumentationTest(
1521 'ChromeSyncShellTest', 'chrome_sync_shell_test_apk',
1522 adb_install_apk=(
1523 'ChromeSyncShell.apk', 'org.chromium.chrome.browser.sync')),
1524 steps.AMPGTestTest('android_webview_unittests',
1525 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
jbudorick 2015/06/06 00:39:20 All of the current devices are 4.4.2, so I think w
navabi 2015/06/06 01:39:07 Done. I'll left the ['4.4.2'] to make it explicit.
1526 device_timeout=60),
jbudorick 2015/06/06 00:39:20 Also, I'm not sure about using a device timeout. I
navabi 2015/06/06 01:39:07 I didn't realize this adds to the cycle time. I th
jbudorick 2015/06/08 13:17:35 Yeah, device selection is synchronous. Test execut
navabi 2015/06/18 19:47:48 Removed device_timeout.
1527 steps.AMPGTestTest('base_unittests',
1528 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1529 device_timeout=60,
1530 android_isolate_path='base/base_unittests.isolate'),
1531 steps.GTestTest(
1532 'breakpad_unittests',
1533 override_compile_targets=['breakpad_unittests_deps'],
1534 android_isolate_path='breakpad/breakpad_unittests.isolate'),
1535 steps.GTestTest('cc_unittests'),
1536 steps.AMPGTestTest('components_unittests',
1537 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1538 device_timeout=60,
1539 android_isolate_path='components/components_unittests.isolate'),
1540 steps.GTestTest('content_browsertests'),
1541 steps.GTestTest('content_unittests'),
1542 steps.AMPGTestTest('events_unittests',
1543 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1544 device_timeout=60),
1545 steps.AMPGTestTest('gl_tests',
1546 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1547 device_timeout=60),
1548 steps.GTestTest('gpu_unittests'),
1549 steps.AMPGTestTest('ipc_tests',
1550 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1551 device_timeout=60),
1552 steps.GTestTest('media_unittests'),
1553 steps.GTestTest('net_unittests'),
1554 steps.GTestTest(
1555 'sandbox_linux_unittests',
1556 override_compile_targets=['sandbox_linux_unittests_deps']),
1557 steps.AMPGTestTest('sql_unittests',
1558 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1559 device_timeout=60,
1560 android_isolate_path='sql/sql_unittests.isolate'),
1561 steps.AMPGTestTest('sync_unit_tests',
1562 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1563 device_timeout=60,
1564 android_isolate_path='sync/sync_unit_tests.isolate'),
1565 steps.AMPGTestTest('ui_android_unittests',
1566 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1567 device_timeout=60),
1568 steps.GTestTest('ui_base_unittests'),
1569 steps.AMPGTestTest('ui_touch_selection_unittests',
1570 device_name=['Nexus 5'], device_os=['4.4.2', '4.4.3'],
1571 device_timeout=60),
1572 steps.GTestTest('unit_tests'),
1573 steps.AndroidJunitTest('junit_unit_tests'),
1574 steps.AndroidJunitTest('chrome_junit_tests'),
1575 steps.AndroidJunitTest('content_junit_tests'),
1576 ],
1577 'test_generators': [
1578 steps.generate_gtest,
1579 steps.generate_script,
1580 ],
1581 'testing': {
1582 'platform': 'linux',
1583 },
1584 },
1490 }, 1585 },
1491 } 1586 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698