blob: 8123167806dda450bb9e2e3685253ca60435a2a3 [file] [log] [blame]
pcc95ee2df2015-03-06 05:32:44 +09001#!/usr/bin/env python
2# Copyright 2015 The Chromium Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""Script to download LLVM gold plugin from google storage."""
7
mcgrathr3ffcc862015-10-27 07:07:51 +09008import find_depot_tools
pcc95ee2df2015-03-06 05:32:44 +09009import json
10import os
11import shutil
12import subprocess
13import sys
14import zipfile
15
16SCRIPT_DIR = os.path.dirname(os.path.realpath(__file__))
17CHROME_SRC = os.path.abspath(os.path.join(SCRIPT_DIR, os.pardir))
pcc95ee2df2015-03-06 05:32:44 +090018
pcc95ee2df2015-03-06 05:32:44 +090019
20DEPOT_PATH = find_depot_tools.add_depot_tools_to_path()
21GSUTIL_PATH = os.path.join(DEPOT_PATH, 'gsutil.py')
22
23LLVM_BUILD_PATH = os.path.join(CHROME_SRC, 'third_party', 'llvm-build',
24 'Release+Asserts')
Hans Wennborg1a275ca2015-05-07 12:48:35 +090025CLANG_UPDATE_PY = os.path.join(CHROME_SRC, 'tools', 'clang', 'scripts',
26 'update.py')
27CLANG_REVISION = os.popen(CLANG_UPDATE_PY + ' --print-revision').read().rstrip()
pcc95ee2df2015-03-06 05:32:44 +090028
29CLANG_BUCKET = 'gs://chromium-browser-clang/Linux_x64'
30
31def main():
32 targz_name = 'llvmgold-%s.tgz' % CLANG_REVISION
33 remote_path = '%s/%s' % (CLANG_BUCKET, targz_name)
34
35 os.chdir(LLVM_BUILD_PATH)
36
37 subprocess.check_call(['python', GSUTIL_PATH,
pcc88848002016-06-01 06:12:53 +090038 'cp', remote_path, targz_name])
pcc95ee2df2015-03-06 05:32:44 +090039 subprocess.check_call(['tar', 'xzf', targz_name])
40 os.remove(targz_name)
41 return 0
42
43if __name__ == '__main__':
44 sys.exit(main())