Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 1 | new_http_archive( |
| 2 | name = "gmock_archive", |
| 3 | url = "https://googlemock.googlecode.com/files/gmock-1.7.0.zip", |
| 4 | sha256 = "26fcbb5925b74ad5fc8c26b0495dfc96353f4d553492eb97e85a8a6d2f43095b", |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 5 | build_file = "gmock.BUILD", |
Jisi Liu | 7a0c431 | 2015-06-18 16:45:27 -0700 | [diff] [blame] | 6 | ) |
| 7 | |
Jisi Liu | fbc51b7 | 2015-10-22 13:38:17 -0700 | [diff] [blame] | 8 | new_http_archive( |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 9 | name = "six_archive", |
Adrian Ludwin | 1327e6f | 2016-09-09 12:45:37 -0400 | [diff] [blame] | 10 | url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55", |
Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 11 | sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a", |
| 12 | build_file = "six.BUILD", |
Jisi Liu | fbc51b7 | 2015-10-22 13:38:17 -0700 | [diff] [blame] | 13 | ) |
| 14 | |
Jisi Liu | 7a0c431 | 2015-06-18 16:45:27 -0700 | [diff] [blame] | 15 | bind( |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 16 | name = "python_headers", |
| 17 | actual = "//util/python:python_headers", |
Jisi Liu | 7a0c431 | 2015-06-18 16:45:27 -0700 | [diff] [blame] | 18 | ) |
| 19 | |
| 20 | bind( |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 21 | name = "gtest", |
Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 22 | actual = "@gmock_archive//:gtest", |
Jisi Liu | 7a0c431 | 2015-06-18 16:45:27 -0700 | [diff] [blame] | 23 | ) |
Jisi Liu | fbc51b7 | 2015-10-22 13:38:17 -0700 | [diff] [blame] | 24 | |
| 25 | bind( |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 26 | name = "gtest_main", |
Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 27 | actual = "@gmock_archive//:gtest_main", |
David Z. Chen | 985c968 | 2016-02-11 18:11:10 -0800 | [diff] [blame] | 28 | ) |
| 29 | |
| 30 | bind( |
| 31 | name = "six", |
| 32 | actual = "@six_archive//:six", |
Jisi Liu | fbc51b7 | 2015-10-22 13:38:17 -0700 | [diff] [blame] | 33 | ) |
Steven Parkes | a9244ca | 2016-03-10 17:50:25 -0800 | [diff] [blame] | 34 | |
| 35 | maven_jar( |
Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 36 | name = "guava_maven", |
| 37 | artifact = "com.google.guava:guava:18.0", |
Steven Parkes | a9244ca | 2016-03-10 17:50:25 -0800 | [diff] [blame] | 38 | ) |
| 39 | |
| 40 | bind( |
| 41 | name = "guava", |
| 42 | actual = "@guava_maven//jar", |
| 43 | ) |
| 44 | |
| 45 | maven_jar( |
Colin Cross | 11fb7ae | 2018-11-04 17:34:26 -0800 | [diff] [blame] | 46 | name = "gson_maven", |
| 47 | artifact = "com.google.code.gson:gson:2.3", |
Steven Parkes | a9244ca | 2016-03-10 17:50:25 -0800 | [diff] [blame] | 48 | ) |
| 49 | |
| 50 | bind( |
| 51 | name = "gson", |
| 52 | actual = "@gson_maven//jar", |
| 53 | ) |