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 # 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 Loading... | |
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()) |
OLD | NEW |