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

Commit f09101e7 authored by Cole Faust's avatar Cole Faust Committed by Gerrit Code Review
Browse files

Revert^2 "Make embedded_launcher true by default"

This reverts commit 578066be.

Reason for revert: Relanding

Change-Id: I63f01362cc11c02c4800ae1c21652c7cf4b8a799
parent 578066be
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -203,7 +203,7 @@ func (p *PythonBinaryModule) OutputFiles(tag string) (android.Paths, error) {
}

func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool {
	return Bool(p.properties.Embedded_launcher)
	return BoolDefault(p.properties.Embedded_launcher, true)
}

func (b *PythonBinaryModule) autorun() bool {
+1 −1
Original line number Diff line number Diff line
@@ -59,7 +59,7 @@ type VersionProperties struct {
	// list of the Python libraries used only for this Python version.
	Libs []string `android:"arch_variant"`

	// whether the binary is required to be built with embedded launcher for this version, defaults to false.
	// whether the binary is required to be built with embedded launcher for this version, defaults to true.
	Embedded_launcher *bool // TODO(b/174041232): Remove this property
}