diff options
author | 2019-07-12 15:27:50 +0100 | |
---|---|---|
committer | 2019-07-18 07:11:25 +0100 | |
commit | 74f89afefe21aba666700a1bb2651c58b25e6988 (patch) | |
tree | daba83598cdfc57d6377404fe4c57f34927c1f15 /build/codegen.go | |
parent | 15332431202653927f1155d636db52e55e509fd3 (diff) |
Remove Export_static_lib_headers from codegen
It is not necessary to export headers from static libraries included
using whole_static_libs as that automatically exports the headers.
Test: m checkbuild
Bug: 134379140
Change-Id: Iea85dedf91f404739d12b3a7971cd87c02e1ab6d
Exempt-From-Owner-Approval: needed to fix build failure
Diffstat (limited to 'build/codegen.go')
-rw-r--r-- | build/codegen.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/build/codegen.go b/build/codegen.go index aa942a76f8..f407e5d02a 100644 --- a/build/codegen.go +++ b/build/codegen.go @@ -114,8 +114,7 @@ type CodegenCommonArchProperties struct { type CodegenLibraryArchProperties struct { Static struct { - Whole_static_libs []string - Export_static_lib_headers []string + Whole_static_libs []string } Shared struct { Shared_libs []string |