| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 ], | 308 ], |
| 309 'third_party/npapi/npspy': [ | 309 'third_party/npapi/npspy': [ |
| 310 'UNKNOWN', | 310 'UNKNOWN', |
| 311 ], | 311 ], |
| 312 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 | 312 'third_party/ocmock/OCMock': [ # http://crbug.com/98454 |
| 313 'UNKNOWN', | 313 'UNKNOWN', |
| 314 ], | 314 ], |
| 315 'third_party/ply/__init__.py': [ | 315 'third_party/ply/__init__.py': [ |
| 316 'UNKNOWN', | 316 'UNKNOWN', |
| 317 ], | 317 ], |
| 318 'third_party/pexpect': [ # http://crbug.com/156113 |
| 319 'UNKNOWN', |
| 320 ], |
| 318 'third_party/protobuf': [ # http://crbug.com/98455 | 321 'third_party/protobuf': [ # http://crbug.com/98455 |
| 319 'UNKNOWN', | 322 'UNKNOWN', |
| 320 ], | 323 ], |
| 321 'third_party/pylib': [ | 324 'third_party/pylib': [ |
| 322 'UNKNOWN', | 325 'UNKNOWN', |
| 323 ], | 326 ], |
| 324 'third_party/scons-2.0.1/engine/SCons': [ # http://crbug.com/98462 | 327 'third_party/scons-2.0.1/engine/SCons': [ # http://crbug.com/98462 |
| 325 'UNKNOWN', | 328 'UNKNOWN', |
| 326 ], | 329 ], |
| 327 'third_party/simplejson': [ | 330 'third_party/simplejson': [ |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 511 option_parser.add_option('--ignore-suppressions', | 514 option_parser.add_option('--ignore-suppressions', |
| 512 action='store_true', | 515 action='store_true', |
| 513 default=False, | 516 default=False, |
| 514 help='Ignore path-specific license whitelist.') | 517 help='Ignore path-specific license whitelist.') |
| 515 options, args = option_parser.parse_args() | 518 options, args = option_parser.parse_args() |
| 516 return check_licenses(options, args) | 519 return check_licenses(options, args) |
| 517 | 520 |
| 518 | 521 |
| 519 if '__main__' == __name__: | 522 if '__main__' == __name__: |
| 520 sys.exit(main()) | 523 sys.exit(main()) |
| OLD | NEW |