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