OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
2 # Copyright 2015 the V8 project authors. All rights reserved. | |
3 # Copyright 2015 The Chromium Authors. All rights reserved. | |
Michael Achenbach
2015/07/31 11:35:13
1:1 copy from chromium.
jochen (gone - plz use gerrit)
2015/07/31 11:47:08
i'd just remove that line, so it's a valid copyrig
| |
4 # Use of this source code is governed by a BSD-style license that can be | |
5 # found in the LICENSE file. | |
6 | |
7 """Script to download LLVM gold plugin from google storage.""" | |
8 | |
9 import json | |
10 import os | |
11 import shutil | |
12 import subprocess | |
13 import sys | |
14 import zipfile | |
15 | |
16 SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__)) | |
17 CHROME_SRC = os.path.abspath(os.path.join(SCRIPT_DIR, os.pardir)) | |
18 sys.path.insert(0, os.path.join(CHROME_SRC, 'tools')) | |
19 | |
20 import find_depot_tools | |
21 | |
22 DEPOT_PATH = find_depot_tools.add_depot_tools_to_path() | |
23 GSUTIL_PATH = os.path.join(DEPOT_PATH, 'gsutil.py') | |
24 | |
25 LLVM_BUILD_PATH = os.path.join(CHROME_SRC, 'third_party', 'llvm-build', | |
26 'Release+Asserts') | |
27 CLANG_UPDATE_PY = os.path.join(CHROME_SRC, 'tools', 'clang', 'scripts', | |
28 'update.py') | |
29 CLANG_REVISION = os.popen(CLANG_UPDATE_PY + ' --print-revision').read().rstrip() | |
30 | |
31 CLANG_BUCKET = 'gs://chromium-browser-clang/Linux_x64' | |
32 | |
33 def main(): | |
34 targz_name = 'llvmgold-%s.tgz' % CLANG_REVISION | |
35 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name) | |
36 | |
37 os.chdir(LLVM_BUILD_PATH) | |
38 | |
39 # TODO(pcc): Fix gsutil.py cp url file < /dev/null 2>&0 | |
40 # (currently aborts with exit code 1, | |
41 # https://github.com/GoogleCloudPlatform/gsutil/issues/289) or change the | |
42 # stdin->stderr redirect in update.py to do something else (crbug.com/494442). | |
43 subprocess.check_call(['python', GSUTIL_PATH, | |
44 'cp', remote_path, targz_name], | |
45 stderr=open('/dev/null', 'w')) | |
46 subprocess.check_call(['tar', 'xzf', targz_name]) | |
47 os.remove(targz_name) | |
48 return 0 | |
49 | |
50 if __name__ == '__main__': | |
51 sys.exit(main()) | |
OLD | NEW |