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

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

Issue 1864233002: [Android] Fix SystemWebView.apk path for SystemWebViewShellLayoutTest.apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_android_Android_Webview_L__dbg_.json » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1572 matching lines...) Expand 10 before | Expand all | Expand 10 after
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. 1591 # TODO(jbudorick): Remove this once it's handled by the generated script.
1592 'additional_apks': [ 1592 'additional_apks': [
1593 'apks/SystemWebView.apk', 1593 'SystemWebView.apk',
1594 ], 1594 ],
1595 }, 1595 },
1596 'MojoTest': { 1596 'MojoTest': {
1597 'compile_target': 'mojo_test_apk', 1597 'compile_target': 'mojo_test_apk',
1598 } 1598 }
1599 } 1599 }
1600 1600
1601 _DEFAULT_SUITES_BY_TARGET = { 1601 _DEFAULT_SUITES_BY_TARGET = {
1602 'android_webview_test_apk': _DEFAULT_SUITES['AndroidWebViewTest'], 1602 'android_webview_test_apk': _DEFAULT_SUITES['AndroidWebViewTest'],
1603 'chrome_public_test_apk': _DEFAULT_SUITES['ChromePublicTest'], 1603 'chrome_public_test_apk': _DEFAULT_SUITES['ChromePublicTest'],
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 def run(self, api, suffix, test_filter=None): 1876 def run(self, api, suffix, test_filter=None):
1877 api.chromium_android.coverage_report(upload=False) 1877 api.chromium_android.coverage_report(upload=False)
1878 api.chromium_android.get_changed_lines_for_revision() 1878 api.chromium_android.get_changed_lines_for_revision()
1879 api.chromium_android.incremental_coverage_report() 1879 api.chromium_android.incremental_coverage_report()
1880 1880
1881 1881
1882 GOMA_TESTS = [ 1882 GOMA_TESTS = [
1883 GTestTest('base_unittests'), 1883 GTestTest('base_unittests'),
1884 GTestTest('content_unittests'), 1884 GTestTest('content_unittests'),
1885 ] 1885 ]
OLDNEW
« no previous file with comments | « no previous file | scripts/slave/recipes/chromium.expected/full_chromium_android_Android_Webview_L__dbg_.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698