| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 ], | 354 ], |
| 355 'third_party/skia': [ # http://crbug.com/98463 | 355 'third_party/skia': [ # http://crbug.com/98463 |
| 356 'UNKNOWN', | 356 'UNKNOWN', |
| 357 ], | 357 ], |
| 358 'third_party/snappy/src': [ # http://crbug.com/98464 | 358 'third_party/snappy/src': [ # http://crbug.com/98464 |
| 359 'UNKNOWN', | 359 'UNKNOWN', |
| 360 ], | 360 ], |
| 361 'third_party/smhasher/src': [ # http://crbug.com/98465 | 361 'third_party/smhasher/src': [ # http://crbug.com/98465 |
| 362 'UNKNOWN', | 362 'UNKNOWN', |
| 363 ], | 363 ], |
| 364 'third_party/speech-dispatcher/libspeechd.h': [ |
| 365 'GPL (v2 or later)', |
| 366 ], |
| 364 'third_party/sqlite': [ | 367 'third_party/sqlite': [ |
| 365 'UNKNOWN', | 368 'UNKNOWN', |
| 366 ], | 369 ], |
| 367 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585 | 370 'third_party/swig/Lib/linkruntime.c': [ # http://crbug.com/98585 |
| 368 'UNKNOWN', | 371 'UNKNOWN', |
| 369 ], | 372 ], |
| 370 'third_party/talloc': [ | 373 'third_party/talloc': [ |
| 371 'GPL (v3 or later)', | 374 'GPL (v3 or later)', |
| 372 'UNKNOWN', # http://crbug.com/98588 | 375 'UNKNOWN', # http://crbug.com/98588 |
| 373 ], | 376 ], |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 option_parser.add_option('--ignore-suppressions', | 541 option_parser.add_option('--ignore-suppressions', |
| 539 action='store_true', | 542 action='store_true', |
| 540 default=False, | 543 default=False, |
| 541 help='Ignore path-specific license whitelist.') | 544 help='Ignore path-specific license whitelist.') |
| 542 options, args = option_parser.parse_args() | 545 options, args = option_parser.parse_args() |
| 543 return check_licenses(options, args) | 546 return check_licenses(options, args) |
| 544 | 547 |
| 545 | 548 |
| 546 if '__main__' == __name__: | 549 if '__main__' == __name__: |
| 547 sys.exit(main()) | 550 sys.exit(main()) |
| OLD | NEW |