| 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 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 391 ], | 391 ], |
| 392 'tools/python/google/__init__.py': [ | 392 'tools/python/google/__init__.py': [ |
| 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. |
| 402 'tools/telemetry/third_party/gsutil': [ |
| 403 'UNKNOWN', |
| 404 ], |
| 401 'tools/telemetry/third_party/pyserial': [ | 405 'tools/telemetry/third_party/pyserial': [ |
| 402 # https://sourceforge.net/p/pyserial/feature-requests/35/ | 406 # https://sourceforge.net/p/pyserial/feature-requests/35/ |
| 403 'UNKNOWN', | 407 'UNKNOWN', |
| 404 ], | 408 ], |
| 405 'v8/test/cctest': [ # http://crbug.com/98597 | 409 'v8/test/cctest': [ # http://crbug.com/98597 |
| 406 'UNKNOWN', | 410 'UNKNOWN', |
| 407 ], | 411 ], |
| 408 'v8/src/third_party/kernel/tools/perf/util/jitdump.h': [ # http://crbug.com
/391716 | 412 'v8/src/third_party/kernel/tools/perf/util/jitdump.h': [ # http://crbug.com
/391716 |
| 409 'UNKNOWN', | 413 'UNKNOWN', |
| 410 ], | 414 ], |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 534 action='store_true', | 538 action='store_true', |
| 535 default=False, | 539 default=False, |
| 536 help='Ignore path-specific license whitelist.') | 540 help='Ignore path-specific license whitelist.') |
| 537 option_parser.add_option('--json', help='Path to JSON output file') | 541 option_parser.add_option('--json', help='Path to JSON output file') |
| 538 options, args = option_parser.parse_args() | 542 options, args = option_parser.parse_args() |
| 539 return check_licenses(options, args) | 543 return check_licenses(options, args) |
| 540 | 544 |
| 541 | 545 |
| 542 if '__main__' == __name__: | 546 if '__main__' == __name__: |
| 543 sys.exit(main()) | 547 sys.exit(main()) |
| OLD | NEW |