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

Side by Side Diff: build/android/pylib/utils/findbugs.py

Issue 26402002: [Android] Some clean up in pylib. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove shebang lines Created 7 years, 2 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 | « build/android/pylib/utils/emulator.py ('k') | tools/android/android_tools.gyp » ('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
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
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))
OLDNEW
« no previous file with comments | « build/android/pylib/utils/emulator.py ('k') | tools/android/android_tools.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698