Fixed minor typo

Bug: 138207002
Test: m nothing
Change-Id: Idc6bc6ae9d7e4052da0c0bde6247bff47eab60be
This commit is contained in:
Paul Duffin 2019-07-25 14:44:56 +01:00
parent 8f7a3fc633
commit 036cacee51
1 changed files with 1 additions and 1 deletions

View File

@ -230,7 +230,7 @@ func PathsForModuleSrc(ctx ModuleContext, paths []string) Paths {
// references to OutputFileProducer modules using the ":name{.tag}" syntax. Properties passed as the paths or excludes // references to OutputFileProducer modules using the ":name{.tag}" syntax. Properties passed as the paths or excludes
// argument must have been annotated with struct tag `android:"path"` so that dependencies on SourceFileProducer modules // argument must have been annotated with struct tag `android:"path"` so that dependencies on SourceFileProducer modules
// will have already been handled by the path_properties mutator. If ctx.Config().AllowMissingDependencies() is // will have already been handled by the path_properties mutator. If ctx.Config().AllowMissingDependencies() is
// truethen any missing SourceFileProducer or OutputFileProducer dependencies will cause the module to be marked as // true then any missing SourceFileProducer or OutputFileProducer dependencies will cause the module to be marked as
// having missing dependencies. // having missing dependencies.
func PathsForModuleSrcExcludes(ctx ModuleContext, paths, excludes []string) Paths { func PathsForModuleSrcExcludes(ctx ModuleContext, paths, excludes []string) Paths {
ret, missingDeps := PathsAndMissingDepsForModuleSrcExcludes(ctx, paths, excludes) ret, missingDeps := PathsAndMissingDepsForModuleSrcExcludes(ctx, paths, excludes)