Merge "Revert "Make embedded_launcher true by default"" into main am: 291a4912d1

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

Change-Id: I51031f3ea968ad82b6233e4656cdcd8cb5ce20b0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Charlie Boutier
2024-04-11 17:38:06 +00:00
committed by Automerger Merge Worker
2 changed files with 2 additions and 2 deletions

View File

@@ -203,7 +203,7 @@ func (p *PythonBinaryModule) OutputFiles(tag string) (android.Paths, error) {
}
func (p *PythonBinaryModule) isEmbeddedLauncherEnabled() bool {
return BoolDefault(p.properties.Embedded_launcher, true)
return Bool(p.properties.Embedded_launcher)
}
func (b *PythonBinaryModule) autorun() bool {

View File

@@ -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 true.
// whether the binary is required to be built with embedded launcher for this version, defaults to false.
Embedded_launcher *bool // TODO(b/174041232): Remove this property
}