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 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
380 'third_party/fontconfig': [ | 380 'third_party/fontconfig': [ |
381 # https://bugs.freedesktop.org/show_bug.cgi?id=73401 | 381 # https://bugs.freedesktop.org/show_bug.cgi?id=73401 |
382 'UNKNOWN', | 382 'UNKNOWN', |
383 ], | 383 ], |
384 'third_party/freetype2': [ # http://crbug.com/177319 | 384 'third_party/freetype2': [ # http://crbug.com/177319 |
385 'UNKNOWN', | 385 'UNKNOWN', |
386 ], | 386 ], |
387 'third_party/freetype-android': [ # http://crbug.com/177319 | 387 'third_party/freetype-android': [ # http://crbug.com/177319 |
388 'UNKNOWN', | 388 'UNKNOWN', |
389 ], | 389 ], |
390 'third_party/grpc': [ # http://crbug.com/620837 | |
Paweł Hajdan Jr.
2016/06/17 09:48:26
Please file an upstream bug and link to the upstre
| |
391 'UNKNOWN', | |
392 ], | |
390 'third_party/hunspell': [ # http://crbug.com/98134 | 393 'third_party/hunspell': [ # http://crbug.com/98134 |
391 'UNKNOWN', | 394 'UNKNOWN', |
392 ], | 395 ], |
393 'third_party/iccjpeg': [ # http://crbug.com/98137 | 396 'third_party/iccjpeg': [ # http://crbug.com/98137 |
394 'UNKNOWN', | 397 'UNKNOWN', |
395 ], | 398 ], |
396 'third_party/icu': [ # http://crbug.com/98301 | 399 'third_party/icu': [ # http://crbug.com/98301 |
397 'UNKNOWN', | 400 'UNKNOWN', |
398 ], | 401 ], |
399 'third_party/jmake': [ # Used only at build time. | 402 'third_party/jmake': [ # Used only at build time. |
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
780 action='store_true', | 783 action='store_true', |
781 default=False, | 784 default=False, |
782 help='Ignore path-specific license whitelist.') | 785 help='Ignore path-specific license whitelist.') |
783 option_parser.add_option('--json', help='Path to JSON output file') | 786 option_parser.add_option('--json', help='Path to JSON output file') |
784 options, args = option_parser.parse_args() | 787 options, args = option_parser.parse_args() |
785 return check_licenses(options, args) | 788 return check_licenses(options, args) |
786 | 789 |
787 | 790 |
788 if '__main__' == __name__: | 791 if '__main__' == __name__: |
789 sys.exit(main()) | 792 sys.exit(main()) |
OLD | NEW |