diff options
author | 2025-03-10 14:38:03 -0700 | |
---|---|---|
committer | 2025-03-10 14:38:03 -0700 | |
commit | 0cd6558415e9a8a6006695641abe7cd81637308f (patch) | |
tree | 5f53acdf609ce98506e2e725049f81207650a9ff /java/java.go | |
parent | a728dafe4f0b7fa229ccc5e909220d1ca8344fdf (diff) | |
parent | 0a4888dfae4fb88e0f80dad86b80702ec1fa74da (diff) |
Merge "Rename CommonModuleInfoKey to be consistent with others." into main am: a369dc0014 am: 0a4888dfae
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/3482009
Change-Id: I9ffa4351297c3a2de5cd82b0cbe1d053580d14f7
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index 215fbbda8..235a27d4c 100644 --- a/java/java.go +++ b/java/java.go @@ -2225,7 +2225,7 @@ func (j *Binary) GenerateAndroidBuildActions(ctx android.ModuleContext) { // install these alongside the java binary. ctx.VisitDirectDepsProxyWithTag(jniInstallTag, func(jni android.ModuleProxy) { // Use the BaseModuleName of the dependency (without any prebuilt_ prefix) - commonInfo, _ := android.OtherModuleProvider(ctx, jni, android.CommonModuleInfoKey) + commonInfo, _ := android.OtherModuleProvider(ctx, jni, android.CommonModuleInfoProvider) j.androidMkNamesOfJniLibs = append(j.androidMkNamesOfJniLibs, commonInfo.BaseModuleName+":"+commonInfo.Target.Arch.ArchType.Bitness()) }) // Check that native libraries are not listed in `required`. Prompt users to use `jni_libs` instead. |