Commit e4baf3f5 authored by cgrushko's avatar cgrushko Committed by GitHub

Add a proto_lang_toolchain for Java

This allows easy use of Bazel's java_proto_library native rule.
parent e53dd993
......@@ -771,7 +771,14 @@ internal_protobuf_py_tests(
proto_lang_toolchain(
name = "cc_toolchain",
runtime = ":protobuf",
command_line = "--cpp_out=$(OUT)",
runtime = ":protobuf",
visibility = ["//visibility:public"],
)
proto_lang_toolchain(
name = "java_toolchain",
command_line = "--java_out=$(OUT)",
runtime = ":protobuf_java",
visibility = ["//visibility:public"],
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment