WORKSPACE 1013 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. new_git_repository(
  2. name = "googletest",
  3. build_file = "gmock.BUILD",
  4. remote = "https://github.com/google/googletest",
  5. tag = "release-1.8.0",
  6. )
  7. new_http_archive(
  8. name = "six_archive",
  9. build_file = "six.BUILD",
  10. sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
  11. url = "https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55",
  12. )
  13. bind(
  14. name = "python_headers",
  15. actual = "//util/python:python_headers",
  16. )
  17. bind(
  18. name = "gtest",
  19. actual = "@googletest//:gtest",
  20. )
  21. bind(
  22. name = "gtest_main",
  23. actual = "@googletest//:gtest_main",
  24. )
  25. bind(
  26. name = "six",
  27. actual = "@six_archive//:six",
  28. )
  29. maven_jar(
  30. name = "guava_maven",
  31. artifact = "com.google.guava:guava:18.0",
  32. )
  33. bind(
  34. name = "guava",
  35. actual = "@guava_maven//jar",
  36. )
  37. maven_jar(
  38. name = "gson_maven",
  39. artifact = "com.google.code.gson:gson:2.7",
  40. )
  41. bind(
  42. name = "gson",
  43. actual = "@gson_maven//jar",
  44. )