diff options
author | 2024-04-11 16:10:00 +0000 | |
---|---|---|
committer | 2024-04-11 16:10:00 +0000 | |
commit | 578066be90d3e1960c02b5c80c29e92bca70a70b (patch) | |
tree | 083c4be785fef228bd5c1f48a538dc51b68ce4c2 /python | |
parent | 8a038ed871230ba6280642b5c0e83a37d076aa79 (diff) |
Revert "Make embedded_launcher true by default"
This reverts commit 8a038ed871230ba6280642b5c0e83a37d076aa79.
Reason for revert: investigate breaking test suits Avatar and BumbleBluetoothTests
Change-Id: I8e4498fb5854bf62df6d161ac0c6cce49d471afe
Diffstat (limited to 'python')
-rw-r--r-- | python/binary.go | 2 | ||||
-rw-r--r-- | python/python.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/python/binary.go b/python/binary.go index c84eeeedb..d6750c655 100644 --- a/python/binary.go +++ b/python/binary.go @@ -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 { diff --git a/python/python.go b/python/python.go index 3551eb6ef..d3cbd7695 100644 --- a/python/python.go +++ b/python/python.go @@ -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 } |