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

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

Issue 10835019: Fix license headers in a number of files (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 8 years, 4 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 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # copyright (c) 2012 the chromium authors. all rights reserved. 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 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 """Build script to generate a new sdk_tools bundle. 6 """Build script to generate a new sdk_tools bundle.
7 7
8 This script packages the files necessary to generate the SDK updater -- the 8 This script packages the files necessary to generate the SDK updater -- the
9 tool users run to download new bundles, update existing bundles, etc. 9 tool users run to download new bundles, update existing bundles, etc.
10 """ 10 """
11 11
12 import buildbot_common 12 import buildbot_common
13 import build_utils 13 import build_utils
14 import cStringIO 14 import cStringIO
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
157 parser = optparse.OptionParser() 157 parser = optparse.OptionParser()
158 parser.add_option('-o', '--out', help='output directory', 158 parser.add_option('-o', '--out', help='output directory',
159 dest='out_dir', default='out') 159 dest='out_dir', default='out')
160 options, args = parser.parse_args(args[1:]) 160 options, args = parser.parse_args(args[1:])
161 161
162 BuildUpdater(options.out_dir) 162 BuildUpdater(options.out_dir)
163 163
164 164
165 if __name__ == '__main__': 165 if __name__ == '__main__':
166 sys.exit(main(sys.argv)) 166 sys.exit(main(sys.argv))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698