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

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

Issue 10905108: Add opus in third_party. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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/opus/opus.gyp ('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/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 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 ], 314 ],
315 'third_party/molokocacao/NSBezierPath+MCAdditions.h': [ # http://crbug.com/ 98453 315 'third_party/molokocacao/NSBezierPath+MCAdditions.h': [ # http://crbug.com/ 98453
316 'UNKNOWN', 316 'UNKNOWN',
317 ], 317 ],
318 'third_party/npapi/npspy': [ 318 'third_party/npapi/npspy': [
319 'UNKNOWN', 319 'UNKNOWN',
320 ], 320 ],
321 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 321 'third_party/ocmock/OCMock': [ # http://crbug.com/98454
322 'UNKNOWN', 322 'UNKNOWN',
323 ], 323 ],
324 'third_party/opus/src': [
Paweł Hajdan Jr. 2012/10/18 21:41:25 Please notify upstream about missing license heade
Sergey Ulanov 2012/10/18 23:42:02 Done. There is no public bugtracker for libopus th
325 'UNKNOWN',
326 ],
324 'third_party/ply/__init__.py': [ 327 'third_party/ply/__init__.py': [
325 'UNKNOWN', 328 'UNKNOWN',
326 ], 329 ],
327 'third_party/pexpect': [ # http://crbug.com/156113 330 'third_party/pexpect': [ # http://crbug.com/156113
328 'UNKNOWN', 331 'UNKNOWN',
329 ], 332 ],
330 'third_party/protobuf': [ # http://crbug.com/98455 333 'third_party/protobuf': [ # http://crbug.com/98455
331 'UNKNOWN', 334 'UNKNOWN',
332 ], 335 ],
333 'third_party/pylib': [ 336 'third_party/pylib': [
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
523 option_parser.add_option('--ignore-suppressions', 526 option_parser.add_option('--ignore-suppressions',
524 action='store_true', 527 action='store_true',
525 default=False, 528 default=False,
526 help='Ignore path-specific license whitelist.') 529 help='Ignore path-specific license whitelist.')
527 options, args = option_parser.parse_args() 530 options, args = option_parser.parse_args()
528 return check_licenses(options, args) 531 return check_licenses(options, args)
529 532
530 533
531 if '__main__' == __name__: 534 if '__main__' == __name__:
532 sys.exit(main()) 535 sys.exit(main())
OLDNEW
« no previous file with comments | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698