Declare manifest as input to test config fixer. am: f192d55382 am: 425dd46e31

Change-Id: I069a927b21f907db64091c9e3cb6a3d4158a1431
This commit is contained in:
Automerger Merge Worker
2019-12-18 00:30:48 +00:00

View File

@@ -646,7 +646,7 @@ func (a *AndroidTest) GenerateAndroidBuildActions(ctx android.ModuleContext) {
fixedConfig := android.PathForModuleOut(ctx, "test_config_fixer", "AndroidTest.xml")
rule := android.NewRuleBuilder()
rule.Command().BuiltTool(ctx, "test_config_fixer").
FlagWithArg("--manifest ", a.manifestPath.String()).
FlagWithInput("--manifest ", a.manifestPath).
FlagWithArg("--package-name ", *a.overridableAppProperties.Package_name).
Input(a.testConfig).
Output(fixedConfig)