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

Side by Side Diff: build/android/buildbot/bb_device_steps.py

Issue 1918733002: Make android_webview_test fit isolate naming convention. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « android_webview/test/BUILD.gn ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import collections 6 import collections
7 import glob 7 import glob
8 import hashlib 8 import hashlib
9 import json 9 import json
10 import os 10 import os
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 'ChromePublic.apk', 68 'ChromePublic.apk',
69 'org.chromium.chrome', 69 'org.chromium.chrome',
70 'ChromePublicTest', 70 'ChromePublicTest',
71 'chrome:chrome/test/data/android/device_files', 71 'chrome:chrome/test/data/android/device_files',
72 isolate_file_path='chrome/chrome_public_test_apk.isolate'), 72 isolate_file_path='chrome/chrome_public_test_apk.isolate'),
73 I('AndroidWebView', 73 I('AndroidWebView',
74 'AndroidWebView.apk', 74 'AndroidWebView.apk',
75 'org.chromium.android_webview.shell', 75 'org.chromium.android_webview.shell',
76 'AndroidWebViewTest', 76 'AndroidWebViewTest',
77 'webview:android_webview/test/data/device_files', 77 'webview:android_webview/test/data/device_files',
78 isolate_file_path='android_webview/android_webview_test_apk.isolate'), 78 isolate_file_path='android_webview/android_webview_test_data.isolate'),
79 I('ChromeSyncShell', 79 I('ChromeSyncShell',
80 'ChromeSyncShell.apk', 80 'ChromeSyncShell.apk',
81 'org.chromium.chrome.browser.sync', 81 'org.chromium.chrome.browser.sync',
82 'ChromeSyncShellTest', 82 'ChromeSyncShellTest',
83 None), 83 None),
84 ]) 84 ])
85 85
86 InstallablePackage = collections.namedtuple('InstallablePackage', [ 86 InstallablePackage = collections.namedtuple('InstallablePackage', [
87 'name', 'apk', 'apk_package']) 87 'name', 'apk', 'apk_package'])
88 88
(...skipping 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
774 774
775 if options.coverage_bucket: 775 if options.coverage_bucket:
776 setattr(options, 'coverage_dir', 776 setattr(options, 'coverage_dir',
777 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) 777 os.path.join(CHROME_OUT_DIR, options.target, 'coverage'))
778 778
779 return MainTestWrapper(options) 779 return MainTestWrapper(options)
780 780
781 781
782 if __name__ == '__main__': 782 if __name__ == '__main__':
783 sys.exit(main(sys.argv)) 783 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « android_webview/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698