summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Jiyong Park <jiyong@google.com> 2020-02-24 18:36:46 +0900
committer Jiyong Park <jiyong@google.com> 2020-02-24 21:10:56 +0900
commit8201bdfab070fb2b93a997947095fad003060da9 (patch)
treef84b03719bf05d00b63c365aaafe434dbb83abf8
parentb629d69db047c40f2b110f2d73ad8ceb1b32ea68 (diff)
Mark updatable APEXes
Mark updatable APEXes as updatable: true so that they are opted-out from optimizations that make sense only for non-updatable modules; such as symlinking to the libs in the system partition. Bug: 149805758 Test: m and check that there is no symlink from the APEX to the system partition. Change-Id: Idb55300a60a261c7bb6359439ed220ff51fcf06c
-rw-r--r--apex/extservices/Android.bp1
-rw-r--r--apex/permission/Android.bp1
-rw-r--r--apex/sdkextensions/Android.bp1
-rw-r--r--apex/statsd/Android.bp1
-rw-r--r--packages/Tethering/apex/Android.bp1
5 files changed, 5 insertions, 0 deletions
diff --git a/apex/extservices/Android.bp b/apex/extservices/Android.bp
index c89f694c09d2..021246cc7404 100644
--- a/apex/extservices/Android.bp
+++ b/apex/extservices/Android.bp
@@ -20,6 +20,7 @@ apex {
apex_defaults {
name: "com.android.extservices-defaults",
+ updatable: true,
key: "com.android.extservices.key",
certificate: ":com.android.extservices.certificate",
apps: ["ExtServices"],
diff --git a/apex/permission/Android.bp b/apex/permission/Android.bp
index d746ea6af397..0171b0d76760 100644
--- a/apex/permission/Android.bp
+++ b/apex/permission/Android.bp
@@ -20,6 +20,7 @@ apex {
apex_defaults {
name: "com.android.permission-defaults",
+ updatable: true,
key: "com.android.permission.key",
certificate: ":com.android.permission.certificate",
java_libs: [
diff --git a/apex/sdkextensions/Android.bp b/apex/sdkextensions/Android.bp
index 25765afb3ab9..322d5e114541 100644
--- a/apex/sdkextensions/Android.bp
+++ b/apex/sdkextensions/Android.bp
@@ -26,6 +26,7 @@ apex {
apex_defaults {
name: "com.android.sdkext-defaults",
+ updatable: true,
java_libs: [ "framework-sdkextensions" ],
prebuilts: [
"derive_sdk.rc",
diff --git a/apex/statsd/Android.bp b/apex/statsd/Android.bp
index 2f3e2acb5d7a..1a357f77056d 100644
--- a/apex/statsd/Android.bp
+++ b/apex/statsd/Android.bp
@@ -32,6 +32,7 @@ apex_defaults {
compile_multilib: "both",
prebuilts: ["com.android.os.statsd.init.rc"],
name: "com.android.os.statsd-defaults",
+ updatable: true,
key: "com.android.os.statsd.key",
certificate: ":com.android.os.statsd.certificate",
}
diff --git a/packages/Tethering/apex/Android.bp b/packages/Tethering/apex/Android.bp
index 94ef11cc127a..96a4d2007753 100644
--- a/packages/Tethering/apex/Android.bp
+++ b/packages/Tethering/apex/Android.bp
@@ -16,6 +16,7 @@
apex {
name: "com.android.tethering",
+ updatable: true,
java_libs: ["framework-tethering"],
apps: ["Tethering"],
manifest: "manifest.json",