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

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

Issue 664773004: Followup from https://codereview.chromium.org/672513002/ to fix checklicenses again. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« 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 json 9 import json
10 import optparse 10 import optparse
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
393 'UNKNOWN', 393 'UNKNOWN',
394 ], 394 ],
395 'tools/stats_viewer/Properties/AssemblyInfo.cs': [ 395 'tools/stats_viewer/Properties/AssemblyInfo.cs': [
396 'UNKNOWN', 396 'UNKNOWN',
397 ], 397 ],
398 'tools/symsrc/pefile.py': [ 398 'tools/symsrc/pefile.py': [
399 'UNKNOWN', 399 'UNKNOWN',
400 ], 400 ],
401 # Not shipped, downloaded on trybots sometimes. 401 # Not shipped, downloaded on trybots sometimes.
402 'tools/telemetry/third_party/gsutil': [ 402 'tools/telemetry/third_party/gsutil': [
403 'BSD MIT/X11 (BSD like)',
403 'UNKNOWN', 404 'UNKNOWN',
404 ], 405 ],
405 'tools/telemetry/third_party/pyserial': [ 406 'tools/telemetry/third_party/pyserial': [
406 # https://sourceforge.net/p/pyserial/feature-requests/35/ 407 # https://sourceforge.net/p/pyserial/feature-requests/35/
407 'UNKNOWN', 408 'UNKNOWN',
408 ], 409 ],
409 'v8/test/cctest': [ # http://crbug.com/98597 410 'v8/test/cctest': [ # http://crbug.com/98597
410 'UNKNOWN', 411 'UNKNOWN',
411 ], 412 ],
412 'v8/src/third_party/kernel/tools/perf/util/jitdump.h': [ # http://crbug.com /391716 413 'v8/src/third_party/kernel/tools/perf/util/jitdump.h': [ # http://crbug.com /391716
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
538 action='store_true', 539 action='store_true',
539 default=False, 540 default=False,
540 help='Ignore path-specific license whitelist.') 541 help='Ignore path-specific license whitelist.')
541 option_parser.add_option('--json', help='Path to JSON output file') 542 option_parser.add_option('--json', help='Path to JSON output file')
542 options, args = option_parser.parse_args() 543 options, args = option_parser.parse_args()
543 return check_licenses(options, args) 544 return check_licenses(options, args)
544 545
545 546
546 if '__main__' == __name__: 547 if '__main__' == __name__:
547 sys.exit(main()) 548 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