diff options
| author | 2019-02-18 18:59:06 +0000 | |
|---|---|---|
| committer | 2019-02-18 18:59:06 +0000 | |
| commit | b03dc8e54e3943dfc0e2ff11e092d3acca702e75 (patch) | |
| tree | 4f0fd4eedcff1eb1f07e3b4feac76bf39a30768f /python/python.go | |
| parent | f854d3e4be3282e31cc8de5e8358a7dbf3ed06a3 (diff) | |
| parent | 6ca390f0b4be216226f31bc05ed5e3bba3105e17 (diff) | |
Merge "Support building a par file that does not automatically run"
Diffstat (limited to 'python/python.go')
| -rw-r--r-- | python/python.go | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/python/python.go b/python/python.go index ddc3f1f93..4445f404f 100644 --- a/python/python.go +++ b/python/python.go @@ -156,6 +156,8 @@ type bootstrapper interface { bootstrap(ctx android.ModuleContext, ActualVersion string, embeddedLauncher bool, srcsPathMappings []pathMapping, srcsZip android.Path, depsSrcsZips android.Paths) android.OptionalPath + + autorun() bool } type installer interface { @@ -307,9 +309,14 @@ func (p *Module) DepsMutator(ctx android.BottomUpMutatorContext) { if p.bootstrapper != nil && p.isEmbeddedLauncherEnabled(pyVersion2) { ctx.AddVariationDependencies(nil, pythonLibTag, "py2-stdlib") + + launcherModule := "py2-launcher" + if p.bootstrapper.autorun() { + launcherModule = "py2-launcher-autorun" + } ctx.AddFarVariationDependencies([]blueprint.Variation{ {Mutator: "arch", Variation: ctx.Target().String()}, - }, launcherTag, "py2-launcher") + }, launcherTag, launcherModule) // Add py2-launcher shared lib dependencies. Ideally, these should be // derived from the `shared_libs` property of "py2-launcher". However, we @@ -422,7 +429,11 @@ func (p *Module) GeneratePythonBuildActions(ctx android.ModuleContext) { p.properties.Actual_version, ctx.ModuleName())) } expandedSrcs := ctx.ExpandSources(srcs, exclude_srcs) - if len(expandedSrcs) == 0 { + requiresSrcs := true + if p.bootstrapper != nil && !p.bootstrapper.autorun() { + requiresSrcs = false + } + if len(expandedSrcs) == 0 && requiresSrcs { ctx.ModuleErrorf("doesn't have any source files!") } @@ -656,4 +667,5 @@ func (p *Module) InstallInData() bool { } var Bool = proptools.Bool +var BoolDefault = proptools.BoolDefault var String = proptools.String |