Make ramdisk_available.

Test: pass
Bug: 147347110
Change-Id: I9787e386e552393efc5beed5aac577be9ce1a3c5
This commit is contained in:
Yifan Hong 2020-01-21 18:17:19 -08:00
parent 929c9e8b40
commit 7dd4553991
4 changed files with 6 additions and 0 deletions

View file

@ -33,6 +33,7 @@ cc_defaults {
cc_library_headers {
name: "libbase_headers",
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
host_supported: true,
native_bridge_supported: true,
@ -112,6 +113,7 @@ cc_library {
name: "libbase",
defaults: ["libbase_defaults"],
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
host_supported: true,
native_bridge_supported: true,

View file

@ -39,6 +39,7 @@ cc_library_headers {
name: "liblog_headers",
host_supported: true,
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
export_include_dirs: ["include"],
@ -62,6 +63,7 @@ cc_library_headers {
cc_library {
name: "liblog",
host_supported: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: liblog_sources,

View file

@ -3,6 +3,7 @@
cc_library {
name: "libsparse",
host_supported: true,
ramdisk_available: true,
recovery_available: true,
unique_host_soname: true,
srcs: [

View file

@ -2,6 +2,7 @@ cc_library_static {
name: "libpropertyinfoparser",
host_supported: true,
vendor_available: true,
ramdisk_available: true,
recovery_available: true,
native_bridge_supported: true,
srcs: ["property_info_parser.cpp"],