Merge changes from topic "toybox_vendor_ramdisk"

* changes:
  Add shell_and_utilities_vendor_ramdisk
  Make libraries {vendor_,}ramdisk_available.
This commit is contained in:
Yifan Hong 2020-11-02 18:33:33 +00:00 committed by Gerrit Code Review
commit 92836b2e95
5 changed files with 18 additions and 0 deletions

View file

@ -1,5 +1,7 @@
cc_library {
name: "libpackagelistparser",
ramdisk_available: true,
vendor_ramdisk_available: true,
recovery_available: true,
srcs: ["packagelistparser.cpp"],
shared_libs: ["liblog"],

View file

@ -32,6 +32,8 @@ cc_library {
name: "libprocessgroup",
host_supported: true,
native_bridge_supported: true,
ramdisk_available: true,
vendor_ramdisk_available: true,
recovery_available: true,
vendor_available: true,
vndk: {

View file

@ -15,6 +15,8 @@
cc_library {
name: "libcgrouprc",
host_supported: true,
ramdisk_available: true,
vendor_ramdisk_available: true,
recovery_available: true,
// Do not ever mark this as vendor_available; otherwise, vendor modules
// that links to the static library will behave unexpectedly. All on-device

View file

@ -15,6 +15,8 @@
cc_library_static {
name: "libcgrouprc_format",
host_supported: true,
ramdisk_available: true,
vendor_ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: [

View file

@ -51,3 +51,13 @@ phony {
"toybox_vendor",
],
}
// shell and utilities for first stage console. The list of binaries are
// enough for debugging purposes.
phony {
name: "shell_and_utilities_vendor_ramdisk",
required: [
"sh.vendor_ramdisk",
"toybox.vendor_ramdisk",
],
}