diff options
author | 2019-07-12 15:27:50 +0100 | |
---|---|---|
committer | 2019-07-18 05:51:08 +0000 | |
commit | 15332431202653927f1155d636db52e55e509fd3 (patch) | |
tree | d5979ac7665ee940576f595ef6a89f4916c2a0bc /build/codegen.go | |
parent | b08d5db0bebd9a17b6e66cb98aeedcc744f6d1eb (diff) |
Remove use of external/vixl/src in include_dirs
The include_dirs property is deprecated and no longer needed as the
libvixl[d] libraries export their include dirs directly.
Added support to the codegen extensions to allow header include dirs
from libvixl[d] to be re-exported from libart-compiler[d] as the
latter's exported headers include vixl exported headers.
Test: m checkbuild
Bug: 134379140
Change-Id: I6ad47b093cc25fc1486109fced1c2a238e75ff0d
Diffstat (limited to 'build/codegen.go')
-rw-r--r-- | build/codegen.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/build/codegen.go b/build/codegen.go index d0db78e571..aa942a76f8 100644 --- a/build/codegen.go +++ b/build/codegen.go @@ -114,10 +114,12 @@ type CodegenCommonArchProperties struct { type CodegenLibraryArchProperties struct { Static struct { - Whole_static_libs []string + Whole_static_libs []string + Export_static_lib_headers []string } Shared struct { - Shared_libs []string + Shared_libs []string + Export_shared_lib_headers []string } } |