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

Side by Side Diff: webkit/support/setup_third_party.py

Issue 8678022: Fix python scripts in src/webkit (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 2012 Created 8 years, 11 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 | « webkit/data/dom_serializer/dummy.exe ('k') | webkit/tools/layout_tests/run_http_server.py » ('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/python 1 #!/usr/bin/env python
2 # Copyright (c) 2011 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 """A helper script for setting up forwarding headers.""" 6 """A helper script for setting up forwarding headers."""
7 7
8 import errno 8 import errno
9 import os 9 import os
10 import sys 10 import sys
11 11
12 12
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 'outputs': Outputs, 129 'outputs': Outputs,
130 'setup_headers': SetupHeaders, 130 'setup_headers': SetupHeaders,
131 } 131 }
132 command = argv[1] 132 command = argv[1]
133 args = argv[2:] 133 args = argv[2:]
134 return commands[command](args) 134 return commands[command](args)
135 135
136 136
137 if __name__ == '__main__': 137 if __name__ == '__main__':
138 sys.exit(Main(sys.argv)) 138 sys.exit(Main(sys.argv))
OLDNEW
« no previous file with comments | « webkit/data/dom_serializer/dummy.exe ('k') | webkit/tools/layout_tests/run_http_server.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698