forked from ourarash/cpp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
37 lines (31 loc) · 828 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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
git_repository(
name = "com_google_googletest",
remote = "https://github.com/google/googletest",
tag = "release-1.11.0",
)
git_repository(
name = "glog",
remote = "https://github.com/google/glog.git",
tag = "v0.4.0",
)
git_repository(
name = "com_google_absl",
remote = "https://github.com/abseil/abseil-cpp.git",
tag = "20200225.2",
)
git_repository(
name = "com_google_benchmark",
remote = "https://github.com/google/benchmark.git",
tag = "v1.5.1",
)
new_local_repository(
name = "usr_local",
build_file = "third_party/usr_local.BUILD",
path = "/usr/local",
)
git_repository(
name = "com_github_gflags_gflags",
remote = "https://github.com/gflags/gflags.git",
tag = "v2.2.2",
)