Track changes to add core-simple to the boot cp

See the change in build/make for details.

Bug: 113148576
Test: make checkbuild / Treehugger
Change-Id: I6f7901642c6b907b1e8e9dd31ced3bf1ea6dfd4d
This commit is contained in:
Neil Fuller
2018-08-24 14:45:18 +01:00
parent ea5019a407
commit 6095259f5b
2 changed files with 5 additions and 3 deletions

View File

@@ -27,7 +27,7 @@ import (
var ( var (
pctx = android.NewPackageContext("android/soong/java/config") pctx = android.NewPackageContext("android/soong/java/config")
DefaultBootclasspathLibraries = []string{"core-oj", "core-libart"} DefaultBootclasspathLibraries = []string{"core-oj", "core-libart", "core-simple"}
DefaultSystemModules = "core-system-modules" DefaultSystemModules = "core-system-modules"
DefaultLibraries = []string{"ext", "framework", "okhttp"} DefaultLibraries = []string{"ext", "framework", "okhttp"}
DefaultLambdaStubsLibrary = "core-lambda-stubs" DefaultLambdaStubsLibrary = "core-lambda-stubs"
@@ -43,6 +43,7 @@ var (
"android.car7", "android.car7",
"core-oj", "core-oj",
"core-libart", "core-libart",
"core-simple",
} }
ManifestMergerClasspath = []string{ ManifestMergerClasspath = []string{

View File

@@ -101,6 +101,7 @@ func testContext(config android.Config, bp string,
"core-oj", "core-oj",
"core-libart", "core-libart",
"core-lambda-stubs", "core-lambda-stubs",
"core-simple",
"framework", "framework",
"ext", "ext",
"okhttp", "okhttp",
@@ -353,14 +354,14 @@ var classpathTestcases = []struct {
}{ }{
{ {
name: "default", name: "default",
bootclasspath: []string{"core-oj", "core-libart"}, bootclasspath: []string{"core-oj", "core-libart", "core-simple"},
system: "core-system-modules", system: "core-system-modules",
classpath: []string{"ext", "framework", "okhttp"}, classpath: []string{"ext", "framework", "okhttp"},
}, },
{ {
name: "blank sdk version", name: "blank sdk version",
properties: `sdk_version: "",`, properties: `sdk_version: "",`,
bootclasspath: []string{"core-oj", "core-libart"}, bootclasspath: []string{"core-oj", "core-libart", "core-simple"},
system: "core-system-modules", system: "core-system-modules",
classpath: []string{"ext", "framework", "okhttp"}, classpath: []string{"ext", "framework", "okhttp"},
}, },