Merge "Add a function to check missing deps" am: 2259132d96
am: a8ce65d348
am: a16d1231f4
Original change: https://android-review.googlesource.com/c/platform/build/blueprint/+/2596965 Change-Id: I91f60789ff4771770dd9d30240c55d126708fe91 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
commit
fa824cd1ff
1 changed files with 6 additions and 0 deletions
|
@ -349,6 +349,8 @@ type BaseModuleContext interface {
|
|||
// is not of the appropriate type, or if the value has already been set. The value should not
|
||||
// be modified after being passed to SetProvider.
|
||||
SetProvider(provider ProviderKey, value interface{})
|
||||
|
||||
EarlyGetMissingDependencies() []string
|
||||
}
|
||||
|
||||
type DynamicDependerModuleContext BottomUpMutatorContext
|
||||
|
@ -807,6 +809,10 @@ func (m *moduleContext) GetMissingDependencies() []string {
|
|||
return m.module.missingDeps
|
||||
}
|
||||
|
||||
func (m *baseModuleContext) EarlyGetMissingDependencies() []string {
|
||||
return m.module.missingDeps
|
||||
}
|
||||
|
||||
//
|
||||
// MutatorContext
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue