bedb42805e
Revision number comes from https://cs.chromium.org/chromium/src/tools/clang/scripts/update.py?l=30&rcl=d8897aff36aefd9ac967d76810057482c5afc0f3 (via mtklein). This CL is effectively a reland of https://skia-review.googlesource.com/c/skia/+/114093, using the version of Clang from the link above as of 2018-03-16. The original CL was reverted due to skia:7720, which was tangential. Change-Id: I2a0074a4de26ae8f657d0bce29189b161e20eb66 Reviewed-on: https://skia-review.googlesource.com/115164 Commit-Queue: Ben Wagner <benjaminwagner@google.com> Reviewed-by: Mike Klein <mtklein@chromium.org>
46 lines
1.0 KiB
Python
Executable File
46 lines
1.0 KiB
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2017 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
|
|
"""Create the asset."""
|
|
|
|
|
|
import argparse
|
|
import common
|
|
import os
|
|
import subprocess
|
|
import utils
|
|
|
|
|
|
# Copied from CLANG_REVISION here:
|
|
# https://cs.chromium.org/chromium/src/tools/clang/scripts/update.py
|
|
CLANG_REVISION = '327688'
|
|
CLANG_SUB_REVISION = '1'
|
|
CLANG_PKG_VERSION = '%s-%s' % (CLANG_REVISION, CLANG_SUB_REVISION)
|
|
GS_URL = ('https://commondatastorage.googleapis.com/chromium-browser-clang'
|
|
'/Win/clang-%s.tgz' % CLANG_PKG_VERSION)
|
|
|
|
|
|
def create_asset(target_dir):
|
|
"""Create the asset."""
|
|
with utils.chdir(target_dir):
|
|
tarball = 'clang.tgz'
|
|
subprocess.check_call(['wget', '-O', tarball, GS_URL])
|
|
subprocess.check_call(['tar', 'zxvf', tarball])
|
|
os.remove(tarball)
|
|
|
|
|
|
def main():
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument('--target_dir', '-t', required=True)
|
|
args = parser.parse_args()
|
|
create_asset(args.target_dir)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|