commit | a9bf1c775460a5eca70bb55005f876ec97ec9fc1 | [log] [tgz] |
---|---|---|
author | Treehugger Robot <treehugger-gerrit@google.com> | Fri Oct 01 03:49:57 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Oct 01 03:49:57 2021 +0000 |
tree | 676f83e810404fa52b4f0b16f0674d8dc131bbf5 | |
parent | b578cde497cd74244ebf9e4d16422aeaf0933941 [diff] | |
parent | e4ad0ff8c2227c4887f02b555dd1a250b96bce65 [diff] |
Merge "rust modules respects the installable property" am: f7ff81ca95 am: c8ee3111b1 am: 528569758f am: 36bb34312b am: e4ad0ff8c2 Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1840055 Change-Id: Ia38ddfa641ba93bee2dd08f5fd302d886aed72d1
diff --git a/rust/rust.go b/rust/rust.go index 0a7d68d..b9afc7f 100644 --- a/rust/rust.go +++ b/rust/rust.go
@@ -663,7 +663,7 @@ } func (mod *Module) installable(apexInfo android.ApexInfo) bool { - if !mod.EverInstallable() { + if !proptools.BoolDefault(mod.Installable(), mod.EverInstallable()) { return false }