diff options
author | 2021-05-21 22:46:59 +0100 | |
---|---|---|
committer | 2021-05-24 13:32:56 +0100 | |
commit | 18cf19745e2fffb184a7b42f50609ea98d4adb1d (patch) | |
tree | 747b4ea68bbe867faaa0172f571e2fb1b41e4931 /java/bootclasspath.go | |
parent | 62370923911827d0a9cf6103e47652f40ca2cd25 (diff) |
Remove bootclasspathApiInfo
Previously, the bootclasspathApiInfo was only used for tests and follow
up changes will need to provide the stub dex jars. This change moves
the stubJarsByKind into HiddenAPIInfo and removes bootclasspathApiInfo
and the corresponding provider.
Bug: 179354495
Test: m nothing
Change-Id: I5459c56de561c053ed671dc9d5cb3ee4820c0ee8
Diffstat (limited to 'java/bootclasspath.go')
-rw-r--r-- | java/bootclasspath.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/java/bootclasspath.go b/java/bootclasspath.go index 634959a7e..eddcc838b 100644 --- a/java/bootclasspath.go +++ b/java/bootclasspath.go @@ -235,12 +235,3 @@ func (p BootclasspathAPIProperties) sdkKindToStubLibs() map[android.SdkKind][]st m[android.SdkCorePlatform] = p.Core_platform_api.Stub_libs return m } - -// bootclasspathApiInfo contains paths resolved from BootclasspathAPIProperties -type bootclasspathApiInfo struct { - // stubJarsByKind maps from the android.SdkKind to the paths containing dex stub jars for each - // kind. - stubJarsByKind map[android.SdkKind]android.Paths -} - -var bootclasspathApiInfoProvider = blueprint.NewProvider(bootclasspathApiInfo{}) |