-
Notifications
You must be signed in to change notification settings - Fork 656
/
WORKSPACE
37 lines (33 loc) · 1.04 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
git_repository(
name = "protobuf",
remote = "https://github.com/google/protobuf",
tag = "v3.1.0"
)
new_git_repository(
name = "snappy",
remote = "https://github.com/google/snappy",
commit = "32d6d7d8a2ef328a2ee1dd40f072e21f4983ebda", # latest master
build_file = "bazel/snappy.BUILD"
)
new_git_repository(
name = "gtest",
remote = "https://github.com/google/googletest.git",
tag = "release-1.8.0",
build_file = "bazel/gtest.BUILD",
)
new_http_archive(
name = "boost",
url = "https://sourceforge.net/projects/boost/files/boost/1.61.0/boost_1_61_0.tar.bz2/download",
type = "tar.bz2",
strip_prefix = "boost_1_61_0/",
build_file = "bazel/boost.BUILD",
sha256 = "a547bd06c2fd9a71ba1d169d9cf0339da7ebf4753849a8f7d6fdb8feee99b640",
)
new_http_archive(
name = "zlib",
url = "https://sourceforge.net/projects/libpng/files/zlib/1.2.8/zlib-1.2.8.tar.gz/download",
type = "tar.gz",
build_file = "bazel/zlib.BUILD",
strip_prefix = "zlib-1.2.8/",
sha256 = "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d",
)