Merge "Split SYSTEMSERVERCLASSPATH entries from platform_bootclasspath."
This commit is contained in:
@@ -65,6 +65,7 @@ bootstrap_go_package {
|
|||||||
"sdk_library_external.go",
|
"sdk_library_external.go",
|
||||||
"support_libraries.go",
|
"support_libraries.go",
|
||||||
"system_modules.go",
|
"system_modules.go",
|
||||||
|
"systemserver_classpath_fragment.go",
|
||||||
"testing.go",
|
"testing.go",
|
||||||
"tradefed.go",
|
"tradefed.go",
|
||||||
],
|
],
|
||||||
@@ -91,6 +92,7 @@ bootstrap_go_package {
|
|||||||
"rro_test.go",
|
"rro_test.go",
|
||||||
"sdk_test.go",
|
"sdk_test.go",
|
||||||
"system_modules_test.go",
|
"system_modules_test.go",
|
||||||
|
"systemserver_classpath_fragment_test.go",
|
||||||
],
|
],
|
||||||
pluginFor: ["soong_build"],
|
pluginFor: ["soong_build"],
|
||||||
}
|
}
|
||||||
|
@@ -58,6 +58,8 @@ type classpathFragment interface {
|
|||||||
type ClasspathFragmentBase struct {
|
type ClasspathFragmentBase struct {
|
||||||
properties classpathFragmentProperties
|
properties classpathFragmentProperties
|
||||||
|
|
||||||
|
classpathType classpathType
|
||||||
|
|
||||||
outputFilepath android.OutputPath
|
outputFilepath android.OutputPath
|
||||||
installDirPath android.InstallPath
|
installDirPath android.InstallPath
|
||||||
}
|
}
|
||||||
@@ -67,8 +69,9 @@ func (c *ClasspathFragmentBase) classpathFragmentBase() *ClasspathFragmentBase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Initializes ClasspathFragmentBase struct. Must be called by all modules that include ClasspathFragmentBase.
|
// Initializes ClasspathFragmentBase struct. Must be called by all modules that include ClasspathFragmentBase.
|
||||||
func initClasspathFragment(c classpathFragment) {
|
func initClasspathFragment(c classpathFragment, classpathType classpathType) {
|
||||||
base := c.classpathFragmentBase()
|
base := c.classpathFragmentBase()
|
||||||
|
base.classpathType = classpathType
|
||||||
c.AddProperties(&base.properties)
|
c.AddProperties(&base.properties)
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -87,9 +90,17 @@ func (c *ClasspathFragmentBase) generateClasspathProtoBuildActions(ctx android.M
|
|||||||
c.installDirPath = android.PathForModuleInstall(ctx, "etc", "classpaths")
|
c.installDirPath = android.PathForModuleInstall(ctx, "etc", "classpaths")
|
||||||
|
|
||||||
var jars []classpathJar
|
var jars []classpathJar
|
||||||
jars = appendClasspathJar(jars, BOOTCLASSPATH, defaultBootclasspath(ctx)...)
|
switch c.classpathType {
|
||||||
jars = appendClasspathJar(jars, DEX2OATBOOTCLASSPATH, defaultBootImageConfig(ctx).getAnyAndroidVariant().dexLocationsDeps...)
|
case BOOTCLASSPATH:
|
||||||
jars = appendClasspathJar(jars, SYSTEMSERVERCLASSPATH, systemServerClasspath(ctx)...)
|
jars = appendClasspathJar(jars, BOOTCLASSPATH, defaultBootclasspath(ctx)...)
|
||||||
|
jars = appendClasspathJar(jars, DEX2OATBOOTCLASSPATH, defaultBootImageConfig(ctx).getAnyAndroidVariant().dexLocationsDeps...)
|
||||||
|
case SYSTEMSERVERCLASSPATH:
|
||||||
|
jars = appendClasspathJar(jars, SYSTEMSERVERCLASSPATH, systemServerClasspath(ctx)...)
|
||||||
|
default:
|
||||||
|
// Only supported classpath fragments are BOOTCLASSPATH and SYSTEMSERVERCLASSPATH.
|
||||||
|
// DEX2OATBOOTCLASSPATH is a special case of BOOTCLASSPATH and is auto-generated.
|
||||||
|
panic(fmt.Errorf("found %v, expected either BOOTCLASSPATH or SYSTEMSERVERCLASSPATH", c.classpathType))
|
||||||
|
}
|
||||||
|
|
||||||
generatedJson := android.PathForModuleOut(ctx, outputFilename+".json")
|
generatedJson := android.PathForModuleOut(ctx, outputFilename+".json")
|
||||||
writeClasspathsJson(ctx, generatedJson, jars)
|
writeClasspathsJson(ctx, generatedJson, jars)
|
||||||
|
@@ -72,8 +72,8 @@ type platformBootclasspathProperties struct {
|
|||||||
func platformBootclasspathFactory() android.SingletonModule {
|
func platformBootclasspathFactory() android.SingletonModule {
|
||||||
m := &platformBootclasspathModule{}
|
m := &platformBootclasspathModule{}
|
||||||
m.AddProperties(&m.properties)
|
m.AddProperties(&m.properties)
|
||||||
// TODO(satayev): split systemserver and apex jars into separate configs.
|
// TODO(satayev): split apex jars into separate configs.
|
||||||
initClasspathFragment(m)
|
initClasspathFragment(m, BOOTCLASSPATH)
|
||||||
android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
|
android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
|
||||||
return m
|
return m
|
||||||
}
|
}
|
||||||
|
50
java/systemserver_classpath_fragment.go
Normal file
50
java/systemserver_classpath_fragment.go
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
// Copyright 2021 Google Inc. All rights reserved.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package java
|
||||||
|
|
||||||
|
import (
|
||||||
|
"android/soong/android"
|
||||||
|
)
|
||||||
|
|
||||||
|
func init() {
|
||||||
|
registerSystemserverClasspathBuildComponents(android.InitRegistrationContext)
|
||||||
|
}
|
||||||
|
|
||||||
|
func registerSystemserverClasspathBuildComponents(ctx android.RegistrationContext) {
|
||||||
|
// TODO(satayev): add systemserver_classpath_fragment module
|
||||||
|
ctx.RegisterModuleType("platform_systemserverclasspath", platformSystemServerClasspathFactory)
|
||||||
|
}
|
||||||
|
|
||||||
|
type platformSystemServerClasspathModule struct {
|
||||||
|
android.ModuleBase
|
||||||
|
|
||||||
|
ClasspathFragmentBase
|
||||||
|
}
|
||||||
|
|
||||||
|
func platformSystemServerClasspathFactory() android.Module {
|
||||||
|
m := &platformSystemServerClasspathModule{}
|
||||||
|
initClasspathFragment(m, SYSTEMSERVERCLASSPATH)
|
||||||
|
android.InitAndroidArchModule(m, android.DeviceSupported, android.MultilibCommon)
|
||||||
|
return m
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *platformSystemServerClasspathModule) AndroidMkEntries() (entries []android.AndroidMkEntries) {
|
||||||
|
return b.classpathFragmentBase().androidMkEntries()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (b *platformSystemServerClasspathModule) GenerateAndroidBuildActions(ctx android.ModuleContext) {
|
||||||
|
// TODO(satayev): split apex jars into separate configs.
|
||||||
|
b.classpathFragmentBase().generateClasspathProtoBuildActions(ctx)
|
||||||
|
}
|
97
java/systemserver_classpath_fragment_test.go
Normal file
97
java/systemserver_classpath_fragment_test.go
Normal file
@@ -0,0 +1,97 @@
|
|||||||
|
// Copyright (C) 2021 The Android Open Source Project
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License.
|
||||||
|
// You may obtain a copy of the License at
|
||||||
|
//
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
|
||||||
|
package java
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"android/soong/android"
|
||||||
|
)
|
||||||
|
|
||||||
|
var prepareForTestWithSystemserverClasspath = android.GroupFixturePreparers(
|
||||||
|
PrepareForTestWithJavaDefaultModules,
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestSystemserverClasspathVariant(t *testing.T) {
|
||||||
|
result := android.GroupFixturePreparers(
|
||||||
|
prepareForTestWithSystemserverClasspath,
|
||||||
|
android.FixtureWithRootAndroidBp(`
|
||||||
|
platform_systemserverclasspath {
|
||||||
|
name: "platform-systemserverclasspath",
|
||||||
|
}
|
||||||
|
`),
|
||||||
|
).RunTest(t)
|
||||||
|
|
||||||
|
variants := result.ModuleVariantsForTests("platform-systemserverclasspath")
|
||||||
|
android.AssertIntEquals(t, "expect 1 variant", 1, len(variants))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSystemserverClasspath_ClasspathFragmentPaths(t *testing.T) {
|
||||||
|
result := android.GroupFixturePreparers(
|
||||||
|
prepareForTestWithSystemserverClasspath,
|
||||||
|
android.FixtureWithRootAndroidBp(`
|
||||||
|
platform_systemserverclasspath {
|
||||||
|
name: "platform-systemserverclasspath",
|
||||||
|
}
|
||||||
|
`),
|
||||||
|
).RunTest(t)
|
||||||
|
|
||||||
|
p := result.Module("platform-systemserverclasspath", "android_common").(*platformSystemServerClasspathModule)
|
||||||
|
android.AssertStringEquals(t, "output filepath", p.Name()+".pb", p.ClasspathFragmentBase.outputFilepath.Base())
|
||||||
|
android.AssertPathRelativeToTopEquals(t, "install filepath", "out/soong/target/product/test_device/system/etc/classpaths", p.ClasspathFragmentBase.installDirPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestSystemserverClasspathModule_AndroidMkEntries(t *testing.T) {
|
||||||
|
preparer := android.GroupFixturePreparers(
|
||||||
|
prepareForTestWithSystemserverClasspath,
|
||||||
|
android.FixtureWithRootAndroidBp(`
|
||||||
|
platform_systemserverclasspath {
|
||||||
|
name: "platform-systemserverclasspath",
|
||||||
|
}
|
||||||
|
`),
|
||||||
|
)
|
||||||
|
|
||||||
|
t.Run("AndroidMkEntries", func(t *testing.T) {
|
||||||
|
result := preparer.RunTest(t)
|
||||||
|
|
||||||
|
p := result.Module("platform-systemserverclasspath", "android_common").(*platformSystemServerClasspathModule)
|
||||||
|
|
||||||
|
entries := android.AndroidMkEntriesForTest(t, result.TestContext, p)
|
||||||
|
android.AssertIntEquals(t, "AndroidMkEntries count", 1, len(entries))
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("classpath-fragment-entry", func(t *testing.T) {
|
||||||
|
result := preparer.RunTest(t)
|
||||||
|
|
||||||
|
want := map[string][]string{
|
||||||
|
"LOCAL_MODULE": {"platform-systemserverclasspath"},
|
||||||
|
"LOCAL_MODULE_CLASS": {"ETC"},
|
||||||
|
"LOCAL_INSTALLED_MODULE_STEM": {"platform-systemserverclasspath.pb"},
|
||||||
|
// Output and Install paths are tested separately in TestSystemserverClasspath_ClasspathFragmentPaths
|
||||||
|
}
|
||||||
|
|
||||||
|
p := result.Module("platform-systemserverclasspath", "android_common").(*platformSystemServerClasspathModule)
|
||||||
|
|
||||||
|
entries := android.AndroidMkEntriesForTest(t, result.TestContext, p)
|
||||||
|
got := entries[0]
|
||||||
|
for k, expectedValue := range want {
|
||||||
|
if value, ok := got.EntryMap[k]; ok {
|
||||||
|
android.AssertDeepEquals(t, k, expectedValue, value)
|
||||||
|
} else {
|
||||||
|
t.Errorf("No %s defined, saw %q", k, got.EntryMap)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
@@ -244,6 +244,7 @@ func registerRequiredBuildComponentsForTest(ctx android.RegistrationContext) {
|
|||||||
RegisterSdkLibraryBuildComponents(ctx)
|
RegisterSdkLibraryBuildComponents(ctx)
|
||||||
RegisterStubsBuildComponents(ctx)
|
RegisterStubsBuildComponents(ctx)
|
||||||
RegisterSystemModulesBuildComponents(ctx)
|
RegisterSystemModulesBuildComponents(ctx)
|
||||||
|
registerSystemserverClasspathBuildComponents(ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
// gatherRequiredDepsForTest gathers the module definitions used by
|
// gatherRequiredDepsForTest gathers the module definitions used by
|
||||||
|
Reference in New Issue
Block a user