diff options
author | 2024-09-11 13:26:20 -0700 | |
---|---|---|
committer | 2024-09-11 14:48:50 -0700 | |
commit | 4e2bf9fb2d3ede98da38a6574a17a6ec2d6bb84e (patch) | |
tree | fa8d381aefa64c98631867ccb1374da6c30221ca /android/paths.go | |
parent | e8a8783154dc31f3e09e3bb98a8b11233358097d (diff) |
Add HasMutatorFinished
To enforce that selects are only evaluated after a certain point
in a followup cl.
Bug: 323382414
Test: m nothing --no-skip-soong-tests
Change-Id: Ib215fedb904aa2e5f4d65cfd26a23f527eb4983e
Diffstat (limited to 'android/paths.go')
-rw-r--r-- | android/paths.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/android/paths.go b/android/paths.go index e45795989..6322f7566 100644 --- a/android/paths.go +++ b/android/paths.go @@ -94,6 +94,7 @@ type ModuleWithDepsPathContext interface { EarlyModulePathContext VisitDirectDepsBlueprint(visit func(blueprint.Module)) OtherModuleDependencyTag(m blueprint.Module) blueprint.DependencyTag + HasMutatorFinished(mutatorName string) bool } // ModuleMissingDepsPathContext is a subset of *ModuleContext methods required by |