Skip to content

Commit

Permalink
Force enable Starlark py_binary, py_test, py_library
Browse files Browse the repository at this point in the history
The Java rule implementation of them has been deleted.

Work towards bazelbuild#15897

PiperOrigin-RevId: 514769735
Change-Id: Ie7fa8e0f9d51943547319c6514edf33f8c47299c
  • Loading branch information
rickeylev authored and fweikert committed May 25, 2023
1 parent f58cd4f commit 8215383
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/starlark/builtins_bzl/bazel/exports.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ exported_rules = {
"java_proto_library": java_proto_library,
"+cc_proto_library": cc_proto_library,
"+java_binary": java_binary,
"+py_binary": py_binary,
"+py_test": py_test,
"+py_library": py_library,
"py_binary": py_binary,
"py_test": py_test,
"py_library": py_library,
}
exported_to_java = {}

0 comments on commit 8215383

Please sign in to comment.