forked from google/ukey2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWORKSPACE
38 lines (31 loc) · 1.09 KB
/
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
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "com_google_protobuf",
strip_prefix = "protobuf-3.22.5",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.22.5.tar.gz"],
)
http_archive(
name = "com_google_protobuf_cc",
strip_prefix = "protobuf-3.22.5",
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.22.5.tar.gz"],
)
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
# Load common dependencies.
protobuf_deps()
http_archive(
name = "com_google_googletest",
strip_prefix = "googletest-main",
urls = ["https://github.com/google/googletest/archive/main.zip"],
)
http_archive(
name = "com_google_securemessage",
strip_prefix = "securemessage-master",
urls = ["https://github.com/anayw2001/securemessage/archive/master.zip"],
)
load("@com_google_securemessage//:deps.bzl", "securemessage_deps")
securemessage_deps()
http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-master",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
)