Revert "Add ramdisk_available to sysprop_library" am: 2594e41a07

Original change: https://googleplex-android-review.googlesource.com/c/platform/build/soong/+/15167732

Change-Id: I71b64e3da089799a0627645ef39d75b3b2688d23
This commit is contained in:
Inseob Kim 2021-07-07 03:24:08 +00:00 committed by Automerger Merge Worker
commit 4d716ddbfd
1 changed files with 0 additions and 5 deletions

View File

@ -145,9 +145,6 @@ type syspropLibraryProperties struct {
// If set to true, allow this module to be dexed and installed on devices.
Installable *bool
// Make this module available when building for ramdisk
Ramdisk_available *bool
// Make this module available when building for recovery
Recovery_available *bool
@ -399,7 +396,6 @@ type ccLibraryProperties struct {
Recovery_available *bool
Vendor_available *bool
Product_available *bool
Ramdisk_available *bool
Host_supported *bool
Apex_available []string
Min_sdk_version *string
@ -479,7 +475,6 @@ func syspropLibraryHook(ctx android.LoadHookContext, m *syspropLibrary) {
ccProps.Recovery_available = m.properties.Recovery_available
ccProps.Vendor_available = m.properties.Vendor_available
ccProps.Product_available = m.properties.Product_available
ccProps.Ramdisk_available = m.properties.Ramdisk_available
ccProps.Host_supported = m.properties.Host_supported
ccProps.Apex_available = m.ApexProperties.Apex_available
ccProps.Min_sdk_version = m.properties.Cpp.Min_sdk_version