OLD | NEW |
1 #!/usr/bin/env python | |
2 # | |
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 3 # found in the LICENSE file. |
6 | 4 |
7 import optparse | 5 import optparse |
8 import os | 6 import os |
9 import re | 7 import re |
10 import shlex | 8 import shlex |
11 import subprocess | 9 import subprocess |
12 import sys | 10 import sys |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 | 222 |
225 def main(argv): | 223 def main(argv): |
226 parser = GetCommonParser() | 224 parser = GetCommonParser() |
227 options, _ = parser.parse_args() | 225 options, _ = parser.parse_args() |
228 | 226 |
229 return Run(options) | 227 return Run(options) |
230 | 228 |
231 | 229 |
232 if __name__ == '__main__': | 230 if __name__ == '__main__': |
233 sys.exit(main(sys.argv)) | 231 sys.exit(main(sys.argv)) |
OLD | NEW |