OLD | NEW |
(Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 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 install arm choot image for cross building of arm chrome on linux. |
| 7 # This script can be run manually but is more often run as part of gclient |
| 8 # hooks. When run from hooks this script should be a no-op on non-linux |
| 9 # platforms. |
| 10 |
| 11 # The sysroot image could be constructed from scratch based on the current |
| 12 # state or precise/arm but for consistency we currently use a pre-built root |
| 13 # image which was originally designed for building trusted NaCl code. The image |
| 14 # will normally need to be rebuilt every time chrome's build dependancies are |
| 15 # changed. |
| 16 |
| 17 import os |
| 18 import shutil |
| 19 import subprocess |
| 20 import sys |
| 21 |
| 22 |
| 23 SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__)) |
| 24 URL_PREFIX = 'https://commondatastorage.googleapis.com/nativeclient-archive2/too
lchain' |
| 25 REVISION = 8002 |
| 26 |
| 27 |
| 28 def main(args): |
| 29 if '--linux-only' in args: |
| 30 # This argument is passed when run from the gclient hooks. |
| 31 # In this case we return early on non-linux platforms |
| 32 # or if GYP_DEFINES doesn't include target_arch=arm |
| 33 if not sys.platform.startswith('linux'): |
| 34 return 0 |
| 35 |
| 36 if "target_arch=arm" not in os.environ.get('GYP_DEFINES', ''): |
| 37 return 0 |
| 38 |
| 39 src_root = os.path.dirname(os.path.dirname(SCRIPT_DIR)) |
| 40 sysroot = os.path.join(src_root, 'arm-sysroot') |
| 41 url = "%s/%s/naclsdk_linux_arm-trusted.tgz" % (URL_PREFIX, REVISION) |
| 42 |
| 43 stamp = os.path.join(sysroot, ".stamp") |
| 44 if os.path.exists(stamp): |
| 45 with open(stamp) as s: |
| 46 if s.read() == url: |
| 47 print "ARM root image already up-to-date: %s" % sysroot |
| 48 return 0 |
| 49 |
| 50 print "Installing ARM root image: %s" % sysroot |
| 51 if os.path.isdir(sysroot): |
| 52 shutil.rmtree(sysroot) |
| 53 os.mkdir(sysroot) |
| 54 tarball = os.path.join(sysroot, 'naclsdk_linux_arm-trusted.tgz') |
| 55 subprocess.check_call(['curl', '-L', url, '-o', tarball]) |
| 56 subprocess.check_call(['tar', 'xf', tarball, '-C', sysroot]) |
| 57 os.remove(tarball) |
| 58 |
| 59 with open(stamp, 'w') as s: |
| 60 s.write(url) |
| 61 return 0 |
| 62 |
| 63 |
| 64 if __name__ == '__main__': |
| 65 sys.exit(main(sys.argv[1:])) |
OLD | NEW |