This repository has been archived by the owner on Sep 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
BUILD
57 lines (52 loc) · 1.71 KB
/
BUILD
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
57
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
filegroup(
name = "standard_package",
srcs = glob([
"BUILD",
"LICENSE",
"*.bzl",
"third_party/**",
]),
visibility = ["@//distro:__pkg__"],
)
bzl_library(
name = "java_repositories",
srcs = ["java_repositories.bzl"],
visibility = ["//visibility:public"],
# Temporarily omit @bazel_tools//... bzl files from the bzl_library until
# they are `exports_files`'d in a released version of Bazel.
deps = [
#"@bazel_tools//tools/build_defs/repo:http.bzl",
#"@bazel_tools//tools/build_defs/repo:utils.bzl",
], # keep
)
bzl_library(
name = "repositories",
srcs = ["repositories.bzl"],
visibility = ["//visibility:public"],
# Temporarily omit @bazel_tools//... bzl files from the bzl_library until
# they are `exports_files`'d in a released version of Bazel.
deps = [
":third_party_repositories",
#"@bazel_tools//tools/build_defs/repo:git.bzl",
#"@bazel_tools//tools/build_defs/repo:http.bzl",
#"@bazel_tools//tools/build_defs/repo:utils.bzl",
], # keep
)
bzl_library(
name = "third_party_repositories",
srcs = ["third_party_repositories.bzl"],
visibility = ["//visibility:public"],
# Temporarily omit @bazel_tools//... bzl files from the bzl_library until
# they are `exports_files`'d in a released version of Bazel.
deps = [
#"@bazel_tools//tools/build_defs/repo:git.bzl",
#"@bazel_tools//tools/build_defs/repo:http.bzl",
#"@bazel_tools//tools/build_defs/repo:utils.bzl",
], # keep
)
bzl_library(
name = "version",
srcs = ["version.bzl"],
visibility = ["//visibility:public"],
)