summaryrefslogtreecommitdiff
path: root/java/java.go
diff options
context:
space:
mode:
authorPete Gillin <peteg@google.com>2020-06-09 13:20:31 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2020-06-09 13:20:31 +0000
commitd7db79cc8b7cc2dbde919d95297b8dd917e7e831 (patch)
tree3b3baf0b6a1b051a57e1e1dc113e4c709056eab1 /java/java.go
parent4e372f7841c1b80178fa91110b34018d7e4d7ae8 (diff)
parent1f41dbff6434deac5c41047f34ed7d5d288e5497 (diff)
Merge "Split the core/platform API into stable and legacy versions."
Diffstat (limited to 'java/java.go')
-rw-r--r--java/java.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/java/java.go b/java/java.go
index 0ba1f5a7a..af68e56b7 100644
--- a/java/java.go
+++ b/java/java.go
@@ -837,8 +837,9 @@ type linkTypeContext interface {
func (m *Module) getLinkType(name string) (ret linkType, stubs bool) {
switch name {
- case "core.current.stubs", "core.platform.api.stubs", "stub-annotations",
- "private-stub-annotations-jar", "core-lambda-stubs", "core-generated-annotation-stubs":
+ case "core.current.stubs", "legacy.core.platform.api.stubs", "stable.core.platform.api.stubs",
+ "stub-annotations", "private-stub-annotations-jar",
+ "core-lambda-stubs", "core-generated-annotation-stubs":
return javaCore, true
case "android_stubs_current":
return javaSdk, true