blob: 8c33b28cff07b4b8a3036206f782ac851080556b [file] [log] [blame]
Jeongik Cha8e0bf132021-10-07 22:16:00 +09001package {
2 default_visibility: ["//visibility:private"],
Bob Badoure08326e2021-10-14 10:48:02 -07003 default_applicable_licenses: ["external_openwrt-prebuilts_license"],
4}
5
6// Added automatically by a large-scale-change that took the approach of
7// 'apply every license found to every target'. While this makes sure we respect
8// every license restriction, it may not be entirely correct.
9//
10// e.g. GPL in an MIT project might only apply to the contrib/ directory.
11//
12// Please consider splitting the single license below into multiple licenses,
13// taking care not to lose any license_kind information, and overriding the
14// default license using the 'licenses: [...]' property on targets as needed.
15//
16// For unused files, consider creating a 'fileGroup' with "//visibility:private"
17// to attach the license to, and including a comment whether the files may be
18// used in the current project.
19// See: http://go/android-license-faq
20license {
21 name: "external_openwrt-prebuilts_license",
22 visibility: [":__subpackages__"],
23 license_kinds: [
24 "SPDX-license-identifier-Apache-2.0",
25 "SPDX-license-identifier-BSD",
26 "SPDX-license-identifier-GPL-2.0",
27 ],
28 license_text: [
29 "LICENSE",
30 ],
Jeongik Cha8e0bf132021-10-07 22:16:00 +090031}
32
33filegroup {
34 name: "openwrt_license_files",
35 visibility: [":__subpackages__"],
36 srcs: [
37 "LICENSE",
38 "HOW_TO_GET_SOURCE_CODE",
39 ],
40}
41
42license {
43 name: "openwrt_license",
44 visibility: [":__subpackages__"],
45 license_kinds: [
46 "SPDX-license-identifier-Apache-2.0",
47 "SPDX-license-identifier-BSD",
48 "SPDX-license-identifier-GPL-2.0",
49 "SPDX-license-identifier-GPL-3.0",
50 "SPDX-license-identifier-LGPL-2.1",
51 "SPDX-license-identifier-MIT",
52 "SPDX-license-identifier-ISC",
53 ],
54 license_text: [
55 "LICENSE",
56 "HOW_TO_GET_SOURCE_CODE",
57 ],
Bob Badoure08326e2021-10-14 10:48:02 -070058}