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

Side by Side Diff: native_client_sdk/src/build_tools/install_boost/install_boost.py

Issue 10139026: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update Created 8 years, 8 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
OLDNEW
1 #! -*- python -*- 1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # 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
5 # found in the LICENSE file. 4 # found in the LICENSE file.
6 5
7 """Install boost headers into a list of toolchains, in such a way that it gets 6 """Install boost headers into a list of toolchains, in such a way that it gets
8 pulled into the SDK installer. Note that this script only installs boost 7 pulled into the SDK installer. Note that this script only installs boost
9 headers, and does not build any of the boost libraries that require building. 8 headers, and does not build any of the boost libraries that require building.
10 """ 9 """
11 10
12 import build_utils 11 import build_utils
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 options.toolchains = [build_utils.TOOLCHAIN_AUTODETECT] 100 options.toolchains = [build_utils.TOOLCHAIN_AUTODETECT]
102 options.toolchains = [build_utils.NormalizeToolchain(tc) 101 options.toolchains = [build_utils.NormalizeToolchain(tc)
103 for tc in options.toolchains] 102 for tc in options.toolchains]
104 103
105 print "Installing boost into %s" % str(options.third_party_dir) 104 print "Installing boost into %s" % str(options.third_party_dir)
106 return InstallBoost(options) 105 return InstallBoost(options)
107 106
108 107
109 if __name__ == '__main__': 108 if __name__ == '__main__':
110 main(sys.argv[1:]) 109 main(sys.argv[1:])
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/buildbot_common.py ('k') | native_client_sdk/src/build_tools/install_third_party.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698