Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(735)

Side by Side Diff: build/linux/install-arm-sysroot.py

Issue 11468014: Download arm sysroot as part of gclient hooks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/install-build-deps.sh ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 sys
19
20
21 script_dir = os.path.dirname(os.path.abspath(__file__))
iannucci 2012/12/07 22:43:39 nit: I would upcase SCRIPT_DIR
Sam Clegg 2012/12/07 23:39:19 Done.
22
23
24 def main(args):
25 if '--linux-only' in args:
26 # This argument is passed when run from the gclient hooks.
27 # In this case we return early on non-linux platforms
28 # or if GYP_DEFINES doesn't include target_arch=arm
29 if not sys.platform.startswith('linux'):
30 return 0
31
32 if "target_arch=arm" not in os.environ.get('GYP_DEFINES', ''):
33 return 0
34
35 src_root = os.path.dirname(os.path.dirname(script_dir))
36 sysroot = os.path.join(src_root, 'arm-sysroot')
37 url_prefix = 'https://commondatastorage.googleapis.com/nativeclient-archive2/t oolchain'
38 rev = 8002
39 url = "%s/%s/naclsdk_linux_arm-trusted.tgz" % (url_prefix, rev)
iannucci 2012/12/07 22:43:39 nit: These could be globals, since the don't reall
Sam Clegg 2012/12/07 23:39:19 Done.
40
41 stamp = os.path.join(sysroot, ".stamp")
42 if os.path.exists(stamp):
43 with open(stamp) as s:
44 if s.read() == url:
45 print "ARM root image already up-to-date: %s" % sysroot
46 return 0
47
48 print "Installing ARM root image: %s" % sysroot
49 if not os.path.isdir(sysroot):
50 os.mkdir(sysroot)
51 tarball = os.path.join(sysroot, 'naclsdk_linux_arm-trusted.tgz')
52 rtn = os.system('curl -L "%s" -o "%s"' % (url, tarball))
53 if rtn:
54 return rtn
iannucci 2012/12/07 22:43:39 Could this make an extra tarball file if curl abor
Sam Clegg 2012/12/07 23:39:19 I'm actually not a fan of too much use of tmpfiles
55 rtn = os.system('tar xf %s -C %s' % (tarball, sysroot))
iannucci 2012/12/07 22:43:39 Does it make sense to nuke the existing sysroot?
Sam Clegg 2012/12/07 23:39:19 Ooops, yes, thanks. Done
56 if rtn:
57 return rtn
58 os.remove(tarball)
59 open(stamp, 'w').write(url)
iannucci 2012/12/07 22:43:39 nit: I would explicitly close the file (probably w
Sam Clegg 2012/12/07 23:39:19 Done.
60
61 return 0
62
63
64 if __name__ == '__main__':
65 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « build/install-build-deps.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698