-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathWORKSPACE
33 lines (28 loc) · 919 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
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
git_repository(
name = "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 = "google_benchmark",
remote = "https://github.com/google/benchmark.git",
tag = "v1.7.1",
)
#git_repository(
# name = "com_github_gflags_gflags",
# remote = "https://github.com/gflags/gflags.git",
# tag = "v2.2.2",
#)
# optional library. Used only when -DUSE_ABSL_MAP set (faster)
http_archive(
name = "abseil-cpp",
urls = ["https://github.com/abseil/abseil-cpp/archive/04610889a913d29037205ca72e9d7fd7acc925fe.zip"],
strip_prefix = "abseil-cpp-04610889a913d29037205ca72e9d7fd7acc925fe",
)