diff options
Diffstat (limited to 'android/testing.go')
-rw-r--r-- | android/testing.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/android/testing.go b/android/testing.go index 3d0300a01..78afaa5fc 100644 --- a/android/testing.go +++ b/android/testing.go @@ -183,7 +183,6 @@ func NewTestArchContext(config Config) *TestContext { type TestContext struct { *Context preArch, preDeps, postDeps, finalDeps []RegisterMutatorFunc - bp2buildPreArch, bp2buildMutators []RegisterMutatorFunc NameResolver *NameResolver // The list of singletons registered for the test. @@ -219,12 +218,6 @@ func (ctx *TestContext) FinalDepsMutators(f RegisterMutatorFunc) { ctx.finalDeps = append(ctx.finalDeps, f) } -// PreArchBp2BuildMutators adds mutators to be register for converting Android Blueprint modules -// into Bazel BUILD targets that should run prior to deps and conversion. -func (ctx *TestContext) PreArchBp2BuildMutators(f RegisterMutatorFunc) { - ctx.bp2buildPreArch = append(ctx.bp2buildPreArch, f) -} - func (ctx *TestContext) OtherModuleProviderAdaptor() OtherModuleProviderContext { return NewOtherModuleProviderAdaptor(func(module blueprint.Module, provider blueprint.AnyProviderKey) (any, bool) { return ctx.moduleProvider(module, provider) |