summaryrefslogtreecommitdiff
path: root/android/module.go
diff options
context:
space:
mode:
author Chaitanya Cheemala (xWF) <ccheemala@google.com> 2024-11-19 09:29:03 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-11-19 09:29:03 +0000
commite3a84fe7d64d6a96f656674cec93f72874f8f40c (patch)
tree56d01e1f16d1bfe059127b2571c5827871d60551 /android/module.go
parentd3d89ede5d31c6175915dc4516bf6cd5cb3cd350 (diff)
Revert "Do not allow vintf_fragments for modules installed in the filesystem"
This reverts commit d3d89ede5d31c6175915dc4516bf6cd5cb3cd350. Reason for revert: Likely culprit for b/379811732 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted. Change-Id: I9d70e7ae4a7c9663d6bc25f0291df615dfc6d58b
Diffstat (limited to 'android/module.go')
-rw-r--r--android/module.go5
1 files changed, 0 insertions, 5 deletions
diff --git a/android/module.go b/android/module.go
index 686a90ef0..ce995ad77 100644
--- a/android/module.go
+++ b/android/module.go
@@ -117,7 +117,6 @@ type Module interface {
HostRequiredModuleNames() []string
TargetRequiredModuleNames() []string
VintfFragmentModuleNames(ctx ConfigurableEvaluatorContext) []string
- VintfFragments(ctx ConfigurableEvaluatorContext) []string
ConfigurableEvaluator(ctx ConfigurableEvaluatorContext) proptools.ConfigurableEvaluator
@@ -1627,10 +1626,6 @@ func (m *ModuleBase) VintfFragmentModuleNames(ctx ConfigurableEvaluatorContext)
return m.base().commonProperties.Vintf_fragment_modules.GetOrDefault(m.ConfigurableEvaluator(ctx), nil)
}
-func (m *ModuleBase) VintfFragments(ctx ConfigurableEvaluatorContext) []string {
- return m.base().commonProperties.Vintf_fragments.GetOrDefault(m.ConfigurableEvaluator(ctx), nil)
-}
-
func (m *ModuleBase) generateVariantTarget(ctx *moduleContext) {
namespacePrefix := ctx.Namespace().id
if namespacePrefix != "" {