generated from bazel-contrib/rules-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
BUILD.bazel
46 lines (42 loc) · 1.02 KB
/
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
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
exports_files(
["WORKSPACE"],
visibility = ["//util:__pkg__"],
)
bzl_library(
name = "internal_deps",
srcs = ["internal_deps.bzl"],
visibility = ["//visibility:public"],
deps = [
"@bazel_tools//tools/build_defs/repo:http.bzl",
"@bazel_tools//tools/build_defs/repo:utils.bzl",
],
)
filegroup(
name = "bazelrc",
srcs = [
".bazelrc.common",
".bazelrc.flags",
".bazelrc.remote",
] + glob(
[
# buildifier: disable=constant-glob
".bazelrc.ic.user",
],
allow_empty = True,
),
visibility = ["//zig/tests/integration_tests:__pkg__"],
)
# Execute `bazel run //util:update_filegroups` to update this target.
filegroup(
name = "all_files",
srcs = [
":BUILD.bazel",
":MODULE.bazel",
":WORKSPACE",
":WORKSPACE.bzlmod",
":internal_deps.bzl",
"//zig:all_files",
],
visibility = ["//visibility:public"],
)