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

Side by Side Diff: android_webview/tools/webview_licenses.py

Issue 62663002: [Android WebView] Relax license parsing for BSD (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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/python 1 #!/usr/bin/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 """Checks third-party licenses for the purposes of the Android WebView build. 6 """Checks third-party licenses for the purposes of the Android WebView build.
7 7
8 The Android tree includes a snapshot of Chromium in order to power the system 8 The Android tree includes a snapshot of Chromium in order to power the system
9 WebView. This tool checks that all code uses open-source licenses compatible 9 WebView. This tool checks that all code uses open-source licenses compatible
10 with Android, and that we meet the requirements of those licenses. It can also 10 with Android, and that we meet the requirements of those licenses. It can also
(...skipping 23 matching lines...) Expand all
34 34
35 def GetIncompatibleDirectories(): 35 def GetIncompatibleDirectories():
36 """Gets a list of third-party directories which use licenses incompatible 36 """Gets a list of third-party directories which use licenses incompatible
37 with Android. This is used by the snapshot tool. 37 with Android. This is used by the snapshot tool.
38 Returns: 38 Returns:
39 A list of directories. 39 A list of directories.
40 """ 40 """
41 41
42 whitelist = [ 42 whitelist = [
43 'Apache( Version)? 2(\.0)?', 43 'Apache( Version)? 2(\.0)?',
44 '(New )?BSD( [23]-Clause)?( with advertising clause)?', 44 '(New )?([23]-Clause )?BSD( [23]-Clause)?( with advertising clause)?',
45 'L?GPL ?v?2(\.[01])?( or later)?', 45 'L?GPL ?v?2(\.[01])?( or later)?',
46 'MIT(/X11)?(-like)?', 46 'MIT(/X11)?(-like)?',
47 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1', 47 'MPL 1\.1 ?/ ?GPL 2(\.0)? ?/ ?LGPL 2\.1',
48 'MPL 2(\.0)?', 48 'MPL 2(\.0)?',
49 'Microsoft Limited Public License', 49 'Microsoft Limited Public License',
50 'Microsoft Permissive License', 50 'Microsoft Permissive License',
51 'Public Domain', 51 'Public Domain',
52 'SGI Free Software License B', 52 'SGI Free Software License B',
53 'X11', 53 'X11',
54 ] 54 ]
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 return scan_result 282 return scan_result
283 elif args[0] == 'notice': 283 elif args[0] == 'notice':
284 print GenerateNoticeFile() 284 print GenerateNoticeFile()
285 return ScanResult.Ok 285 return ScanResult.Ok
286 286
287 parser.print_help() 287 parser.print_help()
288 return ScanResult.Errors 288 return ScanResult.Errors
289 289
290 if __name__ == '__main__': 290 if __name__ == '__main__':
291 sys.exit(main()) 291 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698