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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 ], | 253 ], |
254 'third_party/molokocacao': [ # http://crbug.com/98453 | 254 'third_party/molokocacao': [ # http://crbug.com/98453 |
255 'UNKNOWN', | 255 'UNKNOWN', |
256 ], | 256 ], |
257 'third_party/npapi/npspy': [ | 257 'third_party/npapi/npspy': [ |
258 'UNKNOWN', | 258 'UNKNOWN', |
259 ], | 259 ], |
260 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 | 260 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 |
261 'UNKNOWN', | 261 'UNKNOWN', |
262 ], | 262 ], |
| 263 'third_party/pdfium': [ # http://crbug.com/374943 |
| 264 'UNKNOWN', |
| 265 ], |
263 'third_party/ply/__init__.py': [ | 266 'third_party/ply/__init__.py': [ |
264 'UNKNOWN', | 267 'UNKNOWN', |
265 ], | 268 ], |
266 'third_party/protobuf': [ # http://crbug.com/98455 | 269 'third_party/protobuf': [ # http://crbug.com/98455 |
267 'UNKNOWN', | 270 'UNKNOWN', |
268 ], | 271 ], |
269 | 272 |
270 # http://crbug.com/222831 | 273 # http://crbug.com/222831 |
271 # https://bitbucket.org/eliben/pyelftools/issue/12 | 274 # https://bitbucket.org/eliben/pyelftools/issue/12 |
272 'third_party/pyelftools': [ | 275 'third_party/pyelftools': [ |
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
494 option_parser.add_option('--ignore-suppressions', | 497 option_parser.add_option('--ignore-suppressions', |
495 action='store_true', | 498 action='store_true', |
496 default=False, | 499 default=False, |
497 help='Ignore path-specific license whitelist.') | 500 help='Ignore path-specific license whitelist.') |
498 options, args = option_parser.parse_args() | 501 options, args = option_parser.parse_args() |
499 return check_licenses(options, args) | 502 return check_licenses(options, args) |
500 | 503 |
501 | 504 |
502 if '__main__' == __name__: | 505 if '__main__' == __name__: |
503 sys.exit(main()) | 506 sys.exit(main()) |
OLD | NEW |