Pass unstripped JNI libraries to Make

Pass a list of unstripped JNI libraries to Make so that they can be
installed into the symbols directory.

Bug: 159726429
Test: forrest
Change-Id: Ieb4bffbb3d0a09f476da011399c5b8b1611929d7
This commit is contained in:
Colin Cross
2020-07-06 14:15:24 -07:00
parent 0ae555df1a
commit 403cc15f1b
4 changed files with 55 additions and 20 deletions

View File

@@ -635,10 +635,11 @@ func (s sdkDep) hasFrameworkLibs() bool {
}
type jniLib struct {
name string
path android.Path
target android.Target
coverageFile android.OptionalPath
name string
path android.Path
target android.Target
coverageFile android.OptionalPath
unstrippedFile android.Path
}
func (j *Module) shouldInstrument(ctx android.BaseModuleContext) bool {