OLD | NEW |
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 Loading... |
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 |
| 366 # https://code.google.com/p/colorama/issues/detail?id=44 |
| 367 'tools/swarm_client/third_party/colorama': [ |
| 368 'UNKNOWN', |
| 369 ], |
| 370 |
365 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585 | 371 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585 |
366 'UNKNOWN', | 372 'UNKNOWN', |
367 ], | 373 ], |
368 'third_party/talloc': [ | 374 'third_party/talloc': [ |
369 'GPL (v3 or later)', | 375 'GPL (v3 or later)', |
370 'UNKNOWN', # http://crbug.com/98588 | 376 'UNKNOWN', # http://crbug.com/98588 |
371 ], | 377 ], |
372 'third_party/tcmalloc': [ | 378 'third_party/tcmalloc': [ |
373 'UNKNOWN', # http://crbug.com/98589 | 379 'UNKNOWN', # http://crbug.com/98589 |
374 ], | 380 ], |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 option_parser.add_option('--ignore-suppressions', | 542 option_parser.add_option('--ignore-suppressions', |
537 action='store_true', | 543 action='store_true', |
538 default=False, | 544 default=False, |
539 help='Ignore path-specific license whitelist.') | 545 help='Ignore path-specific license whitelist.') |
540 options, args = option_parser.parse_args() | 546 options, args = option_parser.parse_args() |
541 return check_licenses(options, args) | 547 return check_licenses(options, args) |
542 | 548 |
543 | 549 |
544 if '__main__' == __name__: | 550 if '__main__' == __name__: |
545 sys.exit(main()) | 551 sys.exit(main()) |
OLD | NEW |