diff options
Diffstat (limited to 'cc/prebuilt.go')
| -rw-r--r-- | cc/prebuilt.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cc/prebuilt.go b/cc/prebuilt.go index f92c50d1e..dc6c43a7c 100644 --- a/cc/prebuilt.go +++ b/cc/prebuilt.go @@ -85,9 +85,11 @@ func (p *prebuiltLibraryLinker) link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path { // TODO(ccross): verify shared library dependencies if len(p.properties.Srcs) > 0 { - p.libraryDecorator.exportIncludes(ctx, "-I") - p.libraryDecorator.reexportFlags(deps.ReexportedFlags) - p.libraryDecorator.reexportDeps(deps.ReexportedFlagsDeps) + p.libraryDecorator.exportIncludes(ctx) + p.libraryDecorator.reexportDirs(deps.ReexportedDirs...) + p.libraryDecorator.reexportSystemDirs(deps.ReexportedSystemDirs...) + p.libraryDecorator.reexportFlags(deps.ReexportedFlags...) + p.libraryDecorator.reexportDeps(deps.ReexportedDeps...) builderFlags := flagsToBuilderFlags(flags) |