| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 ], | 303 ], |
| 304 'third_party/ocmock/OCMock': [ | 304 'third_party/ocmock/OCMock': [ |
| 305 'UNKNOWN', | 305 'UNKNOWN', |
| 306 ], | 306 ], |
| 307 'third_party/ply/__init__.py': [ | 307 'third_party/ply/__init__.py': [ |
| 308 'UNKNOWN', | 308 'UNKNOWN', |
| 309 ], | 309 ], |
| 310 'third_party/protobuf': [ | 310 'third_party/protobuf': [ |
| 311 'UNKNOWN', | 311 'UNKNOWN', |
| 312 ], | 312 ], |
| 313 'third_party/psutil': [ | |
| 314 'UNKNOWN', | |
| 315 ], | |
| 316 'third_party/pyftpdlib/src': [ | 313 'third_party/pyftpdlib/src': [ |
| 317 'UNKNOWN', | 314 'UNKNOWN', |
| 318 ], | 315 ], |
| 319 'third_party/pylib': [ | 316 'third_party/pylib': [ |
| 320 'UNKNOWN', | 317 'UNKNOWN', |
| 321 ], | 318 ], |
| 322 'third_party/scons-2.0.1/engine/SCons': [ | 319 'third_party/scons-2.0.1/engine/SCons': [ |
| 323 'UNKNOWN', | 320 'UNKNOWN', |
| 324 ], | 321 ], |
| 325 'third_party/simplejson': [ | 322 'third_party/simplejson': [ |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 'to "../.." relative to the script file, which ' | 503 'to "../.." relative to the script file, which ' |
| 507 'will normally be the repository root.') | 504 'will normally be the repository root.') |
| 508 option_parser.add_option('-v', '--verbose', action='store_true', | 505 option_parser.add_option('-v', '--verbose', action='store_true', |
| 509 default=False, help='Print debug logging') | 506 default=False, help='Print debug logging') |
| 510 option_parser.add_option('--ignore-suppressions', | 507 option_parser.add_option('--ignore-suppressions', |
| 511 action='store_true', | 508 action='store_true', |
| 512 default=False, | 509 default=False, |
| 513 help='Ignore path-specific license whitelist.') | 510 help='Ignore path-specific license whitelist.') |
| 514 options, args = option_parser.parse_args() | 511 options, args = option_parser.parse_args() |
| 515 main(options, args) | 512 main(options, args) |
| OLD | NEW |