Merge "add Shell-package-library to allow product type level update" into rvc-qpr-dev am: 0ade1ea0eb

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/13383403

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I42995f9c504fb34480fc3ba199ca431ee76a486a
This commit is contained in:
Keun-young Park
2021-01-22 02:39:25 +00:00
committed by Automerger Merge Worker

View File

@@ -1,10 +1,14 @@
// used both for the android_app and android_library
shell_srcs = ["src/**/*.java",":dumpstate_aidl"]
shell_static_libs = ["androidx.legacy_legacy-support-v4"]
android_app {
name: "Shell",
srcs: ["src/**/*.java",":dumpstate_aidl"],
srcs: shell_srcs,
aidl: {
include_dirs: ["frameworks/native/cmds/dumpstate/binder"],
},
static_libs: ["androidx.legacy_legacy-support-v4"],
static_libs: shell_static_libs,
platform_apis: true,
certificate: "platform",
privileged: true,
@@ -12,3 +16,17 @@ android_app {
include_filter: ["com.android.shell.*"],
},
}
// A library for product type like auto to create a new shell package
// with product specific permissions.
android_library {
name: "Shell-package-library",
srcs: shell_srcs,
aidl: {
include_dirs: ["frameworks/native/cmds/dumpstate/binder"],
},
resource_dirs: ["res"],
static_libs: shell_static_libs,
platform_apis: true,
manifest: "AndroidManifest.xml",
}