2019-04-29 13:02:49 +08:00
|
|
|
load("@com_github_ray_project_ray//java:dependencies.bzl", "gen_java_deps")
|
|
|
|
load("@com_github_nelhage_rules_boost//:boost/boost.bzl", "boost_deps")
|
|
|
|
load("@com_github_jupp0r_prometheus_cpp//:repositories.bzl", "prometheus_cpp_repositories")
|
|
|
|
load("@com_github_ray_project_ray//bazel:python_configure.bzl", "python_configure")
|
|
|
|
load("@com_github_checkstyle_java//:repo.bzl", "checkstyle_deps")
|
2019-06-17 19:00:50 +08:00
|
|
|
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
2019-06-26 05:31:19 +08:00
|
|
|
load("@build_stack_rules_proto//java:deps.bzl", "java_proto_compile")
|
|
|
|
load("@build_stack_rules_proto//python:deps.bzl", "python_proto_compile")
|
2019-06-17 19:00:50 +08:00
|
|
|
|
2019-04-29 13:02:49 +08:00
|
|
|
|
|
|
|
def ray_deps_build_all():
|
|
|
|
gen_java_deps()
|
|
|
|
checkstyle_deps()
|
|
|
|
boost_deps()
|
|
|
|
prometheus_cpp_repositories()
|
|
|
|
python_configure(name = "local_config_python")
|
2019-06-17 19:00:50 +08:00
|
|
|
grpc_deps()
|
2019-06-26 05:31:19 +08:00
|
|
|
java_proto_compile()
|
|
|
|
python_proto_compile()
|
2019-06-17 19:00:50 +08:00
|
|
|
|