WORKSPACE 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. bind(
  2. name = "nanopb",
  3. actual = "//third_party/nanopb",
  4. )
  5. bind(
  6. name = "libssl",
  7. actual = "@submodule_boringssl//:ssl",
  8. )
  9. bind(
  10. name = "zlib",
  11. actual = "@submodule_zlib//:z",
  12. )
  13. bind(
  14. name = "protobuf",
  15. actual = "@submodule_protobuf//:protobuf",
  16. )
  17. bind(
  18. name = "protobuf_clib",
  19. actual = "@submodule_protobuf//:protoc_lib",
  20. )
  21. bind(
  22. name = "protocol_compiler",
  23. actual = "@submodule_protobuf//:protoc",
  24. )
  25. bind(
  26. name = "gtest",
  27. actual = "@submodule_gtest//:gtest",
  28. )
  29. bind(
  30. name = "gflags",
  31. actual = "@com_github_gflags_gflags//:gflags",
  32. )
  33. new_local_repository(
  34. name = "submodule_boringssl",
  35. build_file = "third_party/boringssl-with-bazel/BUILD",
  36. path = "third_party/boringssl-with-bazel",
  37. )
  38. new_local_repository(
  39. name = "submodule_zlib",
  40. build_file = "third_party/zlib.BUILD",
  41. path = "third_party/zlib",
  42. )
  43. new_local_repository(
  44. name = "submodule_protobuf",
  45. build_file = "third_party/protobuf/BUILD",
  46. path = "third_party/protobuf",
  47. )
  48. new_local_repository(
  49. name = "submodule_gtest",
  50. build_file = "third_party/gtest.BUILD",
  51. path = "third_party/googletest",
  52. )
  53. local_repository(
  54. name = "com_github_gflags_gflags",
  55. path = "third_party/gflags",
  56. )
  57. # used for tools/grpcz/grpcz_client
  58. git_repository(
  59. name = "mongoose_repo",
  60. commit = "4120a97945b41195a6223a600dae8e3b19bed19e",
  61. remote = "https://github.com/makdharma/mongoose.git"
  62. )