-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWORKSPACE
More file actions
28 lines (24 loc) · 720 Bytes
/
Copy pathWORKSPACE
File metadata and controls
28 lines (24 loc) · 720 Bytes
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
#
# Google libs
#
http_archive(
name = "com_github_google_absl",
url = "https://github.com/abseil/abseil-cpp/archive/master.zip",
strip_prefix = "abseil-cpp-master",
)
http_archive(
name = "com_github_gflags_gflags",
url = "https://github.com/gflags/gflags/archive/master.zip",
strip_prefix = "gflags-master",
)
http_archive(
name = "com_github_google_glog",
url = "https://github.com/google/glog/archive/master.zip",
strip_prefix = "glog-master",
)
http_archive(
name = "com_google_googletest",
url = "https://github.com/google/googletest/archive/master.zip",
strip_prefix = "googletest-master",
)