| 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 'third_party/chromite/third_party/argparse.py': [ | 158 'third_party/chromite/third_party/argparse.py': [ |
| 159 'UNKNOWN', | 159 'UNKNOWN', |
| 160 ], | 160 ], |
| 161 | 161 |
| 162 # http://crbug.com/326117 | 162 # http://crbug.com/326117 |
| 163 # https://bitbucket.org/chrisatlee/poster/issue/21 | 163 # https://bitbucket.org/chrisatlee/poster/issue/21 |
| 164 'third_party/chromite/third_party/poster': [ | 164 'third_party/chromite/third_party/poster': [ |
| 165 'UNKNOWN', | 165 'UNKNOWN', |
| 166 ], | 166 ], |
| 167 | 167 |
| 168 # http://crbug.com/333508 | |
| 169 'third_party/clang_format/scripts': [ | |
| 170 'UNKNOWN', | |
| 171 ], | |
| 172 | |
| 173 # Not used. http://crbug.com/156020 | 168 # Not used. http://crbug.com/156020 |
| 174 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. | 169 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. |
| 175 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ | 170 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ |
| 176 'UNKNOWN', | 171 'UNKNOWN', |
| 177 ], | 172 ], |
| 178 # Included in the source tree but not built. http://crbug.com/156020 | 173 # Included in the source tree but not built. http://crbug.com/156020 |
| 179 'third_party/cros_dbus_cplusplus/source/examples': [ | 174 'third_party/cros_dbus_cplusplus/source/examples': [ |
| 180 'UNKNOWN', | 175 'UNKNOWN', |
| 181 ], | 176 ], |
| 182 'third_party/devscripts': [ | 177 'third_party/devscripts': [ |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 524 option_parser.add_option('--ignore-suppressions', | 519 option_parser.add_option('--ignore-suppressions', |
| 525 action='store_true', | 520 action='store_true', |
| 526 default=False, | 521 default=False, |
| 527 help='Ignore path-specific license whitelist.') | 522 help='Ignore path-specific license whitelist.') |
| 528 options, args = option_parser.parse_args() | 523 options, args = option_parser.parse_args() |
| 529 return check_licenses(options, args) | 524 return check_licenses(options, args) |
| 530 | 525 |
| 531 | 526 |
| 532 if '__main__' == __name__: | 527 if '__main__' == __name__: |
| 533 sys.exit(main()) | 528 sys.exit(main()) |
| OLD | NEW |