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

Side by Side Diff: chrome/tools/build/win/syzygy/reorder.py

Issue 773253004: Move Syzygy build related things to their own directory with an OWNERS file, and add an allocation … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small fix. Created 6 years 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
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 """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
(...skipping 91 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

Powered by Google App Engine
This is Rietveld 408576698