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

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

Issue 511453003: Made ChromeSyncShellTest.apk run on the fyi-tests bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « build/all.gyp ('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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 'ContentShell.apk', 60 'ContentShell.apk',
61 'org.chromium.content_shell_apk', 61 'org.chromium.content_shell_apk',
62 'ContentShellTest', 62 'ContentShellTest',
63 'content:content/test/data/android/device_files'), 63 'content:content/test/data/android/device_files'),
64 I('ChromeShell', 64 I('ChromeShell',
65 'ChromeShell.apk', 65 'ChromeShell.apk',
66 'org.chromium.chrome.shell', 66 'org.chromium.chrome.shell',
67 'ChromeShellTest', 67 'ChromeShellTest',
68 'chrome:chrome/test/data/android/device_files', 68 'chrome:chrome/test/data/android/device_files',
69 constants.CHROME_SHELL_HOST_DRIVEN_DIR), 69 constants.CHROME_SHELL_HOST_DRIVEN_DIR),
70 I('ChromeSyncShell',
jbudorick 2014/08/26 17:59:53 Mentioned offline, but for the record: This will r
71 'ChromeSyncShell.apk',
72 'org.chromium.chrome.browser.sync',
73 'ChromeSyncShellTest.apk',
74 'chrome:chrome/test/data/android/device_files'),
70 I('AndroidWebView', 75 I('AndroidWebView',
71 'AndroidWebView.apk', 76 'AndroidWebView.apk',
72 'org.chromium.android_webview.shell', 77 'org.chromium.android_webview.shell',
73 'AndroidWebViewTest', 78 'AndroidWebViewTest',
74 'webview:android_webview/test/data/device_files'), 79 'webview:android_webview/test/data/device_files'),
75 ]) 80 ])
76 81
77 VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', 'mojo', 82 VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', 'mojo',
78 'telemetry_perf_unittests', 'ui', 'unit', 'webkit', 83 'telemetry_perf_unittests', 'ui', 'unit', 'webkit',
79 'webkit_layout', 'webrtc_chromium', 'webrtc_native']) 84 'webkit_layout', 'webrtc_chromium', 'webrtc_native'])
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 739
735 if options.coverage_bucket: 740 if options.coverage_bucket:
736 setattr(options, 'coverage_dir', 741 setattr(options, 'coverage_dir',
737 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) 742 os.path.join(CHROME_OUT_DIR, options.target, 'coverage'))
738 743
739 MainTestWrapper(options) 744 MainTestWrapper(options)
740 745
741 746
742 if __name__ == '__main__': 747 if __name__ == '__main__':
743 sys.exit(main(sys.argv)) 748 sys.exit(main(sys.argv))
OLDNEW
« no previous file with comments | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698