diff options
Diffstat (limited to 'cc/library_headers.go')
| -rw-r--r-- | cc/library_headers.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cc/library_headers.go b/cc/library_headers.go index f2cb52baf..0aba8dea8 100644 --- a/cc/library_headers.go +++ b/cc/library_headers.go @@ -142,14 +142,13 @@ func CcLibraryHeadersBp2Build(ctx android.TopDownMutatorContext) { return } - exportedIncludes, exportedHdrs := bp2BuildParseExportedIncludes(ctx, module) + exportedIncludes := bp2BuildParseExportedIncludes(ctx, module) compilerAttrs := bp2BuildParseCompilerProps(ctx, module) linkerAttrs := bp2BuildParseLinkerProps(ctx, module) attrs := &bazelCcLibraryHeadersAttributes{ Copts: compilerAttrs.copts, Includes: exportedIncludes, - Hdrs: exportedHdrs, Deps: linkerAttrs.deps, } |