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