-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
35 lines (26 loc) · 798 Bytes
/
WORKSPACE
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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "bazel_skylib",
branch = "main",
remote = "https://github.com/bazelbuild/bazel-skylib",
)
git_repository(
name = "rules_cc",
branch = "main",
remote = "https://github.com/bazelbuild/rules_cc",
)
load("@rules_cc//cc:repositories.bzl", "rules_cc_dependencies")
rules_cc_dependencies()
git_repository(
name = "rules_proto",
branch = "master",
remote = "https://github.com/bazelbuild/rules_proto",
)
load("@rules_proto//proto:repositories.bzl", "rules_proto_dependencies", "rules_proto_toolchains")
rules_proto_dependencies()
rules_proto_toolchains()
git_repository(
name = "absl",
branch = "master",
remote = "https://github.com/abseil/abseil-cpp",
)