| 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 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 | 183 |
| 184 'third_party/bsdiff/mbsdiff.cc': [ | 184 'third_party/bsdiff/mbsdiff.cc': [ |
| 185 'UNKNOWN', | 185 'UNKNOWN', |
| 186 ], | 186 ], |
| 187 'third_party/bzip2': [ | 187 'third_party/bzip2': [ |
| 188 'UNKNOWN', | 188 'UNKNOWN', |
| 189 ], | 189 ], |
| 190 'third_party/cld/encodings/compact_lang_det': [ # http://crbug.com/98120 | 190 'third_party/cld/encodings/compact_lang_det': [ # http://crbug.com/98120 |
| 191 'UNKNOWN', | 191 'UNKNOWN', |
| 192 ], | 192 ], |
| 193 # Not used. http://crbug.com/156020 |
| 194 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. |
| 195 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ |
| 196 'UNKNOWN', |
| 197 ], |
| 198 # Included in the source tree but not built. http://crbug.com/156020 |
| 199 'third_party/cros_dbus_cplusplus/source/examples': [ |
| 200 'UNKNOWN', |
| 201 ], |
| 193 'third_party/devscripts': [ | 202 'third_party/devscripts': [ |
| 194 'GPL (v2 or later)', | 203 'GPL (v2 or later)', |
| 195 ], | 204 ], |
| 196 'third_party/expat/files/lib': [ # http://crbug.com/98121 | 205 'third_party/expat/files/lib': [ # http://crbug.com/98121 |
| 197 'UNKNOWN', | 206 'UNKNOWN', |
| 198 ], | 207 ], |
| 199 'third_party/ffmpeg': [ | 208 'third_party/ffmpeg': [ |
| 200 'GPL', | 209 'GPL', |
| 201 'GPL (v2)', | 210 'GPL (v2)', |
| 202 'GPL (v2 or later)', | 211 'GPL (v2 or later)', |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 option_parser.add_option('--ignore-suppressions', | 520 option_parser.add_option('--ignore-suppressions', |
| 512 action='store_true', | 521 action='store_true', |
| 513 default=False, | 522 default=False, |
| 514 help='Ignore path-specific license whitelist.') | 523 help='Ignore path-specific license whitelist.') |
| 515 options, args = option_parser.parse_args() | 524 options, args = option_parser.parse_args() |
| 516 return check_licenses(options, args) | 525 return check_licenses(options, args) |
| 517 | 526 |
| 518 | 527 |
| 519 if '__main__' == __name__: | 528 if '__main__' == __name__: |
| 520 sys.exit(main()) | 529 sys.exit(main()) |
| OLD | NEW |