summaryrefslogtreecommitdiff
path: root/rust/androidmk.go
diff options
context:
space:
mode:
author Ivan Lozano <ivanlozano@google.com> 2020-12-11 13:44:31 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-12-11 13:44:31 +0000
commit90f5c1d5d66581b25671adcdbea8edcc098f7ed5 (patch)
tree0f18d1c71d5c0711ad7b7634c7803df2e45d1bb9 /rust/androidmk.go
parentf48c89cd39c89834cd9b579db334cfbdc42091f0 (diff)
parent6a88443089849454d45135f18d32183afd122b93 (diff)
Merge "Rust: Vendor support for Rust static libraries."
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 c181d676e..e9da6fabe 100644
--- a/rust/androidmk.go
+++ b/rust/androidmk.go
@@ -58,6 +58,7 @@ func (mod *Module) AndroidMkEntries() []android.AndroidMkEntries {
entries.AddStrings("LOCAL_PROC_MACRO_LIBRARIES", mod.Properties.AndroidMkProcMacroLibs...)
entries.AddStrings("LOCAL_SHARED_LIBRARIES", mod.Properties.AndroidMkSharedLibs...)
entries.AddStrings("LOCAL_STATIC_LIBRARIES", mod.Properties.AndroidMkStaticLibs...)
+ entries.AddStrings("LOCAL_SOONG_LINK_TYPE", mod.makeLinkType)
},
},
}