Merge "object files depend only on NDK headers"

This commit is contained in:
Chih-hung Hsieh
2021-12-07 02:00:50 +00:00
committed by Gerrit Code Review
5 changed files with 15 additions and 23 deletions

View File

@@ -412,6 +412,7 @@ func (binary *binaryDecorator) link(ctx ModuleContext,
linkerDeps = append(linkerDeps, deps.EarlySharedLibsDeps...)
linkerDeps = append(linkerDeps, deps.SharedLibsDeps...)
linkerDeps = append(linkerDeps, deps.LateSharedLibsDeps...)
linkerDeps = append(linkerDeps, ndkSharedLibDeps(ctx)...)
}
validations = append(validations, objs.tidyFiles...)