From 1b297b02d29bbfe95c43c82aa049d8648d69cc84 Mon Sep 17 00:00:00 2001 From: Devin Moore Date: Wed, 22 Jan 2025 00:45:34 +0000 Subject: [PATCH] Add vintf_data inputPaths as Implicits to build command This allows for incremental builds when the source files are modified. Test: m Bug: none Change-Id: Icd21a826a3831e92ce2bdcc6aefa9924ec64c3a5 --- android/vintf_data.go | 1 + 1 file changed, 1 insertion(+) diff --git a/android/vintf_data.go b/android/vintf_data.go index 401f4d2e5..2909817d3 100644 --- a/android/vintf_data.go +++ b/android/vintf_data.go @@ -140,6 +140,7 @@ func (m *vintfDataRule) GenerateAndroidBuildActions(ctx ModuleContext) { // Process vintf fragment source file with assemble_vintf tool builder.Command(). + Implicits(inputPaths). Flags(assembleVintfEnvs). BuiltTool("assemble_vintf"). FlagWithArg("-i ", strings.Join(inputPaths.Strings(), ":")).