Merge "Support test fixtures in dexpreopt package" am: 4ce31e448f
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1625387 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: If611e62cdd301efb7899221ba34fbc179ba33a9f
This commit is contained in:
commit
5a9dbbbb92
|
@ -45,3 +45,36 @@ func BpToolModulesForTest() string {
|
|||
}
|
||||
`
|
||||
}
|
||||
|
||||
// Prepares a test fixture by enabling dexpreopt.
|
||||
var PrepareForTestWithDexpreopt = FixtureModifyGlobalConfig(func(*GlobalConfig) {})
|
||||
|
||||
// FixtureModifyGlobalConfig enables dexpreopt (unless modified by the mutator) and modifies the
|
||||
// configuration.
|
||||
func FixtureModifyGlobalConfig(configModifier func(dexpreoptConfig *GlobalConfig)) android.FixturePreparer {
|
||||
return android.FixtureModifyConfig(func(config android.Config) {
|
||||
// Initialize the dexpreopt GlobalConfig to an empty structure. This has no effect if it has
|
||||
// already been set.
|
||||
pathCtx := android.PathContextForTesting(config)
|
||||
dexpreoptConfig := GlobalConfigForTests(pathCtx)
|
||||
SetTestGlobalConfig(config, dexpreoptConfig)
|
||||
|
||||
// Retrieve the existing configuration and modify it.
|
||||
dexpreoptConfig = GetGlobalConfig(pathCtx)
|
||||
configModifier(dexpreoptConfig)
|
||||
})
|
||||
}
|
||||
|
||||
// FixtureSetArtBootJars enables dexpreopt and sets the ArtApexJars property.
|
||||
func FixtureSetArtBootJars(bootJars ...string) android.FixturePreparer {
|
||||
return FixtureModifyGlobalConfig(func(dexpreoptConfig *GlobalConfig) {
|
||||
dexpreoptConfig.ArtApexJars = android.CreateTestConfiguredJarList(bootJars)
|
||||
})
|
||||
}
|
||||
|
||||
// FixtureSetBootJars enables dexpreopt and sets the BootJars property.
|
||||
func FixtureSetBootJars(bootJars ...string) android.FixturePreparer {
|
||||
return FixtureModifyGlobalConfig(func(dexpreoptConfig *GlobalConfig) {
|
||||
dexpreoptConfig.BootJars = android.CreateTestConfiguredJarList(bootJars)
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue