WORKSPACE 1.0 KB

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