mirror of
https://github.com/vale981/ray
synced 2025-03-06 10:31:39 -05:00
19 lines
822 B
Python
19 lines
822 B
Python
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")
|
|
load("@com_github_grpc_grpc//bazel:grpc_deps.bzl", "grpc_deps")
|
|
load("@build_stack_rules_proto//java:deps.bzl", "java_proto_compile")
|
|
load("@build_stack_rules_proto//python:deps.bzl", "python_proto_compile")
|
|
|
|
|
|
def ray_deps_build_all():
|
|
gen_java_deps()
|
|
checkstyle_deps()
|
|
boost_deps()
|
|
prometheus_cpp_repositories()
|
|
python_configure(name = "local_config_python")
|
|
grpc_deps()
|
|
java_proto_compile()
|
|
python_proto_compile()
|