-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
48 lines (40 loc) · 1.02 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
39
40
41
42
43
44
45
46
47
48
http_archive(
name = "gbase",
url = "https://github.com/imos/gbase/releases/download/v0.8.5/gbase.zip",
sha256 = "0aee114ec1ef15555b2022b8594b70ff3cdf22e3fd42f8e101a98e4c461c9555",
)
bind(
name = "base",
actual = "@gbase//base"
)
bind(
name = "testing",
actual = "@gbase//base:testing"
)
bind(
name = "testing_main",
actual = "@gbase//base:testing_main"
)
http_archive(
name = "protobuf",
url = "https://github.com/google/protobuf/archive/v3.0.0.zip",
strip_prefix = "protobuf-3.0.0",
sha256 = "881f7af19166ce729d877d1bc65700d937e55fcc49b062623c0cdbc5aad3e0c4",
)
bind(
name = "protoc",
actual = "@protobuf//:protoc",
)
bind(
name = "protolib",
actual = "@protobuf//:protobuf",
)
http_archive(
name = "boost_archive",
url = "https://storage.googleapis.com/archive-imoz-jp/Repository/boost/boost-20160806-0056.zip",
sha256 = "06b8e7018142e5a99757d5dd4288116beae4b06723251593b4a9edb17c4085f8",
)
bind(
name = "boost",
actual = "@boost_archive//:boost",
)