-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
@_builtins
`java_common` needs to remain (minimally exported) for private APIs PiperOrigin-RevId: 698412708 Change-Id: I58708761e7abbc63013f75276b1cd1f98c11430f
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ load(":common/cc/fdo/fdo_profile.bzl", "fdo_profile") | |
load(":common/cc/fdo/memprof_profile.bzl", "memprof_profile") | ||
load(":common/cc/fdo/propeller_optimize.bzl", "propeller_optimize") | ||
load(":common/java/java_common.bzl", "java_common") | ||
load(":common/java/java_info.bzl", "JavaInfo", "JavaPluginInfo") | ||
load(":common/objc/apple_common.bzl", "apple_common") | ||
load(":common/objc/objc_common.bzl", "objc_common") | ||
|
||
|
@@ -49,9 +48,7 @@ exported_toplevels = { | |
"CcSharedLibraryInfo": CcSharedLibraryInfo, | ||
"CcSharedLibraryHintInfo": CcSharedLibraryHintInfo, | ||
"cc_common": cc_common, | ||
"+JavaPluginInfo": JavaPluginInfo, | ||
"+JavaInfo": JavaInfo, | ||
"java_common": java_common, | ||
"java_common": struct(internal_DO_NOT_USE = java_common.internal_DO_NOT_USE), | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
comius
Contributor
|
||
"apple_common": apple_common, | ||
} | ||
|
||
|
@hvadehra This causes failures when a ruleset uses
java_common
without a load and autoload doesn't seem to prevent that. Is that an intentional breaking change?