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

Side by Side Diff: build/linux/install-debian.wheezy.sysroot.wrapper.py

Issue 15143004: Merge 198859 "Convert build/linux/install-debian.wheezy.sysroot...." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1500/src/
Patch Set: Created 7 years, 7 months 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 | « DEPS ('k') | build/linux/install-debian.wheezy.sysroot.wrapper.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This wrapper script runs the Debian sysroot installation scripts, if they 6 # This wrapper script runs the Debian sysroot installation scripts, if they
7 # exist. 7 # exist.
8 # 8 #
9 # The script is a no-op except for linux users who have the following in their 9 # The script is a no-op except for linux users who have the following in their
10 # GYP_DEFINES: 10 # GYP_DEFINES:
(...skipping 27 matching lines...) Expand all
38 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=amd64']) 38 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=amd64'])
39 if ret != 0: 39 if ret != 0:
40 return ret 40 return ret
41 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=i386']) 41 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=i386'])
42 if ret != 0: 42 if ret != 0:
43 return ret 43 return ret
44 return 0 44 return 0
45 45
46 if __name__ == '__main__': 46 if __name__ == '__main__':
47 sys.exit(main()) 47 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | build/linux/install-debian.wheezy.sysroot.wrapper.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698