Use one mutator for all bp2build conversion.
Each conversion required defining a separate mutator, which will each operate on _all_ modules and requires each to repeat checks whether the mutator should operator. Instead, we introduce a single mutator and modules can define a ConvertWithBp2build to implement bp2build conversion for that module. Test: bp2build.sh Bug: 183079158 Change-Id: I99d4b51f441c2903879092c5b56313d606d4338d
This commit is contained in:
@@ -43,11 +43,10 @@ func registerApexModuleTypes(ctx android.RegistrationContext) {
|
||||
|
||||
func TestApexBundleSimple(t *testing.T) {
|
||||
runApexTestCase(t, bp2buildTestCase{
|
||||
description: "apex - example with all props",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
moduleTypeUnderTestBp2BuildMutator: apex.ApexBundleBp2Build,
|
||||
filesystem: map[string]string{},
|
||||
description: "apex - example with all props",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
filesystem: map[string]string{},
|
||||
blueprint: `
|
||||
apex_key {
|
||||
name: "com.android.apogee.key",
|
||||
@@ -147,11 +146,10 @@ apex {
|
||||
|
||||
func TestApexBundleDefaultPropertyValues(t *testing.T) {
|
||||
runApexTestCase(t, bp2buildTestCase{
|
||||
description: "apex - default property values",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
moduleTypeUnderTestBp2BuildMutator: apex.ApexBundleBp2Build,
|
||||
filesystem: map[string]string{},
|
||||
description: "apex - default property values",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
filesystem: map[string]string{},
|
||||
blueprint: `
|
||||
apex {
|
||||
name: "com.android.apogee",
|
||||
@@ -166,11 +164,10 @@ apex {
|
||||
|
||||
func TestApexBundleHasBazelModuleProps(t *testing.T) {
|
||||
runApexTestCase(t, bp2buildTestCase{
|
||||
description: "apex - has bazel module props",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
moduleTypeUnderTestBp2BuildMutator: apex.ApexBundleBp2Build,
|
||||
filesystem: map[string]string{},
|
||||
description: "apex - has bazel module props",
|
||||
moduleTypeUnderTest: "apex",
|
||||
moduleTypeUnderTestFactory: apex.BundleFactory,
|
||||
filesystem: map[string]string{},
|
||||
blueprint: `
|
||||
apex {
|
||||
name: "apogee",
|
||||
|
Reference in New Issue
Block a user