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

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

Issue 23654007: Add tools/swarm_client/third_party as unknown license. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: colorama:44 Created 7 years, 3 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/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 """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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
355 ], 355 ],
356 'third_party/smhasher/src': [ # http://crbug.com/98465 356 'third_party/smhasher/src': [ # http://crbug.com/98465
357 'UNKNOWN', 357 'UNKNOWN',
358 ], 358 ],
359 'third_party/speech-dispatcher/libspeechd.h': [ 359 'third_party/speech-dispatcher/libspeechd.h': [
360 'GPL (v2 or later)', 360 'GPL (v2 or later)',
361 ], 361 ],
362 'third_party/sqlite': [ 362 'third_party/sqlite': [
363 'UNKNOWN', 363 'UNKNOWN',
364 ], 364 ],
365 # https://code.google.com/p/colorama/issues/detail?id=44
Paweł Hajdan Jr. 2013/09/04 22:53:40 nit: Add empty line above to make it unambiguous t
M-A Ruel 2013/09/04 23:12:46 Done.
366 'tools/swarm_client/third_party/colorama': [
367 'UNKNOWN',
368 ],
Paweł Hajdan Jr. 2013/09/04 22:53:40 nit: And empty line below for the same reason. Th
M-A Ruel 2013/09/04 23:12:46 Done.
365 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585 369 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585
366 'UNKNOWN', 370 'UNKNOWN',
367 ], 371 ],
368 'third_party/talloc': [ 372 'third_party/talloc': [
369 'GPL (v3 or later)', 373 'GPL (v3 or later)',
370 'UNKNOWN', # http://crbug.com/98588 374 'UNKNOWN', # http://crbug.com/98588
371 ], 375 ],
372 'third_party/tcmalloc': [ 376 'third_party/tcmalloc': [
373 'UNKNOWN', # http://crbug.com/98589 377 'UNKNOWN', # http://crbug.com/98589
374 ], 378 ],
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 option_parser.add_option('--ignore-suppressions', 540 option_parser.add_option('--ignore-suppressions',
537 action='store_true', 541 action='store_true',
538 default=False, 542 default=False,
539 help='Ignore path-specific license whitelist.') 543 help='Ignore path-specific license whitelist.')
540 options, args = option_parser.parse_args() 544 options, args = option_parser.parse_args()
541 return check_licenses(options, args) 545 return check_licenses(options, args)
542 546
543 547
544 if '__main__' == __name__: 548 if '__main__' == __name__:
545 sys.exit(main()) 549 sys.exit(main())
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