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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'ppapi/lib/gl/include': [ | 163 'ppapi/lib/gl/include': [ |
164 'UNKNOWN', | 164 'UNKNOWN', |
165 ], | 165 ], |
166 'ppapi/native_client/tests/earth/earth_image.inc': [ | 166 'ppapi/native_client/tests/earth/earth_image.inc': [ |
167 'UNKNOWN', | 167 'UNKNOWN', |
168 ], | 168 ], |
169 | 169 |
170 'third_party/WebKit': [ | 170 'third_party/WebKit': [ |
171 'UNKNOWN', | 171 'UNKNOWN', |
172 ], | 172 ], |
| 173 'third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/autoinstalled/pylint/t
est/' |
| 174 'unittest_pyreverse_writer.py': [ |
| 175 'GPL (v2 or later)', |
| 176 ], |
173 'third_party/WebKit/Websites/webkit.org/blog/wp-content/plugins/' | 177 'third_party/WebKit/Websites/webkit.org/blog/wp-content/plugins/' |
174 'akismet/akismet.php': [ | 178 'akismet/akismet.php': [ |
175 'GPL (v2 or later)' | 179 'GPL (v2 or later)' |
176 ], | 180 ], |
177 'third_party/WebKit/Source/JavaScriptCore/tests/mozilla': [ | 181 'third_party/WebKit/Source/JavaScriptCore/tests/mozilla': [ |
178 'GPL', | 182 'GPL', |
179 'GPL (v2 or later)', | 183 'GPL (v2 or later)', |
180 'GPL (unversioned/unknown version)', | 184 'GPL (unversioned/unknown version)', |
181 ], | 185 ], |
182 'third_party/active_doc': [ # http://crbug.com/98113 | 186 'third_party/active_doc': [ # http://crbug.com/98113 |
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
539 option_parser.add_option('--ignore-suppressions', | 543 option_parser.add_option('--ignore-suppressions', |
540 action='store_true', | 544 action='store_true', |
541 default=False, | 545 default=False, |
542 help='Ignore path-specific license whitelist.') | 546 help='Ignore path-specific license whitelist.') |
543 options, args = option_parser.parse_args() | 547 options, args = option_parser.parse_args() |
544 return check_licenses(options, args) | 548 return check_licenses(options, args) |
545 | 549 |
546 | 550 |
547 if '__main__' == __name__: | 551 if '__main__' == __name__: |
548 sys.exit(main()) | 552 sys.exit(main()) |
OLD | NEW |