Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4d716ddb authored by Inseob Kim's avatar Inseob Kim Committed by Automerger Merge Worker
Browse files

Revert "Add ramdisk_available to sysprop_library" am: 2594e41a

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

Change-Id: I71b64e3da089799a0627645ef39d75b3b2688d23
parents af2bfec7 2594e41a
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -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