| 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 json | 9 import json |
| 10 import optparse | 10 import optparse |
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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()) |
| OLD | NEW |