forked from sgammon/rules_graalvm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
48 lines (43 loc) · 778 Bytes
/
BUILD.bazel
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
"Bazel Rules for GraalVM"
load(
"@bazel_gazelle//:def.bzl",
"gazelle",
)
load(
"@bazel_skylib//:bzl_library.bzl",
"bzl_library",
)
[
alias(
name = target,
actual = "//tools:%s" % target,
)
for target in [
"buildifier.check",
"buildifier.format",
]
]
exports_files([
"maven_install.json",
"WORKSPACE.bazel",
"requirements.txt",
"requirements_lock.txt",
"pnpm-lock.yaml",
".bazelignore",
])
bzl_library(
name = "lib",
deps = [
"//lib:%s" % target
for target in [
"defs",
"toolchain",
"repositories",
"workspace",
]
],
)
# gazelle:prefix github.com/sgammon/rules_graalvm
gazelle(
name = "gazelle",
)