-
Notifications
You must be signed in to change notification settings - Fork 3
/
WORKSPACE
33 lines (29 loc) · 942 Bytes
/
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
git_repository(
name = "protobuf",
remote = "https://github.com/google/protobuf.git",
tag = "v3.3.0rc1",
)
new_git_repository(
name = "gtest",
remote = "https://github.com/google/googletest.git",
commit = "f7248d80eae141397d39cc4b6a2ae7333a1d4935",
build_file = "gtest.BUILD",
)
new_http_archive(
name = "eigen",
url = "https://github.com/RLovelett/eigen/archive/aaaa8c33025952bc8ef8c5c946fe8ab9cf45bf5d.zip",
strip_prefix = "eigen-aaaa8c33025952bc8ef8c5c946fe8ab9cf45bf5d",
build_file = "eigen.BUILD",
)
new_git_repository(
name = "cnn",
remote = "https://github.com/clab/dynet.git",
commit = "a23940c5dc48aca9e57b287c2b083bf1283ece02",
build_file = "cnn.BUILD",
)
new_git_repository(
name = "easyloggingpp",
remote = "https://github.com/easylogging/easyloggingpp.git",
commit = "f926802dfbde716d82b64b8ef3c25b7f0fcfec65",
build_file = "easyloggingpp.BUILD",
)