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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
320 ], | 320 ], |
321 'third_party/psutil': [ | 321 'third_party/psutil': [ |
322 'UNKNOWN', | 322 'UNKNOWN', |
323 ], | 323 ], |
324 'third_party/pyftpdlib/src': [ | 324 'third_party/pyftpdlib/src': [ |
325 'UNKNOWN', | 325 'UNKNOWN', |
326 ], | 326 ], |
327 'third_party/pylib': [ | 327 'third_party/pylib': [ |
328 'UNKNOWN', | 328 'UNKNOWN', |
329 ], | 329 ], |
330 'third_party/qcms': [ | |
331 'UNKNOWN', | |
332 ], | |
333 'third_party/scons-2.0.1/engine/SCons': [ | 330 'third_party/scons-2.0.1/engine/SCons': [ |
334 'UNKNOWN', | 331 'UNKNOWN', |
335 ], | 332 ], |
336 'third_party/simplejson': [ | 333 'third_party/simplejson': [ |
337 'UNKNOWN', | 334 'UNKNOWN', |
338 ], | 335 ], |
339 'third_party/skia': [ | 336 'third_party/skia': [ |
340 'UNKNOWN', | 337 'UNKNOWN', |
341 ], | 338 ], |
342 'third_party/snappy/src': [ | 339 'third_party/snappy/src': [ |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
523 'to "../.." relative to the script file, which ' | 520 'to "../.." relative to the script file, which ' |
524 'will normally be the repository root.') | 521 'will normally be the repository root.') |
525 option_parser.add_option('-v', '--verbose', action='store_true', | 522 option_parser.add_option('-v', '--verbose', action='store_true', |
526 default=False, help='Print debug logging') | 523 default=False, help='Print debug logging') |
527 option_parser.add_option('--ignore-suppressions', | 524 option_parser.add_option('--ignore-suppressions', |
528 action='store_true', | 525 action='store_true', |
529 default=False, | 526 default=False, |
530 help='Ignore path-specific license whitelist.') | 527 help='Ignore path-specific license whitelist.') |
531 options, args = option_parser.parse_args() | 528 options, args = option_parser.parse_args() |
532 main(options, args) | 529 main(options, args) |
OLD | NEW |