| 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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 ], | 204 ], |
| 205 'third_party/icu': [ # http://crbug.com/98301 | 205 'third_party/icu': [ # http://crbug.com/98301 |
| 206 'UNKNOWN', | 206 'UNKNOWN', |
| 207 ], | 207 ], |
| 208 'third_party/lcov': [ # http://crbug.com/98304 | 208 'third_party/lcov': [ # http://crbug.com/98304 |
| 209 'UNKNOWN', | 209 'UNKNOWN', |
| 210 ], | 210 ], |
| 211 'third_party/lcov/contrib/galaxy/genflat.pl': [ | 211 'third_party/lcov/contrib/galaxy/genflat.pl': [ |
| 212 'GPL (v2 or later)', | 212 'GPL (v2 or later)', |
| 213 ], | 213 ], |
| 214 'third_party/libc++/trunk/include/support/solaris': [ | |
| 215 # http://llvm.org/bugs/show_bug.cgi?id=18291 | |
| 216 'UNKNOWN', | |
| 217 ], | |
| 218 'third_party/libc++/trunk/src/support/solaris/xlocale.c': [ | |
| 219 # http://llvm.org/bugs/show_bug.cgi?id=18291 | |
| 220 'UNKNOWN', | |
| 221 ], | |
| 222 'third_party/libc++/trunk/test': [ | 214 'third_party/libc++/trunk/test': [ |
| 223 # http://llvm.org/bugs/show_bug.cgi?id=18291 | 215 # http://llvm.org/bugs/show_bug.cgi?id=18291 |
| 224 'UNKNOWN', | 216 'UNKNOWN', |
| 225 ], | 217 ], |
| 226 'third_party/libevent': [ # http://crbug.com/98309 | 218 'third_party/libevent': [ # http://crbug.com/98309 |
| 227 'UNKNOWN', | 219 'UNKNOWN', |
| 228 ], | 220 ], |
| 229 'third_party/libjingle/source/talk': [ # http://crbug.com/98310 | 221 'third_party/libjingle/source/talk': [ # http://crbug.com/98310 |
| 230 'UNKNOWN', | 222 'UNKNOWN', |
| 231 ], | 223 ], |
| (...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 action='store_true', | 534 action='store_true', |
| 543 default=False, | 535 default=False, |
| 544 help='Ignore path-specific license whitelist.') | 536 help='Ignore path-specific license whitelist.') |
| 545 option_parser.add_option('--json', help='Path to JSON output file') | 537 option_parser.add_option('--json', help='Path to JSON output file') |
| 546 options, args = option_parser.parse_args() | 538 options, args = option_parser.parse_args() |
| 547 return check_licenses(options, args) | 539 return check_licenses(options, args) |
| 548 | 540 |
| 549 | 541 |
| 550 if '__main__' == __name__: | 542 if '__main__' == __name__: |
| 551 sys.exit(main()) | 543 sys.exit(main()) |
| OLD | NEW |