diff options
Diffstat (limited to 'android/module.go')
-rw-r--r-- | android/module.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/android/module.go b/android/module.go index 197953679..8415118cb 100644 --- a/android/module.go +++ b/android/module.go @@ -539,13 +539,6 @@ func (t *CommonTestOptions) SetAndroidMkEntries(entries *AndroidMkEntries) { } } -func (t *CommonTestOptions) SetAndroidMkInfoEntries(entries *AndroidMkInfo) { - entries.SetBoolIfTrue("LOCAL_IS_UNIT_TEST", Bool(t.Unit_test)) - if len(t.Tags) > 0 { - entries.AddStrings("LOCAL_TEST_OPTIONS_TAGS", t.Tags...) - } -} - // The key to use in TaggedDistFiles when a Dist structure does not specify a // tag property. This intentionally does not use "" as the default because that // would mean that an empty tag would have a different meaning when used in a dist @@ -2083,10 +2076,6 @@ func (m *ModuleBase) GenerateBuildActions(blueprintCtx blueprint.ModuleContext) SetProvider(ctx, HostToolProviderKey, HostToolProviderData{ HostToolPath: h.HostToolPath()}) } - - if p, ok := m.module.(AndroidMkProviderInfoProducer); ok && !shouldSkipAndroidMkProcessing(ctx, m) { - SetProvider(ctx, AndroidMkInfoProvider, p.PrepareAndroidMKProviderInfo(ctx.Config())) - } } func SetJarJarPrefixHandler(handler func(ModuleContext)) { |