Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: tools/checklicenses/checklicenses.py

Issue 2224093002: Revert of Adding SwiftShader to the DEPS file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 # consistent license headers. Also, this is just used in a utility 169 # consistent license headers. Also, this is just used in a utility
170 # and not shipped. https://github.com/waylan/Python-Markdown/issues/435 170 # and not shipped. https://github.com/waylan/Python-Markdown/issues/435
171 'third_party/Python-Markdown': [ 171 'third_party/Python-Markdown': [
172 'UNKNOWN', 172 'UNKNOWN',
173 ], 173 ],
174 174
175 'third_party/WebKit': [ 175 'third_party/WebKit': [
176 'UNKNOWN', 176 'UNKNOWN',
177 ], 177 ],
178 178
179 # https://bugs.chromium.org/p/swiftshader/issues/detail?id=1
180 'third_party/swiftshader': [
181 'UNKNOWN',
182 ],
183
184 # http://code.google.com/p/angleproject/issues/detail?id=217 179 # http://code.google.com/p/angleproject/issues/detail?id=217
185 'third_party/angle': [ 180 'third_party/angle': [
186 'UNKNOWN', 181 'UNKNOWN',
187 ], 182 ],
188 183
189 # http://crbug.com/603946 184 # http://crbug.com/603946
190 # https://github.com/google/oauth2client/issues/331 185 # https://github.com/google/oauth2client/issues/331
191 # Just imports googleapiclient. Chromite is not shipped. 186 # Just imports googleapiclient. Chromite is not shipped.
192 'third_party/chromite/third_party/apiclient': [ 187 'third_party/chromite/third_party/apiclient': [
193 'UNKNOWN', 188 'UNKNOWN',
(...skipping 589 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 action='store_true', 778 action='store_true',
784 default=False, 779 default=False,
785 help='Ignore path-specific license whitelist.') 780 help='Ignore path-specific license whitelist.')
786 option_parser.add_option('--json', help='Path to JSON output file') 781 option_parser.add_option('--json', help='Path to JSON output file')
787 options, args = option_parser.parse_args() 782 options, args = option_parser.parse_args()
788 return check_licenses(options, args) 783 return check_licenses(options, args)
789 784
790 785
791 if '__main__' == __name__: 786 if '__main__' == __name__:
792 sys.exit(main()) 787 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698