diff options
| author | Jiyong Park <jiyong@google.com> | 2020-02-05 17:52:49 +0900 |
|---|---|---|
| committer | Jiyong Park <jiyong@google.com> | 2020-02-05 17:52:49 +0900 |
| commit | f7d872fe7c84b2ff5d35e506f66efb4b7ef3d1a0 (patch) | |
| tree | 9ca6667819be19a7be05480838cc76ad55e5ed26 | |
| parent | 8c7268c01a6d848d41b136037fcf5a318cfbcd48 (diff) | |
| download | platform_packages_modules_vndk-f7d872fe7c84b2ff5d35e506f66efb4b7ef3d1a0.tar.gz platform_packages_modules_vndk-f7d872fe7c84b2ff5d35e506f66efb4b7ef3d1a0.tar.bz2 platform_packages_modules_vndk-f7d872fe7c84b2ff5d35e506f66efb4b7ef3d1a0.zip | |
Add com.android.vndk.current.on_vendor
The VNDK APEX overrides com.android.vndk.current in the vendor
partition. It is used to move the vndk apex from the system partition to
the vendor partition, for the aosp_* targets that use prebuilt
vendor.img
Bug: 140136207
Test: m
Change-Id: I678a76c63eb190d43a67c8c0f3507973833197e0
| -rw-r--r-- | apex/Android.bp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/apex/Android.bp b/apex/Android.bp index ff0b527..d6082b6 100644 --- a/apex/Android.bp +++ b/apex/Android.bp @@ -20,6 +20,12 @@ apex_vndk { file_contexts: ":com.android.vndk-file_contexts", } +override_apex { + name: "com.android.vndk.current.on_vendor", + base: "com.android.vndk.current", + vendor: true, +} + apex_key { name: "com.android.vndk.current.key", public_key: "com.android.vndk.current.pubkey", |
