Pass DEXPREOPT_BOOT_JARS_MODULES to Make am: 9be4152c21 am: 2b34ef2fd3

am: edc6b9c1e0

Change-Id: I3e8ed02d1b95393bd2203758e426678e803f7671
This commit is contained in:
Colin Cross 2019-02-22 20:43:50 -08:00 committed by android-build-merger
commit 4dab988c4c
3 changed files with 3 additions and 6 deletions

View file

@ -775,10 +775,6 @@ func (c *config) BootJars() []string {
return c.productVariables.BootJars
}
func (c *config) PreoptBootJars() []string {
return c.productVariables.PreoptBootJars
}
func (c *config) DexpreoptGlobalConfig() string {
return String(c.productVariables.DexpreoptGlobalConfig)
}

View file

@ -201,7 +201,6 @@ type productVariables struct {
ModulesLoadedByPrivilegedModules []string `json:",omitempty"`
BootJars []string `json:",omitempty"`
PreoptBootJars []string `json:",omitempty"`
IntegerOverflowExcludePaths []string `json:",omitempty"`

View file

@ -151,4 +151,6 @@ func init() {
func dexpreoptConfigMakevars(ctx android.MakeVarsContext) {
ctx.Strict("PRODUCT_BOOTCLASSPATH", strings.Join(defaultBootclasspath(ctx), ":"))
ctx.Strict("PRODUCT_SYSTEM_SERVER_CLASSPATH", strings.Join(systemServerClasspath(ctx), ":"))
ctx.Strict("DEXPREOPT_BOOT_JARS_MODULES", strings.Join(defaultBootImageConfig(ctx).modules, ":"))
}