Declare manifest as input to test config fixer.

am: f192d55382

Change-Id: Ia10e74a3176d47b3324c44f52e6fbad9a6147bc8
This commit is contained in:
Jaewoong Jung
2019-12-17 16:18:52 -08:00
committed by android-build-merger

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)