OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
9 | 9 |
10 """Downloads precompiled tools. | 10 """Downloads precompiled tools. |
11 | 11 |
12 These are checked into the repository as SHA-1 hashes (see *.sha1 files in | 12 These are checked into the repository as SHA-1 hashes (see *.sha1 files in |
13 subdirectories). Note that chrome-webrtc-resources is a Google-internal bucket, | 13 subdirectories). Note that chrome-webrtc-resources is a Google-internal bucket, |
14 so please download and compile these tools manually if this script fails. | 14 so please download and compile these tools manually if this script fails. |
15 """ | 15 """ |
16 | 16 |
17 import os | 17 import os |
18 import subprocess | 18 import subprocess |
19 import sys | 19 import sys |
20 | 20 |
21 | 21 |
22 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) | 22 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) |
23 # Needed to properly resolve PATH and executable extensions on Windows. | |
kjellander_webrtc
2017/03/27 09:05:10
Skip the "and executable extensions" part in this
oprypin_webrtc
2017/03/27 09:19:07
I think it is actually still relevant to resolve t
kjellander_webrtc
2017/03/27 09:46:51
Ah, I see now. I somehow confused this in my head
| |
24 USE_SHELL = sys.platform == 'win32' | |
23 | 25 |
24 | 26 |
25 def main(directories): | 27 def main(directories): |
26 if not directories: | 28 if not directories: |
27 directories = [SCRIPT_DIR] | 29 directories = [SCRIPT_DIR] |
28 | 30 |
29 for path in directories: | 31 for path in directories: |
30 cmd = [ | 32 cmd = [ |
31 'download_from_google_storage', | 33 'download_from_google_storage', |
32 '--directory', | 34 '--directory', |
33 '--num_threads=10', | 35 '--num_threads=10', |
34 '--bucket', 'chrome-webrtc-resources', | 36 '--bucket', 'chrome-webrtc-resources', |
35 '--auto_platform', | 37 '--auto_platform', |
36 '--recursive', | 38 '--recursive', |
37 path, | 39 path, |
38 ] | 40 ] |
39 print 'Downloading precompiled tools...' | 41 print 'Downloading precompiled tools...' |
40 subprocess.check_call(cmd) | 42 subprocess.check_call(cmd, shell=USE_SHELL) |
41 | 43 |
42 | 44 |
43 if __name__ == '__main__': | 45 if __name__ == '__main__': |
44 sys.exit(main(sys.argv[1:])) | 46 sys.exit(main(sys.argv[1:])) |
OLD | NEW |