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

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

Issue 8159001: Update third_party/psutil and fix the licence issue with it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove the suppression and unnecessary files. Created 9 years, 2 months 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 | « third_party/psutil/test/test_psutil.py ('k') | 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/python 1 #!/usr/bin/python
2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2011 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 ], 303 ],
304 'third_party/ocmock/OCMock': [ 304 'third_party/ocmock/OCMock': [
305 'UNKNOWN', 305 'UNKNOWN',
306 ], 306 ],
307 'third_party/ply/__init__.py': [ 307 'third_party/ply/__init__.py': [
308 'UNKNOWN', 308 'UNKNOWN',
309 ], 309 ],
310 'third_party/protobuf': [ 310 'third_party/protobuf': [
311 'UNKNOWN', 311 'UNKNOWN',
312 ], 312 ],
313 'third_party/psutil': [
314 'UNKNOWN',
315 ],
316 'third_party/pyftpdlib/src': [ 313 'third_party/pyftpdlib/src': [
317 'UNKNOWN', 314 'UNKNOWN',
318 ], 315 ],
319 'third_party/pylib': [ 316 'third_party/pylib': [
320 'UNKNOWN', 317 'UNKNOWN',
321 ], 318 ],
322 'third_party/scons-2.0.1/engine/SCons': [ 319 'third_party/scons-2.0.1/engine/SCons': [
323 'UNKNOWN', 320 'UNKNOWN',
324 ], 321 ],
325 'third_party/simplejson': [ 322 'third_party/simplejson': [
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 'to "../.." relative to the script file, which ' 503 'to "../.." relative to the script file, which '
507 'will normally be the repository root.') 504 'will normally be the repository root.')
508 option_parser.add_option('-v', '--verbose', action='store_true', 505 option_parser.add_option('-v', '--verbose', action='store_true',
509 default=False, help='Print debug logging') 506 default=False, help='Print debug logging')
510 option_parser.add_option('--ignore-suppressions', 507 option_parser.add_option('--ignore-suppressions',
511 action='store_true', 508 action='store_true',
512 default=False, 509 default=False,
513 help='Ignore path-specific license whitelist.') 510 help='Ignore path-specific license whitelist.')
514 options, args = option_parser.parse_args() 511 options, args = option_parser.parse_args()
515 main(options, args) 512 main(options, args)
OLDNEW
« no previous file with comments | « third_party/psutil/test/test_psutil.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698