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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/steps.py

Issue 1859343003: [Android] Install SystemWebView.apk for SystemWebViewShellLayoutTest.apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: rebase 2 Created 4 years, 8 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
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 import re 5 import re
6 import string 6 import string
7 7
8 8
9 class Test(object): 9 class Test(object):
10 """ 10 """
(...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1581 }, 1581 },
1582 'SystemWebViewShellLayoutTest': { 1582 'SystemWebViewShellLayoutTest': {
1583 'compile_target': 'system_webview_shell_layout_test_apk', 1583 'compile_target': 'system_webview_shell_layout_test_apk',
1584 # TODO(agrieve): These should be listed as deps for 1584 # TODO(agrieve): These should be listed as deps for
1585 # system_webview_shell_layout_test_apk. 1585 # system_webview_shell_layout_test_apk.
1586 'additional_compile_targets': [ 1586 'additional_compile_targets': [
1587 'system_webview_apk', 1587 'system_webview_apk',
1588 'system_webview_shell_apk', 1588 'system_webview_shell_apk',
1589 'android_tools' 1589 'android_tools'
1590 ], 1590 ],
1591 # TODO(jbudorick): Remove this once it's handled by the generated script.
1592 'additional_apks': [
1593 'apks/SystemWebView.apk',
1594 ],
1591 }, 1595 },
1592 'MojoTest': { 1596 'MojoTest': {
1593 'compile_target': 'mojo_test_apk', 1597 'compile_target': 'mojo_test_apk',
1594 } 1598 }
1595 } 1599 }
1596 1600
1597 _DEFAULT_SUITES_BY_TARGET = { 1601 _DEFAULT_SUITES_BY_TARGET = {
1598 'android_webview_test_apk': _DEFAULT_SUITES['AndroidWebViewTest'], 1602 'android_webview_test_apk': _DEFAULT_SUITES['AndroidWebViewTest'],
1599 'chrome_public_test_apk': _DEFAULT_SUITES['ChromePublicTest'], 1603 'chrome_public_test_apk': _DEFAULT_SUITES['ChromePublicTest'],
1600 'chrome_sync_shell_test_apk': _DEFAULT_SUITES['ChromeSyncShellTest'], 1604 'chrome_sync_shell_test_apk': _DEFAULT_SUITES['ChromeSyncShellTest'],
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1872 def run(self, api, suffix, test_filter=None): 1876 def run(self, api, suffix, test_filter=None):
1873 api.chromium_android.coverage_report(upload=False) 1877 api.chromium_android.coverage_report(upload=False)
1874 api.chromium_android.get_changed_lines_for_revision() 1878 api.chromium_android.get_changed_lines_for_revision()
1875 api.chromium_android.incremental_coverage_report() 1879 api.chromium_android.incremental_coverage_report()
1876 1880
1877 1881
1878 GOMA_TESTS = [ 1882 GOMA_TESTS = [
1879 GTestTest('base_unittests'), 1883 GTestTest('base_unittests'),
1880 GTestTest('content_unittests'), 1884 GTestTest('content_unittests'),
1881 ] 1885 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698