diff options
| author | 2024-05-15 02:09:20 +0900 | |
|---|---|---|
| committer | 2024-05-15 03:32:22 +0900 | |
| commit | cd9dca20a04e9b6d4cb3bdeb38967d72cc0a593e (patch) | |
| tree | 6123fb3ae18b2c12a42469f14cc642d7fe04fa76 /java/java.go | |
| parent | b544a8b9ecff44f3bcfdf426dbd0a5f47b4801ac (diff) | |
Revert "Install transitive deps of jni libs, but not the jni libs themselves"
This reverts commit e7168070832a9a849007c9e63cd3cd827d1904e4.
Change-Id: If3b63706114cb534af359fdac2d80d8a5d02ea6d
Diffstat (limited to 'java/java.go')
| -rw-r--r-- | java/java.go | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/java/java.go b/java/java.go index fc7e5c5a3..0df96a3a5 100644 --- a/java/java.go +++ b/java/java.go @@ -368,17 +368,6 @@ type dependencyTag struct { static bool } -var _ android.SkipToTransitiveDepsTag = (*dependencyTag)(nil) - -func (depTag dependencyTag) SkipToTransitiveDeps() bool { - // jni_libs are not installed because they are always embedded into the app. However, - // transitive deps of jni_libs themselves should be installed along with the app. - if IsJniDepTag(depTag) { - return true - } - return false -} - // installDependencyTag is a dependency tag that is annotated to cause the installed files of the // dependency to be installed when the parent module is installed. type installDependencyTag struct { |