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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 169 # http://crbug.com/333508 | 169 # http://crbug.com/333508 |
| 170 'buildtools/clang_format/script': [ | 170 'buildtools/clang_format/script': [ |
| 171 'UNKNOWN', | 171 'UNKNOWN', |
| 172 ], | 172 ], |
| 173 | 173 |
| 174 # https://mail.python.org/pipermail/cython-devel/2014-July/004062.html | 174 # https://mail.python.org/pipermail/cython-devel/2014-July/004062.html |
| 175 'third_party/cython': [ | 175 'third_party/cython': [ |
| 176 'UNKNOWN', | 176 'UNKNOWN', |
| 177 ], | 177 ], |
| 178 | 178 |
| 179 'third_party/decklink': [ # http://crbug.com/408534 | |
|
Paweł Hajdan Jr.
2014/09/08 09:53:31
This needs to be an *upstream* bug report about ad
mcasas
2014/09/08 21:16:10
Done in licensecheck.pl, thanks!
| |
| 180 'UNKNOWN', | |
| 181 ], | |
| 179 'third_party/devscripts': [ | 182 'third_party/devscripts': [ |
| 180 'GPL (v2 or later)', | 183 'GPL (v2 or later)', |
| 181 ], | 184 ], |
| 182 'third_party/expat/files/lib': [ # http://crbug.com/98121 | 185 'third_party/expat/files/lib': [ # http://crbug.com/98121 |
| 183 'UNKNOWN', | 186 'UNKNOWN', |
| 184 ], | 187 ], |
| 185 'third_party/ffmpeg': [ | 188 'third_party/ffmpeg': [ |
| 186 'GPL', | 189 'GPL', |
| 187 'GPL (v2)', | 190 'GPL (v2)', |
| 188 'GPL (v2 or later)', | 191 'GPL (v2 or later)', |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 526 action='store_true', | 529 action='store_true', |
| 527 default=False, | 530 default=False, |
| 528 help='Ignore path-specific license whitelist.') | 531 help='Ignore path-specific license whitelist.') |
| 529 option_parser.add_option('--json', help='Path to JSON output file') | 532 option_parser.add_option('--json', help='Path to JSON output file') |
| 530 options, args = option_parser.parse_args() | 533 options, args = option_parser.parse_args() |
| 531 return check_licenses(options, args) | 534 return check_licenses(options, args) |
| 532 | 535 |
| 533 | 536 |
| 534 if '__main__' == __name__: | 537 if '__main__' == __name__: |
| 535 sys.exit(main()) | 538 sys.exit(main()) |
| OLD | NEW |