Chromium Code Reviews| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 138 'GPL (v3 or later)', | 138 'GPL (v3 or later)', |
| 139 ], | 139 ], |
| 140 'net/tools/spdyshark': [ | 140 'net/tools/spdyshark': [ |
| 141 'GPL (v2 or later)', | 141 'GPL (v2 or later)', |
| 142 'UNKNOWN', | 142 'UNKNOWN', |
| 143 ], | 143 ], |
| 144 'third_party/WebKit': [ | 144 'third_party/WebKit': [ |
| 145 'UNKNOWN', | 145 'UNKNOWN', |
| 146 ], | 146 ], |
| 147 | 147 |
| 148 # https://code.google.com/p/appengine-gcs-client/issues/detail?id=31 | |
|
Paweł Hajdan Jr.
2014/02/07 21:57:13
This is a Google project. Could you give it a try
| |
| 149 'third_party/google_appengine_cloudstorage': [ | |
| 150 'UNKNOWN', | |
| 151 ], | |
| 152 | |
| 148 # http://code.google.com/p/angleproject/issues/detail?id=217 | 153 # http://code.google.com/p/angleproject/issues/detail?id=217 |
| 149 'third_party/angle': [ | 154 'third_party/angle': [ |
| 150 'UNKNOWN', | 155 'UNKNOWN', |
| 151 ], | 156 ], |
| 152 | 157 |
| 153 # http://crbug.com/222828 | 158 # http://crbug.com/222828 |
| 154 # http://bugs.python.org/issue17514 | 159 # http://bugs.python.org/issue17514 |
| 155 'third_party/chromite/third_party/argparse.py': [ | 160 'third_party/chromite/third_party/argparse.py': [ |
| 156 'UNKNOWN', | 161 'UNKNOWN', |
| 157 ], | 162 ], |
| (...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 536 option_parser.add_option('--ignore-suppressions', | 541 option_parser.add_option('--ignore-suppressions', |
| 537 action='store_true', | 542 action='store_true', |
| 538 default=False, | 543 default=False, |
| 539 help='Ignore path-specific license whitelist.') | 544 help='Ignore path-specific license whitelist.') |
| 540 options, args = option_parser.parse_args() | 545 options, args = option_parser.parse_args() |
| 541 return check_licenses(options, args) | 546 return check_licenses(options, args) |
| 542 | 547 |
| 543 | 548 |
| 544 if '__main__' == __name__: | 549 if '__main__' == __name__: |
| 545 sys.exit(main()) | 550 sys.exit(main()) |
| OLD | NEW |