| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 I('AndroidWebView', | 71 I('AndroidWebView', |
| 72 'AndroidWebView.apk', | 72 'AndroidWebView.apk', |
| 73 'org.chromium.android_webview.shell', | 73 'org.chromium.android_webview.shell', |
| 74 'AndroidWebViewTest', | 74 'AndroidWebViewTest', |
| 75 'webview:android_webview/test/data/device_files'), | 75 'webview:android_webview/test/data/device_files'), |
| 76 I('ChromeSyncShell', | 76 I('ChromeSyncShell', |
| 77 'ChromeSyncShell.apk', | 77 'ChromeSyncShell.apk', |
| 78 'org.chromium.chrome.browser.sync', | 78 'org.chromium.chrome.browser.sync', |
| 79 'ChromeSyncShellTest', | 79 'ChromeSyncShellTest', |
| 80 None), | 80 None), |
| 81 I('ChromeDriverWebViewShell', |
| 82 'ChromeDriverWebViewShell.apk', |
| 83 'org.chromium.chromedriver_webview_shell', |
| 84 None, |
| 85 None), |
| 81 ]) | 86 ]) |
| 82 | 87 |
| 83 VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', | 88 VALID_TESTS = set(['chromedriver', 'chrome_proxy', 'gpu', |
| 84 'telemetry_unittests', 'telemetry_perf_unittests', 'ui', | 89 'telemetry_unittests', 'telemetry_perf_unittests', 'ui', |
| 85 'unit', 'webkit', 'webkit_layout', 'python_unittests']) | 90 'unit', 'webkit', 'webkit_layout', 'python_unittests']) |
| 86 | 91 |
| 87 RunCmd = bb_utils.RunCmd | 92 RunCmd = bb_utils.RunCmd |
| 88 | 93 |
| 89 | 94 |
| 90 def _GetRevision(options): | 95 def _GetRevision(options): |
| (...skipping 645 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 | 741 |
| 737 if options.coverage_bucket: | 742 if options.coverage_bucket: |
| 738 setattr(options, 'coverage_dir', | 743 setattr(options, 'coverage_dir', |
| 739 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) | 744 os.path.join(CHROME_OUT_DIR, options.target, 'coverage')) |
| 740 | 745 |
| 741 MainTestWrapper(options) | 746 MainTestWrapper(options) |
| 742 | 747 |
| 743 | 748 |
| 744 if __name__ == '__main__': | 749 if __name__ == '__main__': |
| 745 sys.exit(main(sys.argv)) | 750 sys.exit(main(sys.argv)) |
| OLD | NEW |