blob: f420110dde39b76b0f3d7724250d8d6ed9bc25d6 [file] [log] [blame]
Bob Badourb80dfee2021-01-07 03:34:31 +00001//
2// Copyright (C) 2020 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15
16package {
Bob Badourb545c5f2021-01-23 14:35:55 -080017 default_visibility: ["//visibility:public"],
18 default_applicable_licenses: ["Android-Apache-2.0"],
Bob Badourb80dfee2021-01-07 03:34:31 +000019}
20
Bob Badour45923712022-01-28 12:55:32 -080021filegroup {
22 name: "Apache-2.0-License-Text",
23 srcs: ["LICENSE"],
24}
25
Bob Badourb80dfee2021-01-07 03:34:31 +000026license {
Bob Badourb545c5f2021-01-23 14:35:55 -080027 name: "Android-Apache-2.0",
Bob Badour414719e2021-04-15 12:43:39 -070028 package_name: "Android",
Bob Badourb545c5f2021-01-23 14:35:55 -080029 license_kinds: ["SPDX-license-identifier-Apache-2.0"],
30 copyright_notice: "Copyright (C) The Android Open Source Project",
31 license_text: ["LICENSE"],
Bob Badourb80dfee2021-01-07 03:34:31 +000032}
33
34license_kind {
Douglas Anderson8b0b3822024-10-24 10:33:44 -070035 name: "BSD-Binary-Only",
36 conditions: [
37 "notice",
38 "by_exception_only",
39 "proprietary",
40 ],
41}
42
43// Deprecated. All users of the following license should be changed to
44// BSD-Binary-Only and it should be removed.
45license_kind {
Bob Badourbeb3f9a2022-07-25 18:35:58 -070046 name: "BSD-Like-Binary-Only",
47 conditions: [
48 "notice",
49 "by_exception_only",
50 "proprietary",
51 ],
52}
53
54license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -080055 name: "SPDX-license-identifier-0BSD",
Bob Badour59f08662022-09-23 16:29:34 -070056 conditions: ["permissive"],
Bob Badour7e3dbd92021-01-23 13:09:16 -080057 url: "https://spdx.org/licenses/0BSD",
58}
59
60license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080061 name: "SPDX-license-identifier-AFL-1.1",
62 conditions: ["by_exception_only"],
63 url: "https://spdx.org/licenses/AFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000064}
65
66license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080067 name: "SPDX-license-identifier-AFL-1.2",
68 conditions: ["by_exception_only"],
69 url: "https://spdx.org/licenses/AFL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000070}
71
72license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080073 name: "SPDX-license-identifier-AFL-2.0",
74 conditions: ["by_exception_only"],
75 url: "https://spdx.org/licenses/AFL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000076}
77
78license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080079 name: "SPDX-license-identifier-AFL-2.1",
80 conditions: ["notice"],
81 url: "https://spdx.org/licenses/AFL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000082}
83
84license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080085 name: "SPDX-license-identifier-AFL-3.0",
86 conditions: ["notice"],
87 url: "https://spdx.org/licenses/AFL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000088}
89
90license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -080091 name: "SPDX-license-identifier-AGPL",
92 conditions: [
93 "by_exception_only",
94 "not_allowed",
95 ],
96 url: "https://spdx.org/licenses/AGPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +000097}
98
99license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800100 name: "SPDX-license-identifier-AGPL-1.0",
101 conditions: [
102 "by_exception_only",
103 "not_allowed",
104 ],
105 url: "https://spdx.org/licenses/AGPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000106}
107
108license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800109 name: "SPDX-license-identifier-AGPL-1.0-only",
110 conditions: [
111 "by_exception_only",
112 "not_allowed",
113 ],
114 url: "https://spdx.org/licenses/AGPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000115}
116
117license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800118 name: "SPDX-license-identifier-AGPL-1.0-or-later",
119 conditions: [
120 "by_exception_only",
121 "not_allowed",
122 ],
123 url: "https://spdx.org/licenses/AGPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000124}
125
126license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800127 name: "SPDX-license-identifier-AGPL-3.0",
128 conditions: [
129 "by_exception_only",
130 "not_allowed",
131 ],
132 url: "https://spdx.org/licenses/AGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000133}
134
135license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800136 name: "SPDX-license-identifier-AGPL-3.0-only",
137 conditions: [
138 "by_exception_only",
139 "not_allowed",
140 ],
141 url: "https://spdx.org/licenses/AGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000142}
143
144license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800145 name: "SPDX-license-identifier-AGPL-3.0-or-later",
146 conditions: [
147 "by_exception_only",
148 "not_allowed",
149 ],
150 url: "https://spdx.org/licenses/AGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000151}
152
153license_kind {
Bob Badour304fe7f2021-01-27 16:51:36 -0800154 name: "SPDX-license-identifier-APSL-1.1",
155 conditions: [
156 "reciprocal",
157 ],
158 url: "https://spdx.org/licenses/APSL-1.1.html",
159}
160
161license_kind {
162 name: "SPDX-license-identifier-APSL-2.0",
163 conditions: [
164 "reciprocal",
165 ],
166 url: "https://spdx.org/licenses/APSL-2.0.html",
167}
168
169license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800170 name: "SPDX-license-identifier-Apache",
171 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000172}
173
174license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800175 name: "SPDX-license-identifier-Apache-1.0",
176 conditions: ["notice"],
177 url: "https://spdx.org/licenses/Apache-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000178}
179
180license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800181 name: "SPDX-license-identifier-Apache-1.1",
182 conditions: ["notice"],
183 url: "https://spdx.org/licenses/Apache-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000184}
185
186license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800187 name: "SPDX-license-identifier-Apache-2.0",
188 conditions: ["notice"],
189 url: "https://spdx.org/licenses/Apache-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000190}
191
192license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800193 name: "SPDX-license-identifier-Artistic",
194 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000195}
196
197license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800198 name: "SPDX-license-identifier-Artistic-1.0",
199 conditions: ["notice"],
200 url: "https://spdx.org/licenses/Artistic-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000201}
202
203license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800204 name: "SPDX-license-identifier-Artistic-1.0-Perl",
205 conditions: ["notice"],
206 url: "https://spdx.org/licenses/Artistic-1.0-Perl.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000207}
208
209license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800210 name: "SPDX-license-identifier-Artistic-1.0-cl8",
211 conditions: ["notice"],
212 url: "https://spdx.org/licenses/Artistic-1.0-cl8.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000213}
214
215license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800216 name: "SPDX-license-identifier-Artistic-2.0",
217 conditions: ["notice"],
218 url: "https://spdx.org/licenses/Artistic-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000219}
220
221license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800222 name: "SPDX-license-identifier-BSD",
223 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000224}
225
226license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800227 name: "SPDX-license-identifier-BSD-1-Clause",
228 conditions: ["notice"],
229 url: "https://spdx.org/licenses/BSD-1-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000230}
231
232license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800233 name: "SPDX-license-identifier-BSD-2-Clause",
234 conditions: ["notice"],
235 url: "https://spdx.org/licenses/BSD-2-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000236}
237
238license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800239 name: "SPDX-license-identifier-BSD-2-Clause-FreeBSD",
240 conditions: ["notice"],
241 url: "https://spdx.org/licenses/BSD-2-Clause-FreeBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000242}
243
244license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800245 name: "SPDX-license-identifier-BSD-2-Clause-NetBSD",
246 conditions: ["notice"],
247 url: "https://spdx.org/licenses/BSD-2-Clause-NetBSD.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000248}
249
250license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800251 name: "SPDX-license-identifier-BSD-2-Clause-Patent",
252 conditions: ["notice"],
253 url: "https://spdx.org/licenses/BSD-2-Clause-Patent.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000254}
255
256license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800257 name: "SPDX-license-identifier-BSD-3-Clause",
258 conditions: ["notice"],
259 url: "https://spdx.org/licenses/BSD-3-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000260}
261
262license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800263 name: "SPDX-license-identifier-BSD-3-Clause-Attribution",
264 conditions: ["notice"],
265 url: "https://spdx.org/licenses/BSD-3-Clause-Attribution.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000266}
267
268license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800269 name: "SPDX-license-identifier-BSD-3-Clause-Clear",
270 conditions: ["notice"],
271 url: "https://spdx.org/licenses/BSD-3-Clause-Clear.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000272}
273
274license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800275 name: "SPDX-license-identifier-BSD-3-Clause-LBNL",
276 conditions: ["notice"],
277 url: "https://spdx.org/licenses/BSD-3-Clause-LBNL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000278}
279
280license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800281 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License",
282 conditions: ["notice"],
283 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000284}
285
286license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800287 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-License-2014",
288 conditions: ["notice"],
289 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-License-2014.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000290}
291
292license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800293 name: "SPDX-license-identifier-BSD-3-Clause-No-Nuclear-Warranty",
294 conditions: ["notice"],
295 url: "https://spdx.org/licenses/BSD-3-Clause-No-Nuclear-Warranty.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000296}
297
298license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800299 name: "SPDX-license-identifier-BSD-3-Clause-Open-MPI",
300 conditions: ["notice"],
301 url: "https://spdx.org/licenses/BSD-3-Clause-Open-MPI.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000302}
303
304license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800305 name: "SPDX-license-identifier-BSD-4-Clause",
306 conditions: ["notice"],
307 url: "https://spdx.org/licenses/BSD-4-Clause.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000308}
309
310license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800311 name: "SPDX-license-identifier-BSD-4-Clause-UC",
312 conditions: ["notice"],
313 url: "https://spdx.org/licenses/BSD-4-Clause-UC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000314}
315
316license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800317 name: "SPDX-license-identifier-BSD-Protection",
318 conditions: ["notice"],
319 url: "https://spdx.org/licenses/BSD-Protection.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000320}
321
322license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800323 name: "SPDX-license-identifier-BSD-Source-Code",
324 conditions: ["notice"],
325 url: "https://spdx.org/licenses/BSD-Source-Code.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000326}
327
328license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800329 name: "SPDX-license-identifier-BSL-1.0",
330 conditions: ["notice"],
331 url: "https://spdx.org/licenses/BSL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000332}
333
334license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800335 name: "SPDX-license-identifier-Beerware",
Bob Badour7a105302021-02-02 12:08:28 -0800336 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800337 url: "https://spdx.org/licenses/Beerware.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000338}
339
340license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800341 name: "SPDX-license-identifier-CC-BY",
342 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000343}
344
345license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800346 name: "SPDX-license-identifier-CC-BY-1.0",
347 conditions: ["notice"],
348 url: "https://spdx.org/licenses/CC-BY-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000349}
350
351license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800352 name: "SPDX-license-identifier-CC-BY-2.0",
353 conditions: ["notice"],
354 url: "https://spdx.org/licenses/CC-BY-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000355}
356
357license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800358 name: "SPDX-license-identifier-CC-BY-2.5",
359 conditions: ["notice"],
360 url: "https://spdx.org/licenses/CC-BY-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000361}
362
363license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800364 name: "SPDX-license-identifier-CC-BY-3.0",
365 conditions: ["notice"],
366 url: "https://spdx.org/licenses/CC-BY-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000367}
368
369license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800370 name: "SPDX-license-identifier-CC-BY-4.0",
371 conditions: ["notice"],
372 url: "https://spdx.org/licenses/CC-BY-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000373}
374
375license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800376 name: "SPDX-license-identifier-CC-BY-NC",
377 conditions: [
378 "by_exception_only",
379 "not_allowed",
380 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000381}
382
383license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800384 name: "SPDX-license-identifier-CC-BY-NC-1.0",
385 conditions: [
386 "by_exception_only",
387 "not_allowed",
388 ],
389 url: "https://spdx.org/licenses/CC-BY-NC-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000390}
391
392license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800393 name: "SPDX-license-identifier-CC-BY-NC-2.0",
394 conditions: [
395 "by_exception_only",
396 "not_allowed",
397 ],
398 url: "https://spdx.org/licenses/CC-BY-NC-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000399}
400
401license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800402 name: "SPDX-license-identifier-CC-BY-NC-2.5",
403 conditions: [
404 "by_exception_only",
405 "not_allowed",
406 ],
407 url: "https://spdx.org/licenses/CC-BY-NC-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000408}
409
410license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800411 name: "SPDX-license-identifier-CC-BY-NC-3.0",
412 conditions: [
413 "by_exception_only",
414 "not_allowed",
415 ],
416 url: "https://spdx.org/licenses/CC-BY-NC-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000417}
418
419license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800420 name: "SPDX-license-identifier-CC-BY-NC-4.0",
421 conditions: [
422 "by_exception_only",
423 "not_allowed",
424 ],
425 url: "https://spdx.org/licenses/CC-BY-NC-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000426}
427
428license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800429 name: "SPDX-license-identifier-CC-BY-NC-ND-1.0",
430 conditions: [
431 "by_exception_only",
432 "not_allowed",
433 ],
434 url: "https://spdx.org/licenses/CC-BY-NC-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000435}
436
437license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800438 name: "SPDX-license-identifier-CC-BY-NC-ND-2.0",
439 conditions: [
440 "by_exception_only",
441 "not_allowed",
442 ],
443 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000444}
445
446license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800447 name: "SPDX-license-identifier-CC-BY-NC-ND-2.5",
448 conditions: [
449 "by_exception_only",
450 "not_allowed",
451 ],
452 url: "https://spdx.org/licenses/CC-BY-NC-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000453}
454
455license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800456 name: "SPDX-license-identifier-CC-BY-NC-ND-3.0",
457 conditions: [
458 "by_exception_only",
459 "not_allowed",
460 ],
461 url: "https://spdx.org/licenses/CC-BY-NC-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000462}
463
464license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800465 name: "SPDX-license-identifier-CC-BY-NC-ND-4.0",
466 conditions: [
467 "by_exception_only",
468 "not_allowed",
469 ],
470 url: "https://spdx.org/licenses/CC-BY-NC-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000471}
472
473license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800474 name: "SPDX-license-identifier-CC-BY-NC-SA-1.0",
475 conditions: [
476 "by_exception_only",
477 "not_allowed",
478 ],
479 url: "https://spdx.org/licenses/CC-BY-NC-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000480}
481
482license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800483 name: "SPDX-license-identifier-CC-BY-NC-SA-2.0",
484 conditions: [
485 "by_exception_only",
486 "not_allowed",
487 ],
488 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000489}
490
491license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800492 name: "SPDX-license-identifier-CC-BY-NC-SA-2.5",
493 conditions: [
494 "by_exception_only",
495 "not_allowed",
496 ],
497 url: "https://spdx.org/licenses/CC-BY-NC-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000498}
499
500license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800501 name: "SPDX-license-identifier-CC-BY-NC-SA-3.0",
502 conditions: [
503 "by_exception_only",
504 "not_allowed",
505 ],
506 url: "https://spdx.org/licenses/CC-BY-NC-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000507}
508
509license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800510 name: "SPDX-license-identifier-CC-BY-NC-SA-4.0",
511 conditions: [
512 "by_exception_only",
513 "not_allowed",
514 ],
515 url: "https://spdx.org/licenses/CC-BY-NC-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000516}
517
518license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800519 name: "SPDX-license-identifier-CC-BY-ND",
Bob Badourdf6099d2021-11-15 17:52:08 -0800520 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000521}
522
523license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800524 name: "SPDX-license-identifier-CC-BY-ND-1.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800525 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800526 url: "https://spdx.org/licenses/CC-BY-ND-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000527}
528
529license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800530 name: "SPDX-license-identifier-CC-BY-ND-2.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800531 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800532 url: "https://spdx.org/licenses/CC-BY-ND-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000533}
534
535license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800536 name: "SPDX-license-identifier-CC-BY-ND-2.5",
Bob Badourdf6099d2021-11-15 17:52:08 -0800537 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800538 url: "https://spdx.org/licenses/CC-BY-ND-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000539}
540
541license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800542 name: "SPDX-license-identifier-CC-BY-ND-3.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800543 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800544 url: "https://spdx.org/licenses/CC-BY-ND-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000545}
546
547license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800548 name: "SPDX-license-identifier-CC-BY-ND-4.0",
Bob Badourdf6099d2021-11-15 17:52:08 -0800549 conditions: ["by_exception_only"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800550 url: "https://spdx.org/licenses/CC-BY-ND-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000551}
552
553license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800554 name: "SPDX-license-identifier-CC-BY-SA",
555 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000556}
557
558license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800559 name: "SPDX-license-identifier-CC-BY-SA-1.0",
560 conditions: ["restricted"],
561 url: "https://spdx.org/licenses/CC-BY-SA-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000562}
563
564license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800565 name: "SPDX-license-identifier-CC-BY-SA-2.0",
566 conditions: ["restricted"],
567 url: "https://spdx.org/licenses/CC-BY-SA-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000568}
569
570license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800571 name: "SPDX-license-identifier-CC-BY-SA-2.5",
572 conditions: ["restricted"],
573 url: "https://spdx.org/licenses/CC-BY-SA-2.5.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000574}
575
576license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800577 name: "SPDX-license-identifier-CC-BY-SA-3.0",
578 conditions: ["restricted"],
579 url: "https://spdx.org/licenses/CC-BY-SA-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000580}
581
582license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800583 name: "SPDX-license-identifier-CC-BY-SA-4.0",
584 conditions: ["restricted"],
585 url: "https://spdx.org/licenses/CC-BY-SA-4.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000586}
587
588license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800589 name: "SPDX-license-identifier-CC-BY-SA-ND",
Bob Badourdf6099d2021-11-15 17:52:08 -0800590 conditions: [
591 "restricted",
592 "by_exception_only",
593 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000594}
595
596license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800597 name: "SPDX-license-identifier-CC0-1.0",
598 conditions: ["unencumbered"],
599 url: "https://spdx.org/licenses/CC0-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000600}
601
602license_kind {
Bob Badourf34e4412021-01-26 00:02:44 -0800603 name: "SPDX-license-identifier-CDDL",
604 conditions: ["reciprocal"],
605}
606
607license_kind {
608 name: "SPDX-license-identifier-CDDL-1.0",
609 conditions: ["reciprocal"],
610 url: "https://spdx.org/licenses/CDLL-1.0.html",
611}
612
613license_kind {
614 name: "SPDX-license-identifier-CDDL-1.1",
615 conditions: ["reciprocal"],
616 url: "https://spdx.org/licenses/CDLL-1.1.html",
617}
618
619license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800620 name: "SPDX-license-identifier-CPAL-1.0",
621 conditions: [
622 "by_exception_only",
623 "not_allowed",
624 ],
625 url: "https://spdx.org/licenses/CPAL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000626}
627
628license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800629 name: "SPDX-license-identifier-CPL-1.0",
630 conditions: ["reciprocal"],
631 url: "https://spdx.org/licenses/CPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000632}
633
634license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800635 name: "SPDX-license-identifier-EPL",
636 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000637}
638
639license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800640 name: "SPDX-license-identifier-EPL-1.0",
641 conditions: ["reciprocal"],
642 url: "https://spdx.org/licenses/EPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000643}
644
645license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800646 name: "SPDX-license-identifier-EPL-2.0",
647 conditions: ["reciprocal"],
648 url: "https://spdx.org/licenses/EPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000649}
650
651license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800652 name: "SPDX-license-identifier-EUPL",
653 conditions: [
654 "by_exception_only",
655 "not_allowed",
656 ],
Bob Badourb80dfee2021-01-07 03:34:31 +0000657}
658
659license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800660 name: "SPDX-license-identifier-EUPL-1.0",
661 conditions: [
662 "by_exception_only",
663 "not_allowed",
664 ],
665 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000666}
667
668license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800669 name: "SPDX-license-identifier-EUPL-1.1",
670 conditions: [
671 "by_exception_only",
672 "not_allowed",
673 ],
674 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000675}
676
677license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800678 name: "SPDX-license-identifier-EUPL-1.2",
679 conditions: [
680 "by_exception_only",
681 "not_allowed",
682 ],
683 url: "https://spdx.org/licenses/EUPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000684}
685
686license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800687 name: "SPDX-license-identifier-FSFAP",
688 conditions: ["notice"],
689 url: "https://spdx.org/licenses/FSFAP",
690}
691
692license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800693 name: "SPDX-license-identifier-FTL",
694 conditions: ["notice"],
695 url: "https://spdx.org/licenses/FTL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000696}
697
698license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -0800699 name: "SPDX-license-identifier-GFDL",
700 conditions: ["by_exception_only"],
701}
702
703license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800704 name: "SPDX-license-identifier-GPL",
705 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000706}
707
708license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800709 name: "SPDX-license-identifier-GPL-1.0",
710 conditions: ["restricted"],
711 url: "https://spdx.org/licenses/GPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000712}
713
714license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800715 name: "SPDX-license-identifier-GPL-1.0+",
716 conditions: ["restricted"],
717 url: "https://spdx.org/licenses/GPL-1.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000718}
719
720license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800721 name: "SPDX-license-identifier-GPL-1.0-only",
722 conditions: ["restricted"],
723 url: "https://spdx.org/licenses/GPL-1.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000724}
725
726license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800727 name: "SPDX-license-identifier-GPL-1.0-or-later",
728 conditions: ["restricted"],
729 url: "https://spdx.org/licenses/GPL-1.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000730}
731
732license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800733 name: "SPDX-license-identifier-GPL-2.0",
734 conditions: ["restricted"],
735 url: "https://spdx.org/licenses/GPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000736}
737
738license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800739 name: "SPDX-license-identifier-GPL-2.0+",
740 conditions: ["restricted"],
741 url: "https://spdx.org/licenses/GPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000742}
743
744license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800745 name: "SPDX-license-identifier-GPL-2.0-only",
746 conditions: ["restricted"],
747 url: "https://spdx.org/licenses/GPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000748}
749
750license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800751 name: "SPDX-license-identifier-GPL-2.0-or-later",
752 conditions: ["restricted"],
753 url: "https://spdx.org/licenses/GPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000754}
755
756license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800757 name: "SPDX-license-identifier-GPL-2.0-with-GCC-exception",
758 conditions: ["restricted"],
759 url: "https://spdx.org/licenses/GPL-2.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000760}
761
762license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800763 name: "SPDX-license-identifier-GPL-2.0-with-autoconf-exception",
764 conditions: ["restricted"],
765 url: "https://spdx.org/licenses/GPL-2.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000766}
767
768license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800769 name: "SPDX-license-identifier-GPL-2.0-with-bison-exception",
770 conditions: ["restricted"],
771 url: "https://spdx.org/licenses/GPL-2.0-with-bison-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000772}
773
774license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800775 name: "SPDX-license-identifier-GPL-2.0-with-classpath-exception",
Bob Badour4ea386a2022-09-20 12:21:19 -0700776 conditions: ["permissive"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800777 url: "https://spdx.org/licenses/GPL-2.0-with-classpath-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000778}
779
780license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800781 name: "SPDX-license-identifier-GPL-2.0-with-font-exception",
782 conditions: ["restricted"],
783 url: "https://spdx.org/licenses/GPL-2.0-with-font-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000784}
785
786license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800787 name: "SPDX-license-identifier-GPL-3.0",
788 conditions: ["restricted"],
789 url: "https://spdx.org/licenses/GPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000790}
791
792license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800793 name: "SPDX-license-identifier-GPL-3.0+",
794 conditions: ["restricted"],
795 url: "https://spdx.org/licenses/GPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000796}
797
798license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800799 name: "SPDX-license-identifier-GPL-3.0-only",
800 conditions: ["restricted"],
801 url: "https://spdx.org/licenses/GPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000802}
803
804license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800805 name: "SPDX-license-identifier-GPL-3.0-or-later",
806 conditions: ["restricted"],
807 url: "https://spdx.org/licenses/GPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000808}
809
810license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800811 name: "SPDX-license-identifier-GPL-3.0-with-GCC-exception",
812 conditions: ["restricted"],
813 url: "https://spdx.org/licenses/GPL-3.0-with-GCC-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000814}
815
816license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800817 name: "SPDX-license-identifier-GPL-3.0-with-autoconf-exception",
818 conditions: ["restricted"],
819 url: "https://spdx.org/licenses/GPL-3.0-with-autoconf-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000820}
821
822license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800823 name: "SPDX-license-identifier-GPL-with-classpath-exception",
Bob Badour4ea386a2022-09-20 12:21:19 -0700824 conditions: ["permissive"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000825}
826
827license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800828 name: "SPDX-license-identifier-HPND",
829 conditions: ["notice"],
830 url: "https://spdx.org/licenses/HPND.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000831}
832
833license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800834 name: "SPDX-license-identifier-ICU",
835 conditions: ["notice"],
836 url: "https://spdx.org/licenses/ICU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000837}
838
839license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800840 name: "SPDX-license-identifier-ISC",
841 conditions: ["notice"],
842 url: "https://spdx.org/licenses/ISC.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000843}
844
845license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800846 name: "SPDX-license-identifier-JSON",
847 conditions: ["notice"],
848 url: "https://spdx.org/licenses/JSON.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000849}
850
851license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800852 name: "SPDX-license-identifier-LGPL",
Bob Badour07c034b2022-11-22 12:07:29 -0800853 conditions: ["restricted_if_statically_linked"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000854}
855
856license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800857 name: "SPDX-license-identifier-LGPL-2.0",
Bob Badour07c034b2022-11-22 12:07:29 -0800858 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800859 url: "https://spdx.org/licenses/LGPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000860}
861
862license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800863 name: "SPDX-license-identifier-LGPL-2.0+",
Bob Badour07c034b2022-11-22 12:07:29 -0800864 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800865 url: "https://spdx.org/licenses/LGPL-2.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000866}
867
868license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800869 name: "SPDX-license-identifier-LGPL-2.0-only",
Bob Badour07c034b2022-11-22 12:07:29 -0800870 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800871 url: "https://spdx.org/licenses/LGPL-2.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000872}
873
874license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800875 name: "SPDX-license-identifier-LGPL-2.0-or-later",
Bob Badour07c034b2022-11-22 12:07:29 -0800876 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800877 url: "https://spdx.org/licenses/LGPL-2.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000878}
879
880license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800881 name: "SPDX-license-identifier-LGPL-2.1",
Bob Badour07c034b2022-11-22 12:07:29 -0800882 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800883 url: "https://spdx.org/licenses/LGPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000884}
885
886license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800887 name: "SPDX-license-identifier-LGPL-2.1+",
Bob Badour07c034b2022-11-22 12:07:29 -0800888 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800889 url: "https://spdx.org/licenses/LGPL-2.1+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000890}
891
892license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800893 name: "SPDX-license-identifier-LGPL-2.1-only",
Bob Badour07c034b2022-11-22 12:07:29 -0800894 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800895 url: "https://spdx.org/licenses/LGPL-2.1-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000896}
897
898license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800899 name: "SPDX-license-identifier-LGPL-2.1-or-later",
Bob Badour07c034b2022-11-22 12:07:29 -0800900 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800901 url: "https://spdx.org/licenses/LGPL-2.1-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000902}
903
904license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800905 name: "SPDX-license-identifier-LGPL-3.0",
Bob Badour07c034b2022-11-22 12:07:29 -0800906 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800907 url: "https://spdx.org/licenses/LGPL-3.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000908}
909
910license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800911 name: "SPDX-license-identifier-LGPL-3.0+",
Bob Badour07c034b2022-11-22 12:07:29 -0800912 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800913 url: "https://spdx.org/licenses/LGPL-3.0+.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000914}
915
916license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800917 name: "SPDX-license-identifier-LGPL-3.0-only",
Bob Badour07c034b2022-11-22 12:07:29 -0800918 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800919 url: "https://spdx.org/licenses/LGPL-3.0-only.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000920}
921
922license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800923 name: "SPDX-license-identifier-LGPL-3.0-or-later",
Bob Badour07c034b2022-11-22 12:07:29 -0800924 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800925 url: "https://spdx.org/licenses/LGPL-3.0-or-later.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000926}
927
928license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800929 name: "SPDX-license-identifier-LGPLLR",
Bob Badour07c034b2022-11-22 12:07:29 -0800930 conditions: ["restricted_if_statically_linked"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800931 url: "https://spdx.org/licenses/LGPLLR.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000932}
933
934license_kind {
Bob Badour801000e2022-12-02 13:07:39 -0800935 name: "SPDX-license-identifier-Linux-syscall-note",
936 // expanding visibility requires approval from an OSPO lawyer or pcounsel
Justin Yun3b23ac02023-04-19 19:26:30 +0900937 visibility: [
938 "//external/libbpf:__subpackages__",
939 "//prebuilts/vsdk:__subpackages__",
940 ],
Bob Badour801000e2022-12-02 13:07:39 -0800941 conditions: ["permissive"],
942 url: "https://spdx.org/licenses/Linux-syscall-note.html",
943}
944
945license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800946 name: "SPDX-license-identifier-LPL-1.02",
947 conditions: ["notice"],
948 url: "https://spdx.org/licenses/LPL-1.02.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000949}
950
951license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800952 name: "SPDX-license-identifier-MIT",
953 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000954}
955
956license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800957 name: "SPDX-license-identifier-MIT-0",
Bob Badour59f08662022-09-23 16:29:34 -0700958 conditions: ["permissive"],
Bob Badourb545c5f2021-01-23 14:35:55 -0800959 url: "https://spdx.org/licenses/MIT-0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000960}
961
962license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800963 name: "SPDX-license-identifier-MIT-CMU",
964 conditions: ["notice"],
965 url: "https://spdx.org/licenses/MIT-CMU.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000966}
967
968license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800969 name: "SPDX-license-identifier-MIT-advertising",
970 conditions: ["notice"],
971 url: "https://spdx.org/licenses/MIT-advertising.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000972}
973
974license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800975 name: "SPDX-license-identifier-MIT-enna",
976 conditions: ["notice"],
977 url: "https://spdx.org/licenses/MIT-enna.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000978}
979
980license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800981 name: "SPDX-license-identifier-MIT-feh",
982 conditions: ["notice"],
983 url: "https://spdx.org/licenses/MIT-feh.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000984}
985
986license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800987 name: "SPDX-license-identifier-MITNFA",
988 conditions: ["notice"],
989 url: "https://spdx.org/licenses/MITNFA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +0000990}
991
992license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800993 name: "SPDX-license-identifier-MPL",
994 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +0000995}
996
997license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -0800998 name: "SPDX-license-identifier-MPL-1.0",
999 conditions: ["reciprocal"],
1000 url: "https://spdx.org/licenses/MPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001001}
1002
1003license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001004 name: "SPDX-license-identifier-MPL-1.1",
1005 conditions: ["reciprocal"],
1006 url: "https://spdx.org/licenses/MPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001007}
1008
1009license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001010 name: "SPDX-license-identifier-MPL-2.0",
1011 conditions: ["reciprocal"],
1012 url: "https://spdx.org/licenses/MPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001013}
1014
1015license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001016 name: "SPDX-license-identifier-MPL-2.0-no-copyleft-exception",
1017 conditions: ["reciprocal"],
1018 url: "https://spdx.org/licenses/MPL-2.0-no-copyleft-exception.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001019}
1020
1021license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001022 name: "SPDX-license-identifier-MS-PL",
1023 conditions: ["notice"],
1024 url: "https://spdx.org/licenses/MS-PL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001025}
1026
1027license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001028 name: "SPDX-license-identifier-MS-RL",
1029 conditions: ["by_exception_only"],
1030 url: "https://spdx.org/licenses/MS-RL.html",
1031}
1032
1033license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001034 name: "SPDX-license-identifier-NCSA",
1035 conditions: ["notice"],
1036 url: "https://spdx.org/licenses/NCSA.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001037}
1038
1039license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001040 name: "SPDX-license-identifier-OFL",
Bob Badourca3491c2023-06-01 13:07:01 -07001041 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001042}
1043
1044license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001045 name: "SPDX-license-identifier-OFL-1.0",
Bob Badourca3491c2023-06-01 13:07:01 -07001046 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001047 url: "https://spdx.org/licenses/OFL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001048}
1049
1050license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001051 name: "SPDX-license-identifier-OFL-1.0-RFN",
Bob Badourca3491c2023-06-01 13:07:01 -07001052 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001053 url: "https://spdx.org/licenses/OFL-1.0-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001054}
1055
1056license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001057 name: "SPDX-license-identifier-OFL-1.0-no-RFN",
Bob Badourca3491c2023-06-01 13:07:01 -07001058 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001059 url: "https://spdx.org/licenses/OFL-1.0-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001060}
1061
1062license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001063 name: "SPDX-license-identifier-OFL-1.1",
Bob Badourca3491c2023-06-01 13:07:01 -07001064 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001065 url: "https://spdx.org/licenses/OFL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001066}
1067
1068license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001069 name: "SPDX-license-identifier-OFL-1.1-RFN",
Bob Badourca3491c2023-06-01 13:07:01 -07001070 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001071 url: "https://spdx.org/licenses/OFL-1.1-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001072}
1073
1074license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001075 name: "SPDX-license-identifier-OFL-1.1-no-RFN",
Bob Badourca3491c2023-06-01 13:07:01 -07001076 conditions: ["notice"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001077 url: "https://spdx.org/licenses/OFL-1.1-no-RFN.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001078}
1079
1080license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001081 name: "SPDX-license-identifier-OpenSSL",
1082 conditions: ["notice"],
1083 url: "https://spdx.org/licenses/OpenSSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001084}
1085
1086license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001087 name: "SPDX-license-identifier-PSF-2.0",
1088 conditions: ["notice"],
1089 url: "https://spdx.org/licenses/PSF-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001090}
1091
1092license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001093 name: "SPDX-license-identifier-SISSL",
1094 conditions: [
1095 "by_exception_only",
1096 "not_allowed",
1097 ],
1098 url: "https://spdx.org/licenses/SISSL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001099}
1100
1101license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001102 name: "SPDX-license-identifier-SISSL-1.2",
1103 conditions: [
1104 "by_exception_only",
1105 "not_allowed",
1106 ],
1107 url: "https://spdx.org/licenses/SISSL-1.2.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001108}
1109
1110license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001111 name: "SPDX-license-identifier-SPL-1.0",
1112 conditions: [
1113 "by_exception_only",
1114 "reciprocal",
1115 ],
1116 url: "https://spdx.org/licenses/SPL-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001117}
1118
1119license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001120 name: "SPDX-license-identifier-SSPL",
1121 conditions: [
1122 "by_exception_only",
1123 "not_allowed",
1124 ],
1125 url: "https://spdx.org/licenses/SSPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001126}
1127
1128license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001129 name: "SPDX-license-identifier-UPL-1.0",
1130 conditions: ["notice"],
1131 url: "https://spdx.org/licenses/UPL-1.-.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001132}
1133
1134license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001135 name: "SPDX-license-identifier-Unicode-DFS",
1136 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001137}
1138
1139license_kind {
Victor Chang03add502024-03-26 15:39:51 +00001140 name: "SPDX-license-identifier-Unicode-3.0",
1141 conditions: ["notice"],
1142 url: "https://spdx.org/licenses/Unicode-3.0.html",
1143}
1144
1145license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001146 name: "SPDX-license-identifier-Unicode-DFS-2015",
1147 conditions: ["notice"],
1148 url: "https://spdx.org/licenses/Unicode-DFS-2015.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001149}
1150
1151license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001152 name: "SPDX-license-identifier-Unicode-DFS-2016",
1153 conditions: ["notice"],
1154 url: "https://spdx.org/licenses/Unicode-DFS-2016.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001155}
1156
1157license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001158 name: "SPDX-license-identifier-Unlicense",
1159 conditions: ["unencumbered"],
1160 url: "https://spdx.org/licenses/Unlicense.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001161}
1162
1163license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001164 name: "SPDX-license-identifier-W3C",
1165 conditions: ["notice"],
1166 url: "https://spdx.org/licenses/W3C.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001167}
1168
1169license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001170 name: "SPDX-license-identifier-W3C-19980720",
1171 conditions: ["notice"],
1172 url: "https://spdx.org/licenses/W3C-19980720.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001173}
1174
1175license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001176 name: "SPDX-license-identifier-W3C-20150513",
1177 conditions: ["notice"],
1178 url: "https://spdx.org/licenses/W3C-20150513.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001179}
1180
1181license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001182 name: "SPDX-license-identifier-WTFPL",
Bob Badour5b3dd972022-11-04 12:03:30 -07001183 conditions: ["permissive"],
Bob Badourb545c5f2021-01-23 14:35:55 -08001184 url: "https://spdx.org/licenses/WTFPL.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001185}
1186
1187license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001188 name: "SPDX-license-identifier-Watcom-1.0",
1189 conditions: [
1190 "by_exception_only",
1191 "not_allowed",
1192 ],
1193 url: "https://spdx.org/licenses/Watcom-1.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001194}
1195
1196license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001197 name: "SPDX-license-identifier-Xnet",
1198 conditions: ["notice"],
1199 url: "https://spdx.org/licenses/Xnet.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001200}
1201
1202license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001203 name: "SPDX-license-identifier-ZPL",
1204 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001205}
1206
1207license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001208 name: "SPDX-license-identifier-ZPL-1.1",
1209 conditions: ["notice"],
1210 url: "https://spdx.org/licenses/ZPL-1.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001211}
1212
1213license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001214 name: "SPDX-license-identifier-ZPL-2.0",
1215 conditions: ["notice"],
1216 url: "https://spdx.org/licenses/ZPL-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001217}
1218
1219license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001220 name: "SPDX-license-identifier-ZPL-2.1",
1221 conditions: ["notice"],
1222 url: "https://spdx.org/licenses/ZPL-2.1.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001223}
1224
1225license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001226 name: "SPDX-license-identifier-Zend-2.0",
1227 conditions: ["notice"],
1228 url: "https://spdx.org/licenses/Zend-2.0.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001229}
1230
1231license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001232 name: "SPDX-license-identifier-Zlib",
1233 conditions: ["notice"],
1234 url: "https://spdx.org/licenses/Zlib.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001235}
1236
1237license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001238 name: "SPDX-license-identifier-libtiff",
1239 conditions: ["notice"],
1240 url: "https://spdx.org/licenses/libtiff.html",
Bob Badourb80dfee2021-01-07 03:34:31 +00001241}
1242
Bob Badourb80dfee2021-01-07 03:34:31 +00001243// Legacy license kinds -- do not add new references -- use an spdx kind instead.
1244license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001245 name: "legacy_unknown",
1246 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001247}
1248
1249license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001250 name: "legacy_unencumbered",
1251 conditions: ["unencumbered"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001252}
1253
1254license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001255 name: "legacy_permissive",
1256 conditions: ["permissive"],
Bob Badour73056ea2021-01-21 08:53:58 -08001257}
1258
1259license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001260 name: "legacy_notice",
1261 conditions: ["notice"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001262}
1263
1264license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001265 name: "legacy_reciprocal",
1266 conditions: ["reciprocal"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001267}
1268
1269license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001270 name: "legacy_restricted",
1271 conditions: ["restricted"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001272}
1273
1274license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001275 name: "legacy_by_exception_only",
1276 conditions: ["by_exception_only"],
Bob Badourb80dfee2021-01-07 03:34:31 +00001277}
1278
1279license_kind {
Bob Badour7e3dbd92021-01-23 13:09:16 -08001280 name: "legacy_not_a_contribution",
1281 conditions: [
1282 "by_exception_only",
1283 "not_allowed",
1284 ],
1285}
1286
1287license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001288 name: "legacy_not_allowed",
1289 conditions: [
1290 "by_exception_only",
1291 "not_allowed",
1292 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001293}
1294
1295license_kind {
Bob Badourb545c5f2021-01-23 14:35:55 -08001296 name: "legacy_proprietary",
1297 conditions: [
1298 "by_exception_only",
1299 "not_allowed",
1300 "proprietary",
1301 ],
Bob Badourb80dfee2021-01-07 03:34:31 +00001302}