Skip to content

Commit 1f8cd87

Browse files
Ian Childsfacebook-github-bot
Ian Childs
authored andcommitted
Add few more Java and Kotlin system toolchains
Summary: We really do have too many of these Reviewed By: blackm00n Differential Revision: D74076435 fbshipit-source-id: aa0d61fbb987b114e135494d0fe90fda4b318bba
1 parent 3e8aab3 commit 1f8cd87

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

prelude/toolchains/demo.bzl

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,18 @@ def system_demo_toolchains():
7878
visibility = ["PUBLIC"],
7979
)
8080

81+
system_java_bootstrap_toolchain(
82+
name = "java_graalvm_bootstrap",
83+
java = ":java_tool",
84+
visibility = ["PUBLIC"],
85+
)
86+
87+
system_java_bootstrap_toolchain(
88+
name = "java_for_android",
89+
java = ":java_tool",
90+
visibility = ["PUBLIC"],
91+
)
92+
8193
system_java_tool(
8294
name = "java_tool",
8395
tool_name = "java",
@@ -95,6 +107,11 @@ def system_demo_toolchains():
95107
visibility = ["PUBLIC"],
96108
)
97109

110+
system_kotlin_bootstrap_toolchain(
111+
name = "kotlin_for_android",
112+
visibility = ["PUBLIC"],
113+
)
114+
98115
system_ocaml_toolchain(
99116
name = "ocaml",
100117
visibility = ["PUBLIC"],

0 commit comments

Comments
 (0)