OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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)) |
OLD | NEW |