f6629839d1
This commit is mainly from I7a6a30bf8e8db9f2738594d187bb9148f138b8da, so test cases and features are mostly same. We change product_services partition name to "system_ext" because this partition's purpose changes. - installing a RRO package for framework from /system_ext/overlay - installing apps from /system_ext/app - installing priv-apps from /system_ext/priv-app - installing permissions from /system_ext/etc/[default-permissions|permissions|sysconfig] Bug: 134359158 Test: `mma` under frameworks/base/tests/[libs|privapp]-permissions adb sync && adb reboot adb shell cmd package list libraries => confirmed com.android.test.libs.system_ext library adb shell cmd package dump \ com.android.framework.permission.privapp.tests.system_ext => confirmed that the package is a priv-app Change-Id: Ibbccbba64156a7bc464ffb3785fb8fe69ebb973c Merged-In: Ibbccbba64156a7bc464ffb3785fb8fe69ebb973c (cherry picked from commit 9ec059ac1d38637855d9ab91e25a28164aa93b24)
30 lines
779 B
Plaintext
30 lines
779 B
Plaintext
java_library {
|
|
name: "com.android.test.libs.product",
|
|
installable: true,
|
|
product_specific: true,
|
|
srcs: ["product/java/**/*.java"],
|
|
required: ["com.android.test.libs.product.xml"],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "com.android.test.libs.product.xml",
|
|
src: "product/com.android.test.libs.product.xml",
|
|
sub_dir: "permissions",
|
|
product_specific: true,
|
|
}
|
|
|
|
java_library {
|
|
name: "com.android.test.libs.system_ext",
|
|
installable: true,
|
|
system_ext_specific: true,
|
|
srcs: ["system_ext/java/**/*.java"],
|
|
required: ["com.android.test.libs.system_ext.xml"],
|
|
}
|
|
|
|
prebuilt_etc {
|
|
name: "com.android.test.libs.system_ext.xml",
|
|
src: "system_ext/com.android.test.libs.system_ext.xml",
|
|
sub_dir: "permissions",
|
|
system_ext_specific: true,
|
|
}
|