-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathBUILD.bazel
More file actions
56 lines (47 loc) · 1.2 KB
/
BUILD.bazel
File metadata and controls
56 lines (47 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
load("@rules_license//rules:license.bzl", "license")
load("@rules_license//rules:license_kind.bzl", "license_kind")
package_group(
name = "gfxstream",
packages = [
"//...",
],
)
package(
default_applicable_licenses = [":gfxstream_license"],
default_visibility = ["//:gfxstream"],
)
exports_files(
["LICENSE"],
visibility = ["//visibility:public"],
)
license(
name = "gfxstream_license",
license_kinds = [
":SPDX-license-identifier-Apache-2.0",
":SPDX-license-identifier-BSD",
":SPDX-license-identifier-ISC",
":SPDX-license-identifier-MIT",
],
)
license_kind(
name = "SPDX-license-identifier-Apache-2.0",
conditions = ["notice"],
url = "https://spdx.org/licenses/Apache-2.0.html",
)
license_kind(
name = "SPDX-license-identifier-BSD",
conditions = ["notice"],
url = "https://spdx.org/licenses/BSD-3-Clause.html",
)
# X11 headers
license_kind(
name = "SPDX-license-identifier-ISC",
conditions = ["notice"],
url = "https://spdx.org/licenses/ISC.html",
)
license_kind(
name = "SPDX-license-identifier-MIT",
conditions = ["notice"],
url = "https://spdx.org/licenses/MIT.html",
)
licenses(["notice"])