WORKSPACE 1013 Bytes
Newer Older
1 2
new_git_repository(
    name = "googletest",
3
    build_file = "gmock.BUILD",
4 5
    remote = "https://github.com/google/googletest",
    tag = "release-1.8.0",
6 7
)

Jisi Liu's avatar
Jisi Liu committed
8
new_http_archive(
9 10
    name = "six_archive",
    build_file = "six.BUILD",
11 12
    sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
    url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
Jisi Liu's avatar
Jisi Liu committed
13 14
)

15
bind(
16 17
    name = "python_headers",
    actual = "//util/python:python_headers",
18 19 20
)

bind(
21
    name = "gtest",
22
    actual = "@googletest//:gtest",
23
)
Jisi Liu's avatar
Jisi Liu committed
24 25

bind(
26
    name = "gtest_main",
27
    actual = "@googletest//:gtest_main",
28 29 30 31 32
)

bind(
    name = "six",
    actual = "@six_archive//:six",
Jisi Liu's avatar
Jisi Liu committed
33
)
34 35

maven_jar(
36 37
    name = "guava_maven",
    artifact = "com.google.guava:guava:18.0",
38 39 40 41 42 43 44 45
)

bind(
    name = "guava",
    actual = "@guava_maven//jar",
)

maven_jar(
46
    name = "gson_maven",
Bo Yang's avatar
Bo Yang committed
47
    artifact = "com.google.code.gson:gson:2.7",
48 49 50 51 52 53
)

bind(
    name = "gson",
    actual = "@gson_maven//jar",
)