diff options
author | 2025-02-13 10:10:18 -0800 | |
---|---|---|
committer | 2025-02-13 10:10:18 -0800 | |
commit | cc5cf314dde14d579d8b347f09ca485be4c40d80 (patch) | |
tree | e4091daddff1da87489d41ac36ff289192a74d27 /android/module.go | |
parent | e9be6473d5178e395e50859b650b29365dafe738 (diff) | |
parent | 6d8fc1058d81e2e989c82b8e1e0c53278a3fb8f1 (diff) |
Merge changes from topic "partial-compile-clean" into main
* changes:
config: make partialCompileFlags visible
Add partialcompileclean phony
Add PhonyOutput to BuildParams
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android/module.go b/android/module.go index 3295e93be..578e1889c 100644 --- a/android/module.go +++ b/android/module.go @@ -3001,6 +3001,9 @@ func AddAncestors(ctx SingletonContext, dirMap map[string]Paths, mmName func(str func (c *buildTargetSingleton) GenerateBuildActions(ctx SingletonContext) { var checkbuildDeps Paths + // Create a top level partialcompileclean target for modules to add dependencies to. + ctx.Phony("partialcompileclean") + mmTarget := func(dir string) string { return "MODULES-IN-" + strings.Replace(filepath.Clean(dir), "/", "-", -1) } |