This repository was archived by the owner on Dec 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathWORKSPACE
More file actions
82 lines (72 loc) · 2.58 KB
/
WORKSPACE
File metadata and controls
82 lines (72 loc) · 2.58 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
workspace(name = "com_google_statechart")
# Using protobuf version 3.5.1
http_archive(
name = "com_google_protobuf",
strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.tar.gz"],
)
http_archive(
name = "com_google_protobuf_cc",
strip_prefix = "protobuf-3.5.1",
urls = ["https://github.com/google/protobuf/archive/v3.5.1.tar.gz"],
)
# GoogleTest/GoogleMock framework. Used by most unit-tests.
http_archive(
name = "com_google_googletest",
urls = ["https://github.com/google/googletest/archive/master.zip"],
strip_prefix = "googletest-master",
)
# We depend on Abseil.
http_archive(
name = "com_google_absl",
strip_prefix = "abseil-cpp-master",
urls = ["https://github.com/abseil/abseil-cpp/archive/master.zip"],
)
# Abseil depends on CCTZ (Time-zone framework).
http_archive(
name = "com_googlesource_code_cctz",
strip_prefix = "cctz-master",
urls = ["https://github.com/google/cctz/archive/master.zip"],
)
http_archive(
name = "com_googlesource_code_re2",
urls = ["https://github.com/google/re2/archive/master.zip"],
strip_prefix = "re2-master",
)
new_http_archive(
name = "jsoncpp_git",
urls = ["https://github.com/open-source-parsers/jsoncpp/archive/1.7.6.tar.gz"],
strip_prefix = "jsoncpp-1.7.6",
build_file = "//third_party:jsoncpp.BUILD",
)
http_archive(
name = "com_github_gflags_gflags",
urls = [ "https://github.com/gflags/gflags/archive/master.zip" ],
strip_prefix = "gflags-master"
)
#
http_archive(
name = "com_google_glog",
urls = [ "https://github.com/google/glog/archive/master.zip" ],
strip_prefix = "glog-master"
)
# gflags needed by glog
# http_archive(
# name = "com_github_gflags_gflags",
# sha256 = "6e16c8bc91b1310a44f3965e616383dbda48f83e8c1eaa2370a215057b00cabe",
# strip_prefix = "gflags-77592648e3f3be87d6c7123eb81cbad75f9aef5a",
# urls = [
# "https://mirror.bazel.build/github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz",
# "https://github.com/gflags/gflags/archive/77592648e3f3be87d6c7123eb81cbad75f9aef5a.tar.gz",
# ],
# )
# glog
# http_archive(
# name = "com_google_glog",
# sha256 = "1ee310e5d0a19b9d584a855000434bb724aa744745d5b8ab1855c85bff8a8e21",
# strip_prefix = "glog-028d37889a1e80e8a07da1b8945ac706259e5fd8",
# urls = [
# "https://mirror.bazel.build/github.com/google/glog/archive/028d37889a1e80e8a07da1b8945ac706259e5fd8.tar.gz",
# "https://github.com/google/glog/archive/028d37889a1e80e8a07da1b8945ac706259e5fd8.tar.gz",
# ],
# )