summaryrefslogtreecommitdiff
path: root/rust/androidmk.go
diff options
context:
space:
mode:
author Ivan Lozano <ivanlozano@google.com> 2024-04-11 13:20:46 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2024-04-11 13:20:46 +0000
commit2aee601e95a04436805785a453da9b73a6a19abc (patch)
tree84502906a34d56c46140855742821b1c550ac2e4 /rust/androidmk.go
parentd344c35e94143bd2a051a1fe4eff3befe0732e11 (diff)
parent1dbfa144f9d63000bb0c55c9d86de55c800463dd (diff)
Merge "rust: Fix handling of bindgen header libs" into main
Diffstat (limited to 'rust/androidmk.go')
-rw-r--r--rust/androidmk.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/rust/androidmk.go b/rust/androidmk.go
index 4ae907c44..021dd6067 100644
--- a/rust/androidmk.go
+++ b/rust/androidmk.go
@@ -62,6 +62,7 @@ func (mod *Module) AndroidMkEntries() []android.AndroidMkEntries {
entries.AddStrings("LOCAL_PROC_MACRO_LIBRARIES", mod.Properties.AndroidMkProcMacroLibs...)
entries.AddStrings("LOCAL_SHARED_LIBRARIES", mod.transitiveAndroidMkSharedLibs.ToList()...)
entries.AddStrings("LOCAL_STATIC_LIBRARIES", mod.Properties.AndroidMkStaticLibs...)
+ entries.AddStrings("LOCAL_HEADER_LIBRARIES", mod.Properties.AndroidMkHeaderLibs...)
entries.AddStrings("LOCAL_SOONG_LINK_TYPE", mod.makeLinkType)
if mod.InVendor() {
entries.SetBool("LOCAL_IN_VENDOR", true)