diff options
author | 2024-08-14 18:55:59 +0000 | |
---|---|---|
committer | 2024-08-14 18:55:59 +0000 | |
commit | bcc2ef06e7361cd44c78fd763c5adae3f3085a01 (patch) | |
tree | 02e844e0ebbceafe2a53f15ebb22fa8719ba38f6 | |
parent | 8bf4079e5fb2e6cfabb4d2bd197fab2ea1ca8086 (diff) |
Improve docs for Deapexer modules
The provider does not get bubbled up, so remove this misleading comment.
Test: doc change
Change-Id: Ife110aa75c8910042cf9c6e358a44d1a5cf4f5c3
-rw-r--r-- | apex/prebuilt.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apex/prebuilt.go b/apex/prebuilt.go index 20a13c38b..afb900afb 100644 --- a/apex/prebuilt.go +++ b/apex/prebuilt.go @@ -779,7 +779,7 @@ func (p *Prebuilt) ComponentDepsMutator(ctx android.BottomUpMutatorContext) { func (p *prebuiltCommon) DepsMutator(ctx android.BottomUpMutatorContext) { if p.hasExportedDeps() { // Create a dependency from the prebuilt apex (prebuilt_apex/apex_set) to the internal deapexer module - // The deapexer will return a provider that will be bubbled up to the rdeps of apexes (e.g. dex_bootjars) + // The deapexer will return a provider which will be used to determine the exported artfifacts from this prebuilt. ctx.AddDependency(ctx.Module(), android.DeapexerTag, deapexerModuleName(p.Name())) } } |