Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Side by Side Diff: tools/checklicenses/checklicenses.py

Issue 106413003: Whitelist chromite/third_party/poster. It's MIT licensed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698