blob: 065dc81984585eef79ed827ed2a503f9e392e633 [file] [log] [blame]
Colin Cross11fb7ae2018-11-04 17:34:26 -08001new_http_archive(
2 name = "gmock_archive",
3 url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip",
4 sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b",
David Z. Chen985c9682016-02-11 18:11:10 -08005 build_file = "gmock.BUILD",
Jisi Liu7a0c4312015-06-18 16:45:27 -07006)
7
Jisi Liufbc51b72015-10-22 13:38:17 -07008new_http_archive(
David Z. Chen985c9682016-02-11 18:11:10 -08009 name = "six_archive",
Adrian Ludwin1327e6f2016-09-09 12:45:37 -040010 url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
Colin Cross11fb7ae2018-11-04 17:34:26 -080011 sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
12 build_file = "six.BUILD",
Jisi Liufbc51b72015-10-22 13:38:17 -070013)
14
Jisi Liu7a0c4312015-06-18 16:45:27 -070015bind(
David Z. Chen985c9682016-02-11 18:11:10 -080016 name = "python_headers",
17 actual = "//util/python:python_headers",
Jisi Liu7a0c4312015-06-18 16:45:27 -070018)
19
20bind(
David Z. Chen985c9682016-02-11 18:11:10 -080021 name = "gtest",
Colin Cross11fb7ae2018-11-04 17:34:26 -080022 actual = "@gmock_archive//:gtest",
Jisi Liu7a0c4312015-06-18 16:45:27 -070023)
Jisi Liufbc51b72015-10-22 13:38:17 -070024
25bind(
David Z. Chen985c9682016-02-11 18:11:10 -080026 name = "gtest_main",
Colin Cross11fb7ae2018-11-04 17:34:26 -080027 actual = "@gmock_archive//:gtest_main",
David Z. Chen985c9682016-02-11 18:11:10 -080028)
29
30bind(
31 name = "six",
32 actual = "@six_archive//:six",
Jisi Liufbc51b72015-10-22 13:38:17 -070033)
Steven Parkesa9244ca2016-03-10 17:50:25 -080034
35maven_jar(
Colin Cross11fb7ae2018-11-04 17:34:26 -080036 name = "guava_maven",
37 artifact = "com.google.guava:guava:18.0",
Steven Parkesa9244ca2016-03-10 17:50:25 -080038)
39
40bind(
41 name = "guava",
42 actual = "@guava_maven//jar",
43)
44
45maven_jar(
Colin Cross11fb7ae2018-11-04 17:34:26 -080046 name = "gson_maven",
47 artifact = "com.google.code.gson:gson:2.3",
Steven Parkesa9244ca2016-03-10 17:50:25 -080048)
49
50bind(
51 name = "gson",
52 actual = "@gson_maven//jar",
53)