Chromium Code Reviews| 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 SPEC = { | 9 SPEC = { |
| 10 'settings': { | 10 'settings': { |
| (...skipping 1475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1486 steps.GTestTest('remoting_unittests'), | 1486 steps.GTestTest('remoting_unittests'), |
| 1487 steps.AndroidInstrumentationTest( | 1487 steps.AndroidInstrumentationTest( |
| 1488 'ChromotingTest', 'remoting_test_apk', | 1488 'ChromotingTest', 'remoting_test_apk', |
| 1489 adb_install_apk=( | 1489 adb_install_apk=( |
| 1490 'Chromoting.apk', 'org.chromium.chromoting')), | 1490 'Chromoting.apk', 'org.chromium.chromoting')), |
| 1491 ], | 1491 ], |
| 1492 'testing': { | 1492 'testing': { |
| 1493 'platform': 'linux', | 1493 'platform': 'linux', |
| 1494 }, | 1494 }, |
| 1495 }, | 1495 }, |
| 1496 'Android Tests (amp split)': { | |
| 1497 'chromium_config': 'android', | |
| 1498 'gclient_config': 'chromium', | |
| 1499 'gclient_apply_config': ['android'], | |
| 1500 'chromium_config_kwargs': { | |
| 1501 'BUILD_CONFIG': 'Release', | |
| 1502 'TARGET_BITS': 32, | |
| 1503 'TARGET_PLATFORM': 'android', | |
| 1504 }, | |
| 1505 'bot_type': 'tester', | |
| 1506 'parent_buildername': 'Android Builder', | |
|
jbudorick
2015/06/23 21:04:30
This should be 'Android Builder (dbg)', and we sho
| |
| 1507 'android_config': 'main_builder', | |
| 1508 'root_devices': True, | |
| 1509 'enable_swarming': False, | |
| 1510 'tests': [ | |
| 1511 steps.AndroidInstrumentationTest( | |
| 1512 'AndroidWebViewTest', 'android_webview_test_apk', | |
| 1513 isolate_file_path='android_webview/android_webview_test_apk.isolate' , | |
| 1514 adb_install_apk=( | |
| 1515 'AndroidWebView.apk', 'org.chromium.android_webview.shell')), | |
| 1516 steps.AndroidInstrumentationTest( | |
| 1517 'ChromeShellTest', 'chrome_shell_test_apk', | |
| 1518 isolate_file_path='chrome/chrome_shell_test_apk.isolate', | |
| 1519 adb_install_apk=( | |
| 1520 'ChromeShell.apk', 'org.chromium.chrome.shell')), | |
| 1521 steps.AndroidInstrumentationTest( | |
| 1522 'ContentShellTest', 'content_shell_test_apk', | |
| 1523 isolate_file_path='content/content_shell_test_apk.isolate', | |
| 1524 adb_install_apk=( | |
| 1525 'ContentShell.apk', 'org.chromium.content_shell_apk')), | |
| 1526 steps.AndroidInstrumentationTest( | |
| 1527 'ChromeSyncShellTest', 'chrome_sync_shell_test_apk', | |
| 1528 adb_install_apk=( | |
| 1529 'ChromeSyncShell.apk', 'org.chromium.chrome.browser.sync')), | |
| 1530 steps.AMPGTestTest('android_webview_unittests', | |
| 1531 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 1532 steps.AMPGTestTest('base_unittests', | |
| 1533 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 1534 android_isolate_path='base/base_unittests.isolate'), | |
| 1535 steps.GTestTest( | |
| 1536 'breakpad_unittests', | |
| 1537 override_compile_targets=['breakpad_unittests_deps'], | |
| 1538 android_isolate_path='breakpad/breakpad_unittests.isolate'), | |
| 1539 steps.GTestTest('cc_unittests'), | |
| 1540 steps.AMPGTestTest('components_unittests', | |
| 1541 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 1542 android_isolate_path='components/components_unittests.isolate'), | |
| 1543 steps.GTestTest('content_browsertests'), | |
| 1544 steps.GTestTest('content_unittests'), | |
| 1545 steps.AMPGTestTest('events_unittests', | |
| 1546 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 1547 steps.AMPGTestTest('gl_tests', | |
| 1548 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 1549 steps.GTestTest('gpu_unittests'), | |
| 1550 steps.AMPGTestTest('ipc_tests', device_name=['Nexus 5'], | |
| 1551 device_os=['4.4.2']), | |
| 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'], | |
| 1559 android_isolate_path='sql/sql_unittests.isolate'), | |
| 1560 steps.AMPGTestTest('sync_unit_tests', | |
| 1561 device_name=['Nexus 5'], device_os=['4.4.2'], | |
| 1562 android_isolate_path='sync/sync_unit_tests.isolate'), | |
| 1563 steps.AMPGTestTest('ui_android_unittests', | |
| 1564 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 1565 steps.GTestTest('ui_base_unittests'), | |
| 1566 steps.AMPGTestTest('ui_touch_selection_unittests', | |
| 1567 device_name=['Nexus 5'], device_os=['4.4.2']), | |
| 1568 steps.GTestTest('unit_tests'), | |
| 1569 steps.AndroidJunitTest('junit_unit_tests'), | |
| 1570 steps.AndroidJunitTest('chrome_junit_tests'), | |
| 1571 steps.AndroidJunitTest('content_junit_tests'), | |
| 1572 ], | |
| 1573 'test_generators': [ | |
| 1574 steps.generate_gtest, | |
| 1575 steps.generate_script, | |
| 1576 ], | |
| 1577 'testing': { | |
| 1578 'platform': 'linux', | |
| 1579 }, | |
| 1580 }, | |
| 1496 }, | 1581 }, |
| 1497 } | 1582 } |
| OLD | NEW |