aboutsummaryrefslogtreecommitdiffstats
path: root/dexpreopt
diff options
context:
space:
mode:
authorNicolas Geoffray <ngeoffray@google.com>2019-02-20 10:00:47 +0000
committerNicolas Geoffray <ngeoffray@google.com>2019-02-20 10:00:47 +0000
commit39fe574a048ed8c20ae286a62be143f909f5ad02 (patch)
tree50671c2516f2b106ffa07828a38033a086ea7126 /dexpreopt
parente0233a5bdd560ad567dc716990ab17c3fe0c5a4f (diff)
downloadbuild_soong-39fe574a048ed8c20ae286a62be143f909f5ad02.tar.gz
build_soong-39fe574a048ed8c20ae286a62be143f909f5ad02.tar.bz2
build_soong-39fe574a048ed8c20ae286a62be143f909f5ad02.zip
Set a dedicated variable for the runtime apex libs.
Bug: 124789867 Test: build with coverage, the boot classpath has jacoco.jar in /system/framework, not the apex Change-Id: Iaa0762b5a674282be95710d0e1fb166a58ec893b
Diffstat (limited to 'dexpreopt')
-rw-r--r--dexpreopt/config.go2
-rw-r--r--dexpreopt/dexpreopt_test.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/dexpreopt/config.go b/dexpreopt/config.go
index 0eb162dc..ee3cc8db 100644
--- a/dexpreopt/config.go
+++ b/dexpreopt/config.go
@@ -36,7 +36,7 @@ type GlobalConfig struct {
BootJars []string // modules for jars that form the boot class path
- TargetCoreJars []string // modules for jars that are in the runtime apex
+ RuntimeApexJars []string // modules for jars that are in the runtime apex
ProductUpdatableBootModules []string
ProductUpdatableBootLocations []string
diff --git a/dexpreopt/dexpreopt_test.go b/dexpreopt/dexpreopt_test.go
index a2c6f776..949f91f3 100644
--- a/dexpreopt/dexpreopt_test.go
+++ b/dexpreopt/dexpreopt_test.go
@@ -29,7 +29,7 @@ var testGlobalConfig = GlobalConfig{
PatternsOnSystemOther: nil,
DisableGenerateProfile: false,
BootJars: nil,
- TargetCoreJars: nil,
+ RuntimeApexJars: nil,
ProductUpdatableBootModules: nil,
ProductUpdatableBootLocations: nil,
SystemServerJars: nil,