-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
48 lines (39 loc) · 921 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
36
37
38
39
40
41
42
43
44
45
46
47
48
local_repository(
name = "com_github_gflags_gflags",
path = "third_party/gflags",
)
local_repository(
name = "com_google_googletest",
path = "third_party/googletest",
)
local_repository(
name = "com_google_absl",
path = "third_party/abseil-cpp",
)
new_local_repository(
name = "com_google_leveldb",
path = "third_party/leveldb",
build_file = "BUILD.leveldb",
)
local_repository(
name = "com_google_protobuf",
path = "third_party/protobuf",
)
local_repository(
name = "com_google_protobuf_cc",
path = "third_party/protobuf",
)
local_repository(
name = "com_github_grpc_grpc",
path = "third_party/grpc",
)
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
grpc_deps()
local_repository(
name = "com_google_glog",
path = "third_party/glog",
)
local_repository(
name = "com_google_benchmark",
path = "third_party/benchmark",
)