forked from dfinity/ic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
55 lines (46 loc) · 1012 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
49
50
51
52
53
54
55
load("@bazel_gazelle//:def.bzl", "gazelle")
package(default_visibility = ["//visibility:public"])
exports_files([
".rclone.conf",
".rclone-anon.conf",
"bazel-timestamp.txt",
"clippy.toml",
"rustfmt.toml",
"WORKSPACE.bazel",
])
alias(
name = "buildifier",
actual = "//bazel:buildifier",
)
test_suite(
name = "precommit",
tests = ["//bazel:buildifier_test"],
)
alias(
name = "bazelifier",
actual = "//rs/bazelifier",
)
alias(
name = "rustfmt",
actual = "@rules_rust//:rustfmt",
)
# See https://github.com/bazelbuild/bazel-gazelle#running-gazelle-with-bazel
# gazelle:prefix github.com/dfinity/ic
# gazelle:proto disable
gazelle(
name = "gazelle",
)
gazelle(
name = "gazelle-update-repos",
args = [
"-from_file=go.mod",
"-to_macro=go_deps.bzl%go_dependencies",
"-prune",
],
command = "update-repos",
)
alias(
name = "gobin",
actual = "@go_sdk//:bin/go",
visibility = ["//visibility:public"],
)