Chromium Code Reviews| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 231 ], | 231 ], |
| 232 'third_party/hunspell': [ # http://crbug.com/98134 | 232 'third_party/hunspell': [ # http://crbug.com/98134 |
| 233 'UNKNOWN', | 233 'UNKNOWN', |
| 234 ], | 234 ], |
| 235 'third_party/iccjpeg': [ # http://crbug.com/98137 | 235 'third_party/iccjpeg': [ # http://crbug.com/98137 |
| 236 'UNKNOWN', | 236 'UNKNOWN', |
| 237 ], | 237 ], |
| 238 'third_party/icu': [ # http://crbug.com/98301 | 238 'third_party/icu': [ # http://crbug.com/98301 |
| 239 'UNKNOWN', | 239 'UNKNOWN', |
| 240 ], | 240 ], |
| 241 'third_party/jsoncpp': [ | |
| 242 'MIT license' | |
|
Paweł Hajdan Jr.
2011/10/21 06:53:30
nit: I think this should say "MIT/X11 (BSD like)",
Ronghua
2011/10/21 19:04:06
Done.
| |
| 243 ], | |
| 241 'third_party/jemalloc': [ # http://crbug.com/98302 | 244 'third_party/jemalloc': [ # http://crbug.com/98302 |
| 242 'UNKNOWN', | 245 'UNKNOWN', |
| 243 ], | 246 ], |
| 244 'third_party/lcov': [ # http://crbug.com/98304 | 247 'third_party/lcov': [ # http://crbug.com/98304 |
| 245 'UNKNOWN', | 248 'UNKNOWN', |
| 246 ], | 249 ], |
| 247 'third_party/lcov/contrib/galaxy/genflat.pl': [ | 250 'third_party/lcov/contrib/galaxy/genflat.pl': [ |
| 248 'GPL (v2 or later)', | 251 'GPL (v2 or later)', |
| 249 ], | 252 ], |
| 250 'third_party/lcov-1.9/contrib/galaxy/genflat.pl': [ | 253 'third_party/lcov-1.9/contrib/galaxy/genflat.pl': [ |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 513 'to "../.." relative to the script file, which ' | 516 'to "../.." relative to the script file, which ' |
| 514 'will normally be the repository root.') | 517 'will normally be the repository root.') |
| 515 option_parser.add_option('-v', '--verbose', action='store_true', | 518 option_parser.add_option('-v', '--verbose', action='store_true', |
| 516 default=False, help='Print debug logging') | 519 default=False, help='Print debug logging') |
| 517 option_parser.add_option('--ignore-suppressions', | 520 option_parser.add_option('--ignore-suppressions', |
| 518 action='store_true', | 521 action='store_true', |
| 519 default=False, | 522 default=False, |
| 520 help='Ignore path-specific license whitelist.') | 523 help='Ignore path-specific license whitelist.') |
| 521 options, args = option_parser.parse_args() | 524 options, args = option_parser.parse_args() |
| 522 main(options, args) | 525 main(options, args) |
| OLD | NEW |