Declare dependency on sanitizer runtime libraries

Moving the last users of a sanitizer runtime library to soong was
causing the runtime library to stop getting installed.  Declare
the dependency so make keeps installing it.

Test: builds
Change-Id: Ieeb9ad5c04ac8df0d1a74239da393dac5cab2b03
This commit is contained in:
Colin Cross
2017-05-08 13:44:11 -07:00
parent ceeff0fd39
commit 8ff9ef4c30
3 changed files with 21 additions and 2 deletions

View File

@@ -76,6 +76,9 @@ func (c *Module) AndroidMk() (ret android.AndroidMkData, err error) {
c.subAndroidMk(&ret, c.compiler)
c.subAndroidMk(&ret, c.linker)
if c.sanitize != nil {
c.subAndroidMk(&ret, c.sanitize)
}
c.subAndroidMk(&ret, c.installer)
if c.vndk() {