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

Side by Side Diff: tools/checklicenses/checklicenses.py

Issue 7977043: Turn off checklicenses until it's done more efficiently. Linux try runs now take an hour. This ad... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | « no previous file | no next file » | 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/python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 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 """Makes sure that all files contain proper licensing information.""" 6 """Makes sure that all files contain proper licensing information."""
7 7
8 8
9 import optparse 9 import optparse
10 import os.path 10 import os.path
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 print "http://www.chromium.org/developers/adding-3rd-party-libraries" 512 print "http://www.chromium.org/developers/adding-3rd-party-libraries"
513 print "for more info how to handle the failure." 513 print "for more info how to handle the failure."
514 print 514 print
515 print "Please respect OWNERS of checklicenses.py. Changes violating" 515 print "Please respect OWNERS of checklicenses.py. Changes violating"
516 print "this requirement may be reverted." 516 print "this requirement may be reverted."
517 517
518 sys.exit(1) 518 sys.exit(1)
519 519
520 520
521 if '__main__' == __name__: 521 if '__main__' == __name__:
522 # Script takes 6 minutes when it succeeds, and often times out after 10
523 # minutes. Enable by default when it's fast.
524 print "\nNot running for now because it is slow and flakey\n"
525 print "\nSUCCESS\n"
526 sys.exit(0)
522 default_root = os.path.abspath( 527 default_root = os.path.abspath(
523 os.path.join(os.path.dirname(__file__), '..', '..')) 528 os.path.join(os.path.dirname(__file__), '..', '..'))
524 option_parser = optparse.OptionParser() 529 option_parser = optparse.OptionParser()
525 option_parser.add_option('--root', default=default_root, 530 option_parser.add_option('--root', default=default_root,
526 dest='base_directory', 531 dest='base_directory',
527 help='Specifies the repository root. This defaults ' 532 help='Specifies the repository root. This defaults '
528 'to "../.." relative to the script file, which ' 533 'to "../.." relative to the script file, which '
529 'will normally be the repository root.') 534 'will normally be the repository root.')
530 option_parser.add_option('-v', '--verbose', action='store_true', 535 option_parser.add_option('-v', '--verbose', action='store_true',
531 default=False, help='Print debug logging') 536 default=False, help='Print debug logging')
532 option_parser.add_option('--ignore-suppressions', 537 option_parser.add_option('--ignore-suppressions',
533 action='store_true', 538 action='store_true',
534 default=False, 539 default=False,
535 help='Ignore path-specific license whitelist.') 540 help='Ignore path-specific license whitelist.')
536 options, args = option_parser.parse_args() 541 options, args = option_parser.parse_args()
537 main(options, args) 542 main(options, args)
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698