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 optparse | 9 import optparse |
10 import os.path | 10 import os.path |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
231 ], | 231 ], |
232 'third_party/iccjpeg': [ # http://crbug.com/98137 | 232 'third_party/iccjpeg': [ # http://crbug.com/98137 |
233 'UNKNOWN', | 233 'UNKNOWN', |
234 ], | 234 ], |
235 'third_party/icu': [ # http://crbug.com/98301 | 235 'third_party/icu': [ # http://crbug.com/98301 |
236 'UNKNOWN', | 236 'UNKNOWN', |
237 ], | 237 ], |
238 'third_party/jemalloc': [ # http://crbug.com/98302 | 238 'third_party/jemalloc': [ # http://crbug.com/98302 |
239 'UNKNOWN', | 239 'UNKNOWN', |
240 ], | 240 ], |
241 'third_party/JSON': [ | |
242 'UNKNOWN', | |
Paweł Hajdan Jr.
2013/06/05 03:04:23
New files should have this resolved. The file has
Lei Zhang
2013/06/05 03:08:57
Not all files being checked in have the license th
Nils Barth (inactive)
2013/06/07 09:10:13
To follow up:
adding 'Perl' in general, and 'UNKNO
| |
243 ], | |
241 'third_party/lcov': [ # http://crbug.com/98304 | 244 'third_party/lcov': [ # http://crbug.com/98304 |
242 'UNKNOWN', | 245 'UNKNOWN', |
243 ], | 246 ], |
244 'third_party/lcov/contrib/galaxy/genflat.pl': [ | 247 'third_party/lcov/contrib/galaxy/genflat.pl': [ |
245 'GPL (v2 or later)', | 248 'GPL (v2 or later)', |
246 ], | 249 ], |
247 'third_party/lcov-1.9/contrib/galaxy/genflat.pl': [ | 250 'third_party/lcov-1.9/contrib/galaxy/genflat.pl': [ |
248 'GPL (v2 or later)', | 251 'GPL (v2 or later)', |
249 ], | 252 ], |
250 'third_party/libevent': [ # http://crbug.com/98309 | 253 'third_party/libevent': [ # http://crbug.com/98309 |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
374 'third_party/talloc': [ | 377 'third_party/talloc': [ |
375 'GPL (v3 or later)', | 378 'GPL (v3 or later)', |
376 'UNKNOWN', # http://crbug.com/98588 | 379 'UNKNOWN', # http://crbug.com/98588 |
377 ], | 380 ], |
378 'third_party/tcmalloc': [ | 381 'third_party/tcmalloc': [ |
379 'UNKNOWN', # http://crbug.com/98589 | 382 'UNKNOWN', # http://crbug.com/98589 |
380 ], | 383 ], |
381 'third_party/tlslite': [ | 384 'third_party/tlslite': [ |
382 'UNKNOWN', | 385 'UNKNOWN', |
383 ], | 386 ], |
387 'third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/autoinstalled': [ | |
Paweł Hajdan Jr.
2013/06/05 03:04:23
Why is it here? I don't see this patch having anyt
| |
388 'GPL (v2 or later)', | |
389 ], | |
384 'third_party/webdriver': [ # http://crbug.com/98590 | 390 'third_party/webdriver': [ # http://crbug.com/98590 |
385 'UNKNOWN', | 391 'UNKNOWN', |
386 ], | 392 ], |
387 'third_party/webrtc': [ # http://crbug.com/98592 | 393 'third_party/webrtc': [ # http://crbug.com/98592 |
388 'UNKNOWN', | 394 'UNKNOWN', |
389 ], | 395 ], |
390 'third_party/xdg-utils': [ # http://crbug.com/98593 | 396 'third_party/xdg-utils': [ # http://crbug.com/98593 |
391 'UNKNOWN', | 397 'UNKNOWN', |
392 ], | 398 ], |
393 'third_party/yasm/source': [ # http://crbug.com/98594 | 399 'third_party/yasm/source': [ # http://crbug.com/98594 |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
542 option_parser.add_option('--ignore-suppressions', | 548 option_parser.add_option('--ignore-suppressions', |
543 action='store_true', | 549 action='store_true', |
544 default=False, | 550 default=False, |
545 help='Ignore path-specific license whitelist.') | 551 help='Ignore path-specific license whitelist.') |
546 options, args = option_parser.parse_args() | 552 options, args = option_parser.parse_args() |
547 return check_licenses(options, args) | 553 return check_licenses(options, args) |
548 | 554 |
549 | 555 |
550 if '__main__' == __name__: | 556 if '__main__' == __name__: |
551 sys.exit(main()) | 557 sys.exit(main()) |
OLD | NEW |