| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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)) |
| OLD | NEW |