Chromium Code Reviews| 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 json | 9 import json |
| 10 import optparse | 10 import optparse |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 419 'third_party/modp_b64': [ | 419 'third_party/modp_b64': [ |
| 420 'UNKNOWN', | 420 'UNKNOWN', |
| 421 ], | 421 ], |
| 422 # Missing license headers in openh264 sources: https://github.com/cisco/open h264/issues/2233 | 422 # Missing license headers in openh264 sources: https://github.com/cisco/open h264/issues/2233 |
| 423 'third_party/openh264/src': [ | 423 'third_party/openh264/src': [ |
| 424 'UNKNOWN', | 424 'UNKNOWN', |
| 425 ], | 425 ], |
| 426 'third_party/openmax_dl/dl' : [ | 426 'third_party/openmax_dl/dl' : [ |
| 427 'Khronos Group', | 427 'Khronos Group', |
| 428 ], | 428 ], |
| 429 'third_party/opus' : [ # https://trac.xiph.org/ticket/2253#ticket | |
|
Paweł Hajdan Jr.
2016/01/28 16:51:55
Is this limited to just autogen.sh? Please narrow
flim-chromium
2016/01/29 11:33:38
Done.
| |
| 430 'UNKNOWN', | |
| 431 ], | |
| 429 'third_party/boringssl': [ | 432 'third_party/boringssl': [ |
| 430 # There are some files in BoringSSL which came from OpenSSL and have no | 433 # There are some files in BoringSSL which came from OpenSSL and have no |
| 431 # license in them. We don't wish to add the license header ourselves | 434 # license in them. We don't wish to add the license header ourselves |
| 432 # thus we don't expect to pass license checks. | 435 # thus we don't expect to pass license checks. |
| 433 'UNKNOWN', | 436 'UNKNOWN', |
| 434 ], | 437 ], |
| 435 'third_party/molokocacao': [ # http://crbug.com/98453 | 438 'third_party/molokocacao': [ # http://crbug.com/98453 |
| 436 'UNKNOWN', | 439 'UNKNOWN', |
| 437 ], | 440 ], |
| 438 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 | 441 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 |
| (...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 719 action='store_true', | 722 action='store_true', |
| 720 default=False, | 723 default=False, |
| 721 help='Ignore path-specific license whitelist.') | 724 help='Ignore path-specific license whitelist.') |
| 722 option_parser.add_option('--json', help='Path to JSON output file') | 725 option_parser.add_option('--json', help='Path to JSON output file') |
| 723 options, args = option_parser.parse_args() | 726 options, args = option_parser.parse_args() |
| 724 return check_licenses(options, args) | 727 return check_licenses(options, args) |
| 725 | 728 |
| 726 | 729 |
| 727 if '__main__' == __name__: | 730 if '__main__' == __name__: |
| 728 sys.exit(main()) | 731 sys.exit(main()) |
| OLD | NEW |