| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'third_party/bzip2': [ | 179 'third_party/bzip2': [ |
| 180 'UNKNOWN', | 180 'UNKNOWN', |
| 181 ], | 181 ], |
| 182 | 182 |
| 183 # http://crbug.com/222828 | 183 # http://crbug.com/222828 |
| 184 # http://bugs.python.org/issue17514 | 184 # http://bugs.python.org/issue17514 |
| 185 'third_party/chromite/third_party/argparse.py': [ | 185 'third_party/chromite/third_party/argparse.py': [ |
| 186 'UNKNOWN', | 186 'UNKNOWN', |
| 187 ], | 187 ], |
| 188 | 188 |
| 189 'third_party/cld/encodings/compact_lang_det': [ # http://crbug.com/98120 | |
| 190 'UNKNOWN', | |
| 191 ], | |
| 192 # Not used. http://crbug.com/156020 | 189 # Not used. http://crbug.com/156020 |
| 193 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. | 190 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. |
| 194 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ | 191 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ |
| 195 'UNKNOWN', | 192 'UNKNOWN', |
| 196 ], | 193 ], |
| 197 # Included in the source tree but not built. http://crbug.com/156020 | 194 # Included in the source tree but not built. http://crbug.com/156020 |
| 198 'third_party/cros_dbus_cplusplus/source/examples': [ | 195 'third_party/cros_dbus_cplusplus/source/examples': [ |
| 199 'UNKNOWN', | 196 'UNKNOWN', |
| 200 ], | 197 ], |
| 201 'third_party/devscripts': [ | 198 'third_party/devscripts': [ |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 538 option_parser.add_option('--ignore-suppressions', | 535 option_parser.add_option('--ignore-suppressions', |
| 539 action='store_true', | 536 action='store_true', |
| 540 default=False, | 537 default=False, |
| 541 help='Ignore path-specific license whitelist.') | 538 help='Ignore path-specific license whitelist.') |
| 542 options, args = option_parser.parse_args() | 539 options, args = option_parser.parse_args() |
| 543 return check_licenses(options, args) | 540 return check_licenses(options, args) |
| 544 | 541 |
| 545 | 542 |
| 546 if '__main__' == __name__: | 543 if '__main__' == __name__: |
| 547 sys.exit(main()) | 544 sys.exit(main()) |
| OLD | NEW |