diff options
Diffstat (limited to 'java/dexpreopt_config.go')
-rw-r--r-- | java/dexpreopt_config.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/java/dexpreopt_config.go b/java/dexpreopt_config.go index 72b61e323..e95b4cb1e 100644 --- a/java/dexpreopt_config.go +++ b/java/dexpreopt_config.go @@ -163,18 +163,6 @@ func defaultBootImageConfig(ctx android.PathContext) *bootImageConfig { return genBootImageConfigs(ctx)[frameworkBootImageName] } -func defaultBootclasspath(ctx android.PathContext) []string { - return ctx.Config().OnceStringSlice(defaultBootclasspathKey, func() []string { - global := dexpreopt.GetGlobalConfig(ctx) - image := defaultBootImageConfig(ctx) - - updatableBootclasspath := global.UpdatableBootJars.DevicePaths(ctx.Config(), android.Android) - - bootclasspath := append(copyOf(image.getAnyAndroidVariant().dexLocationsDeps), updatableBootclasspath...) - return bootclasspath - }) -} - // Updatable boot config allows to access build/install paths of updatable boot jars without going // through the usual trouble of registering dependencies on those modules and extracting build paths // from those dependencies. |