-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathWORKSPACE.bazel
More file actions
51 lines (27 loc) · 1.33 KB
/
WORKSPACE.bazel
File metadata and controls
51 lines (27 loc) · 1.33 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
workspace(name = "com_github_cloneable_rules_ent")
# load("@com_github_cloneable_rules_ent//:repositories.bzl", "ent_go_repositories")
# ent_go_repositories()
# load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
# go_rules_dependencies()
# go_register_toolchains(version = "host")
# load("@com_github_cloneable_rules_ent//:deps.bzl", "ent_go_dependencies")
# gazelle:repository_macro deps.bzl%ent_go_dependencies
load("//:workspace.bzl", "install_workspace_dependencies")
install_workspace_dependencies()
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file")
# Gazelle -- (for the example)
# gazelle:repo bazel_gazelle
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository")
# Protobuf -- (for the example)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
protobuf_deps()
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
rules_proto_dependencies()
rules_proto_toolchains()
# Go -- (for the example)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.19.5")
# Ent -- (for the example)
load("@com_github_cloneable_rules_ent//:deps.bzl", "ent_go_dependencies")
ent_go_dependencies()