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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 'third_party/iccjpeg': [ # http://crbug.com/98137 | 210 'third_party/iccjpeg': [ # http://crbug.com/98137 |
211 'UNKNOWN', | 211 'UNKNOWN', |
212 ], | 212 ], |
213 'third_party/icu': [ # http://crbug.com/98301 | 213 'third_party/icu': [ # http://crbug.com/98301 |
214 'UNKNOWN', | 214 'UNKNOWN', |
215 ], | 215 ], |
216 'third_party/jsoncpp/source': [ | 216 'third_party/jsoncpp/source': [ |
217 # https://github.com/open-source-parsers/jsoncpp/issues/234 | 217 # https://github.com/open-source-parsers/jsoncpp/issues/234 |
218 'UNKNOWN', | 218 'UNKNOWN', |
219 ], | 219 ], |
| 220 'third_party/junit/src': [ |
| 221 # https://github.com/junit-team/junit/issues/1132 |
| 222 'UNKNOWN', |
| 223 ], |
220 'third_party/lcov': [ # http://crbug.com/98304 | 224 'third_party/lcov': [ # http://crbug.com/98304 |
221 'UNKNOWN', | 225 'UNKNOWN', |
222 ], | 226 ], |
223 'third_party/lcov/contrib/galaxy/genflat.pl': [ | 227 'third_party/lcov/contrib/galaxy/genflat.pl': [ |
224 'GPL (v2 or later)', | 228 'GPL (v2 or later)', |
225 ], | 229 ], |
226 'third_party/libevent': [ # http://crbug.com/98309 | 230 'third_party/libevent': [ # http://crbug.com/98309 |
227 'UNKNOWN', | 231 'UNKNOWN', |
228 ], | 232 ], |
229 'third_party/libjingle/source/talk': [ # http://crbug.com/98310 | 233 'third_party/libjingle/source/talk': [ # http://crbug.com/98310 |
(...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
551 action='store_true', | 555 action='store_true', |
552 default=False, | 556 default=False, |
553 help='Ignore path-specific license whitelist.') | 557 help='Ignore path-specific license whitelist.') |
554 option_parser.add_option('--json', help='Path to JSON output file') | 558 option_parser.add_option('--json', help='Path to JSON output file') |
555 options, args = option_parser.parse_args() | 559 options, args = option_parser.parse_args() |
556 return check_licenses(options, args) | 560 return check_licenses(options, args) |
557 | 561 |
558 | 562 |
559 if '__main__' == __name__: | 563 if '__main__' == __name__: |
560 sys.exit(main()) | 564 sys.exit(main()) |
OLD | NEW |