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

Commit a0fcf981 authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

Merge "Expose TargetFSConfigGen to DeviceConfig from Make"

am: 8235220a

Change-Id: I86575fdbf340e00d37a2aea2c1f990f0772d2669
parents 694b4629 8235220a
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1048,3 +1048,7 @@ func (c *config) ProductHiddenAPIStubsSystem() []string {
func (c *config) ProductHiddenAPIStubsTest() []string {
	return c.productVariables.ProductHiddenAPIStubsTest
}

func (c *deviceConfig) TargetFSConfigGen() *string {
	return c.config.productVariables.TargetFSConfigGen
}
+2 −0
Original line number Diff line number Diff line
@@ -287,6 +287,8 @@ type productVariables struct {
	ProductHiddenAPIStubs       []string `json:",omitempty"`
	ProductHiddenAPIStubsSystem []string `json:",omitempty"`
	ProductHiddenAPIStubsTest   []string `json:",omitempty"`

	TargetFSConfigGen *string `json:",omitempty"`
}

func boolPtr(v bool) *bool {