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 json | 9 import json |
| 10 import optparse | 10 import optparse |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 177 | 177 |
| 178 'third_party/WebKit': [ | 178 'third_party/WebKit': [ |
| 179 'UNKNOWN', | 179 'UNKNOWN', |
| 180 ], | 180 ], |
| 181 | 181 |
| 182 # http://code.google.com/p/angleproject/issues/detail?id=217 | 182 # http://code.google.com/p/angleproject/issues/detail?id=217 |
| 183 'third_party/angle': [ | 183 'third_party/angle': [ |
| 184 'UNKNOWN', | 184 'UNKNOWN', |
| 185 ], | 185 ], |
| 186 | 186 |
| 187 # http://crbug.com/603946 | |
|
Lei Zhang
2016/04/15 20:51:31
https://github.com/google/oauth2client/issues/331
stevenjb
2016/04/15 21:15:39
Thanks!
| |
| 188 # Just imports googleapiclient. Chromite is not shipped. | |
| 189 'third_party/chromite/third_party/apiclient': [ | |
| 190 'UNKNOWN', | |
| 191 ], | |
| 192 | |
| 193 # http://crbug.com/603946 | |
|
Lei Zhang
2016/04/15 20:56:58
I believe upstream is https://github.com/google/go
stevenjb
2016/04/15 21:15:39
Done.
| |
| 194 # Apache (v2.0) license. Chromite is not shipped. | |
| 195 'third_party/chromite/third_party/googleapiclient/channel.py': [ | |
| 196 'UNKNOWN', | |
| 197 ], | |
| 198 | |
| 187 # http://crbug.com/222828 | 199 # http://crbug.com/222828 |
| 188 # http://bugs.python.org/issue17514 | 200 # http://bugs.python.org/issue17514 |
| 189 'third_party/chromite/third_party/argparse.py': [ | 201 'third_party/chromite/third_party/argparse.py': [ |
| 190 'UNKNOWN', | 202 'UNKNOWN', |
| 191 ], | 203 ], |
| 192 | 204 |
| 205 # http://crbug.com/603939 | |
|
Lei Zhang
2016/04/15 20:51:31
https://github.com/jcgregorio/httplib2/issues/307
stevenjb
2016/04/15 21:15:39
Acknowledged.
| |
| 206 # MIT license. Chromite is not shipped. | |
| 207 'third_party/chromite/third_party/httplib2': [ | |
| 208 'UNKNOWN', | |
| 209 ], | |
| 210 | |
| 193 # http://crbug.com/326117 | 211 # http://crbug.com/326117 |
| 194 # https://bitbucket.org/chrisatlee/poster/issue/21 | 212 # https://bitbucket.org/chrisatlee/poster/issue/21 |
| 195 'third_party/chromite/third_party/poster': [ | 213 'third_party/chromite/third_party/poster': [ |
| 196 'UNKNOWN', | 214 'UNKNOWN', |
| 197 ], | 215 ], |
| 198 | 216 |
| 217 # http://crbug.com/603944 | |
|
Lei Zhang
2016/04/15 20:56:58
Already filed at https://github.com/kennethreitz/r
stevenjb
2016/04/15 21:15:39
Acknowledged.
| |
| 218 # Apache (v2.0) license. Chromite is not shipped | |
| 219 'third_party/chromite/third_party/requests': [ | |
| 220 'UNKNOWN', | |
| 221 ], | |
| 222 | |
| 199 # http://crbug.com/333508 | 223 # http://crbug.com/333508 |
| 200 'buildtools/clang_format/script': [ | 224 'buildtools/clang_format/script': [ |
| 201 'UNKNOWN', | 225 'UNKNOWN', |
| 202 ], | 226 ], |
| 203 | 227 |
| 204 # https://mail.python.org/pipermail/cython-devel/2014-July/004062.html | 228 # https://mail.python.org/pipermail/cython-devel/2014-July/004062.html |
| 205 'third_party/cython': [ | 229 'third_party/cython': [ |
| 206 'UNKNOWN', | 230 'UNKNOWN', |
| 207 ], | 231 ], |
| 208 | 232 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 490 # New BSD license. http://crbug.com/98455 | 514 # New BSD license. http://crbug.com/98455 |
| 491 'tools/swarming_client/third_party/google': [ | 515 'tools/swarming_client/third_party/google': [ |
| 492 'UNKNOWN', | 516 'UNKNOWN', |
| 493 ], | 517 ], |
| 494 | 518 |
| 495 # Apache v2.0. | 519 # Apache v2.0. |
| 496 'tools/swarming_client/third_party/googleapiclient': [ | 520 'tools/swarming_client/third_party/googleapiclient': [ |
| 497 'UNKNOWN', | 521 'UNKNOWN', |
| 498 ], | 522 ], |
| 499 | 523 |
| 500 # http://crbug.com/334668 | 524 # http://crbug.com/334668 |
|
Lei Zhang
2016/04/15 20:51:31
Ditto, https://github.com/jcgregorio/httplib2/issu
stevenjb
2016/04/15 21:15:39
Done.
| |
| 501 # MIT license. | 525 # MIT license. |
| 502 'tools/swarming_client/third_party/httplib2': [ | 526 'tools/swarming_client/third_party/httplib2': [ |
| 503 'UNKNOWN', | 527 'UNKNOWN', |
| 504 ], | 528 ], |
| 505 | 529 |
| 506 # http://crbug.com/334668 | 530 # http://crbug.com/334668 |
| 507 # Apache v2.0. | 531 # Apache v2.0. |
| 508 'tools/swarming_client/third_party/oauth2client': [ | 532 'tools/swarming_client/third_party/oauth2client': [ |
| 509 'UNKNOWN', | 533 'UNKNOWN', |
| 510 ], | 534 ], |
| (...skipping 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 755 action='store_true', | 779 action='store_true', |
| 756 default=False, | 780 default=False, |
| 757 help='Ignore path-specific license whitelist.') | 781 help='Ignore path-specific license whitelist.') |
| 758 option_parser.add_option('--json', help='Path to JSON output file') | 782 option_parser.add_option('--json', help='Path to JSON output file') |
| 759 options, args = option_parser.parse_args() | 783 options, args = option_parser.parse_args() |
| 760 return check_licenses(options, args) | 784 return check_licenses(options, args) |
| 761 | 785 |
| 762 | 786 |
| 763 if '__main__' == __name__: | 787 if '__main__' == __name__: |
| 764 sys.exit(main()) | 788 sys.exit(main()) |
| OLD | NEW |