OLD | NEW |
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: |
11 # | 11 # |
12 # * branding=Chrome | 12 # * branding=Chrome |
13 # * buildtype=Official | 13 # * buildtype=Official |
14 # * target_arch=[matching_arch] | |
15 # | 14 # |
16 # and not: | 15 # and not: |
17 # | 16 # |
18 # * chromeos=1 | 17 # * chromeos=1 |
19 | 18 |
20 import os.path | 19 import os.path |
21 import subprocess | 20 import subprocess |
22 import sys | 21 import sys |
23 | 22 |
24 def main(): | 23 def main(): |
(...skipping 13 matching lines...) Expand all Loading... |
38 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=amd64']) | 37 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=amd64']) |
39 if ret != 0: | 38 if ret != 0: |
40 return ret | 39 return ret |
41 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=i386']) | 40 ret = subprocess.call([SCRIPT_FILE, '--linux-only', '--arch=i386']) |
42 if ret != 0: | 41 if ret != 0: |
43 return ret | 42 return ret |
44 return 0 | 43 return 0 |
45 | 44 |
46 if __name__ == '__main__': | 45 if __name__ == '__main__': |
47 sys.exit(main()) | 46 sys.exit(main()) |
OLD | NEW |