-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve labels in java_toolchain_default relative to java_tools repo
Usecase for `java_toolchain_default` is: ``` load("@remote_java_tools_linux//:java_toolchain_default.bzl", "java_toolchain_default) java_toolchain_default( name = "mytoolchain", javabuilder = ["//:VanillaJavaBuilder"], ) ``` In order to make the use easier, we need to resolve labels relatively to current repo. Otherwise the user would need to specify `javabuilder = ["@remote_java_tools_linux//:VanillaJavaBuilder"]`. Closes #12408. PiperOrigin-RevId: 340635441
- Loading branch information
1 parent
c1ae939
commit 65e818e
Showing
3 changed files
with
78 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters