aboutsummaryrefslogtreecommitdiffstats
path: root/java/app.go
diff options
context:
space:
mode:
authorJaewoong Jung <jungjw@google.com>2020-05-26 20:10:08 -0700
committerJaewoong Jung <jungjw@google.com>2020-05-27 14:45:37 -0700
commit0feed89b7c54d71025d63140927bc8f93df333ef (patch)
tree92d52d4f90527540b73157fe17ea8313653f342b /java/app.go
parent07d215215bb70c9d4640949967f74c7c27216ff2 (diff)
downloadbuild_soong-0feed89b7c54d71025d63140927bc8f93df333ef.tar.gz
build_soong-0feed89b7c54d71025d63140927bc8f93df333ef.tar.bz2
build_soong-0feed89b7c54d71025d63140927bc8f93df333ef.zip
Make android_app_import multi targets arch module.
I made a mistake and only fixed android_test_import in my previous change, I5bbb2d2b733bbd6b868898285683ba5ff45be10b. (This is a cherry-pick change.) Bug: 154281342 Test: TreeHugger Test: chromium-webview Change-Id: I1575d9ef3f8596f1eb8db0867db09de08945d711 Merged-In: I1575d9ef3f8596f1eb8db0867db09de08945d711
Diffstat (limited to 'java/app.go')
-rwxr-xr-xjava/app.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/app.go b/java/app.go
index e585dc85..e8f01598 100755
--- a/java/app.go
+++ b/java/app.go
@@ -1577,7 +1577,8 @@ func AndroidAppImportFactory() android.Module {
module.processVariants(ctx)
})
- InitJavaModule(module, android.DeviceSupported)
+ android.InitAndroidMultiTargetsArchModule(module, android.DeviceSupported, android.MultilibCommon)
+ android.InitDefaultableModule(module)
android.InitSingleSourcePrebuiltModule(module, &module.properties, "Apk")
return module