diff options
author | Colin Cross <ccross@android.com> | 2020-07-06 14:15:24 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2020-07-10 13:44:32 -0700 |
commit | 403cc15f1b01a43902a77f9d136d96303ebbe7af (patch) | |
tree | b5dfa5413682b8ce4e44dbe2235cf20a05e071db /java/java.go | |
parent | 0ae555df1a5b0fc86a6fa83c1de42026ef184cd2 (diff) |
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
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/java/java.go b/java/java.go index 46ef98be9..367b09cbb 100644 --- a/java/java.go +++ b/java/java.go @@ -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 { |