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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 'third_party/angle': [ | 150 'third_party/angle': [ |
151 'UNKNOWN', | 151 'UNKNOWN', |
152 ], | 152 ], |
153 | 153 |
154 # http://crbug.com/222828 | 154 # http://crbug.com/222828 |
155 # http://bugs.python.org/issue17514 | 155 # http://bugs.python.org/issue17514 |
156 'third_party/chromite/third_party/argparse.py': [ | 156 'third_party/chromite/third_party/argparse.py': [ |
157 'UNKNOWN', | 157 'UNKNOWN', |
158 ], | 158 ], |
159 | 159 |
| 160 # http://crbug.com/326117 |
| 161 # https://bitbucket.org/chrisatlee/poster/issue/21 |
| 162 'third_party/chromite/third_party/poster': [ |
| 163 'UNKNOWN', |
| 164 ], |
| 165 |
160 # Not used. http://crbug.com/156020 | 166 # Not used. http://crbug.com/156020 |
161 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. | 167 # Using third_party/cros_dbus_cplusplus/cros_dbus_cplusplus.gyp instead. |
162 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ | 168 'third_party/cros_dbus_cplusplus/source/autogen.sh': [ |
163 'UNKNOWN', | 169 'UNKNOWN', |
164 ], | 170 ], |
165 # Included in the source tree but not built. http://crbug.com/156020 | 171 # Included in the source tree but not built. http://crbug.com/156020 |
166 'third_party/cros_dbus_cplusplus/source/examples': [ | 172 'third_party/cros_dbus_cplusplus/source/examples': [ |
167 'UNKNOWN', | 173 'UNKNOWN', |
168 ], | 174 ], |
169 'third_party/devscripts': [ | 175 'third_party/devscripts': [ |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 option_parser.add_option('--ignore-suppressions', | 497 option_parser.add_option('--ignore-suppressions', |
492 action='store_true', | 498 action='store_true', |
493 default=False, | 499 default=False, |
494 help='Ignore path-specific license whitelist.') | 500 help='Ignore path-specific license whitelist.') |
495 options, args = option_parser.parse_args() | 501 options, args = option_parser.parse_args() |
496 return check_licenses(options, args) | 502 return check_licenses(options, args) |
497 | 503 |
498 | 504 |
499 if '__main__' == __name__: | 505 if '__main__' == __name__: |
500 sys.exit(main()) | 506 sys.exit(main()) |
OLD | NEW |