diff options
author | 2024-08-15 22:13:04 +0000 | |
---|---|---|
committer | 2024-08-15 22:13:04 +0000 | |
commit | 334efc0fb1c53ff7aeeafea45deb890e47a08154 (patch) | |
tree | fb1ae6b744326d506804f5c058f26e655b967bdb /apex/prebuilt.go | |
parent | d0ea3f6a84ec9fff18f3c5733e452d4662b47d5e (diff) | |
parent | bcc2ef06e7361cd44c78fd763c5adae3f3085a01 (diff) |
Merge "Improve docs for Deapexer modules" into main
Diffstat (limited to 'apex/prebuilt.go')
-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 65278c9b1..8cdfb8974 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())) } } |