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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/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: Address phajdan.jr comments. 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 1459 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 steps.GTestTest('remoting_unittests'), 1470 steps.GTestTest('remoting_unittests'),
1471 steps.AndroidInstrumentationTest( 1471 steps.AndroidInstrumentationTest(
1472 'ChromotingTest', 'remoting_test_apk', 1472 'ChromotingTest', 'remoting_test_apk',
1473 adb_install_apk=( 1473 adb_install_apk=(
1474 'Chromoting.apk', 'org.chromium.chromoting')), 1474 'Chromoting.apk', 'org.chromium.chromoting')),
1475 ], 1475 ],
1476 'testing': { 1476 'testing': {
1477 'platform': 'linux', 1477 'platform': 'linux',
1478 }, 1478 },
1479 }, 1479 },
1480 'Android Tests (amp split)': {
1481 'chromium_config': 'android',
1482 'gclient_config': 'chromium',
1483 'gclient_apply_config': ['android'],
1484 'chromium_config_kwargs': {
1485 'BUILD_CONFIG': 'Release',
1486 'TARGET_BITS': 32,
1487 'TARGET_PLATFORM': 'android',
1488 },
1489 'bot_type': 'tester',
1490 'parent_buildername': 'Android Builder',
1491 'android_config': 'main_builder',
1492 'root_devices': True,
1493 'enable_swarming': False,
1494 'tests': [
1495 steps.AndroidInstrumentationTest(
1496 'AndroidWebViewTest', 'android_webview_test_apk',
1497 isolate_file_path='android_webview/android_webview_test_apk.isolate' ,
1498 adb_install_apk=(
1499 'AndroidWebView.apk', 'org.chromium.android_webview.shell')),
1500 steps.AndroidInstrumentationTest(
1501 'ChromeShellTest', 'chrome_shell_test_apk',
1502 isolate_file_path='chrome/chrome_shell_test_apk.isolate',
1503 adb_install_apk=(
1504 'ChromeShell.apk', 'org.chromium.chrome.shell')),
1505 steps.AndroidInstrumentationTest(
1506 'ContentShellTest', 'content_shell_test_apk',
1507 isolate_file_path='content/content_shell_test_apk.isolate',
1508 adb_install_apk=(
1509 'ContentShell.apk', 'org.chromium.content_shell_apk')),
1510 steps.AndroidInstrumentationTest(
1511 'ChromeSyncShellTest', 'chrome_sync_shell_test_apk',
1512 adb_install_apk=(
1513 'ChromeSyncShell.apk', 'org.chromium.chrome.browser.sync')),
1514 steps.AMPGTestTest('android_webview_unittests',
1515 device_name=['Nexus 5'], device_os=['4.4.2']),
1516 steps.AMPGTestTest('base_unittests',
1517 device_name=['Nexus 5'], device_os=['4.4.2'],
1518 android_isolate_path='base/base_unittests.isolate'),
1519 steps.GTestTest(
1520 'breakpad_unittests',
1521 override_compile_targets=['breakpad_unittests_deps'],
1522 android_isolate_path='breakpad/breakpad_unittests.isolate'),
1523 steps.GTestTest('cc_unittests'),
1524 steps.AMPGTestTest('components_unittests',
1525 device_name=['Nexus 5'], device_os=['4.4.2'],
1526 android_isolate_path='components/components_unittests.isolate'),
1527 steps.GTestTest('content_browsertests'),
1528 steps.GTestTest('content_unittests'),
1529 steps.AMPGTestTest('events_unittests',
1530 device_name=['Nexus 5'], device_os=['4.4.2']),
1531 steps.AMPGTestTest('gl_tests',
1532 device_name=['Nexus 5'], device_os=['4.4.2']),
1533 steps.GTestTest('gpu_unittests'),
1534 steps.AMPGTestTest('ipc_tests', device_name=['Nexus 5'],
1535 device_os=['4.4.2']),
1536 steps.GTestTest('media_unittests'),
1537 steps.GTestTest('net_unittests'),
1538 steps.GTestTest(
1539 'sandbox_linux_unittests',
1540 override_compile_targets=['sandbox_linux_unittests_deps']),
1541 steps.AMPGTestTest('sql_unittests',
1542 device_name=['Nexus 5'], device_os=['4.4.2'],
1543 android_isolate_path='sql/sql_unittests.isolate'),
1544 steps.AMPGTestTest('sync_unit_tests',
1545 device_name=['Nexus 5'], device_os=['4.4.2'],
1546 android_isolate_path='sync/sync_unit_tests.isolate'),
1547 steps.AMPGTestTest('ui_android_unittests',
1548 device_name=['Nexus 5'], device_os=['4.4.2']),
1549 steps.GTestTest('ui_base_unittests'),
1550 steps.AMPGTestTest('ui_touch_selection_unittests',
1551 device_name=['Nexus 5'], device_os=['4.4.2']),
1552 steps.GTestTest('unit_tests'),
1553 steps.AndroidJunitTest('junit_unit_tests'),
1554 steps.AndroidJunitTest('chrome_junit_tests'),
1555 steps.AndroidJunitTest('content_junit_tests'),
1556 ],
1557 'test_generators': [
1558 steps.generate_gtest,
1559 steps.generate_script,
1560 ],
1561 'testing': {
1562 'platform': 'linux',
1563 },
1564 },
1480 }, 1565 },
1481 } 1566 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698