diff options
| author | 2019-12-04 13:38:39 +0900 | |
|---|---|---|
| committer | 2019-12-17 07:19:45 +0000 | |
| commit | d45d9e111b57f2d30bf65ef938de5d269671c19a (patch) | |
| tree | 7f89fc35b70eb0cd85400fd6176e7fff227b4f6d /data | |
| parent | 9a970c0494fe68eda3d13690d9cf20d747568369 (diff) | |
Move SystemUI to /system_ext
we plan to forbid hidden API in product partition.
So this app should be moved to /system_ext because it uses hidden API.
It is not permanent, so they can be moved back to /product due to
needs if there isn't hidden usage anymore.
Bug: 137908189
Test: m
Test: check whether device boots successfully
Test: atest SystemUITests
Change-Id: I54f86496d4a0045af3576091cce00e5cd285b4f8
Diffstat (limited to 'data')
| -rw-r--r-- | data/etc/Android.bp | 2 | ||||
| -rw-r--r-- | data/etc/CleanSpec.mk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/data/etc/Android.bp b/data/etc/Android.bp index 43f65e368c10..6bde0ed78f59 100644 --- a/data/etc/Android.bp +++ b/data/etc/Android.bp @@ -128,7 +128,7 @@ prebuilt_etc { prebuilt_etc { name: "privapp_whitelist_com.android.systemui", - product_specific: true, + system_ext_specific: true, sub_dir: "permissions", src: "com.android.systemui.xml", filename_from_src: true, diff --git a/data/etc/CleanSpec.mk b/data/etc/CleanSpec.mk index b76eb1575b86..783a7edadeb7 100644 --- a/data/etc/CleanSpec.mk +++ b/data/etc/CleanSpec.mk @@ -53,6 +53,8 @@ $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/product/etc/permissions/com. $(call add-clean-step, rm -rf $(PRODUCT_OUT)/product/etc/permissions/com.android.settings.xml) $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/product/etc/permissions/com.android.launcher3.xml) $(call add-clean-step, rm -rf $(PRODUCT_OUT)/product/etc/permissions/com.android.launcher3.xml) +$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/product/etc/permissions/com.android.systemui.xml) +$(call add-clean-step, rm -rf $(PRODUCT_OUT)/product/etc/permissions/com.android.systemui.xml) # ****************************************************************** # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST ABOVE THIS BANNER # ****************************************************************** |