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

Side by Side Diff: chrome/tools/build/win/syzygy_reorder.py

Issue 10146028: Set svn:executable bit on scripts that are executable. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « chrome/tools/build/win/resedit.py ('k') | chrome/tools/test/generate_mime_tests.pl » ('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) 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 utility script to help building Syzygy-reordered Chrome binaries.""" 6 """A utility script to help building Syzygy-reordered Chrome binaries."""
7 7
8 import logging 8 import logging
9 import optparse 9 import optparse
10 import os 10 import os
11 import subprocess 11 import subprocess
12 import sys 12 import sys
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
102 option_parser.error('You must provide an input symbol file.') 102 option_parser.error('You must provide an input symbol file.')
103 103
104 if not options.destination_dir: 104 if not options.destination_dir:
105 options.destination_dir = os.path.join(options.output_dir, 'reordered') 105 options.destination_dir = os.path.join(options.output_dir, 'reordered')
106 106
107 return options 107 return options
108 108
109 109
110 if '__main__' == __name__: 110 if '__main__' == __name__:
111 sys.exit(main(_ParseOptions())) 111 sys.exit(main(_ParseOptions()))
OLDNEW
« no previous file with comments | « chrome/tools/build/win/resedit.py ('k') | chrome/tools/test/generate_mime_tests.pl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698