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

Commit 241c39e8 authored by Jiyong Park's avatar Jiyong Park Committed by android-build-merger
Browse files

Merge "Don't use prebuilt_apex when TARGET_FLATTEN_APEX is set to true"

am: 7bb2aec1

Change-Id: I0e14413cf0e7d512cab4fe097ee8b7c56c91c244
parents 9c7c3765 7bb2aec1
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -215,3 +215,7 @@ func (p *Prebuilt) getSingleSourceFieldValue() string {
	}
	return value.String()
}

func (p *Prebuilt) SourceExists() bool {
	return p.properties.SourceExists
}
+14 −1
Original line number Diff line number Diff line
@@ -1404,6 +1404,7 @@ type Prebuilt struct {
type PrebuiltProperties struct {
	// the path to the prebuilt .apex file to import.
	Source       string `blueprint:"mutated"`
	ForceDisable bool   `blueprint:"mutated"`

	Src  *string
	Arch struct {
@@ -1432,6 +1433,14 @@ func (p *Prebuilt) installable() bool {
}

func (p *Prebuilt) DepsMutator(ctx android.BottomUpMutatorContext) {
	if ctx.Config().FlattenApex() && !ctx.Config().UnbundledBuild() && p.prebuilt.SourceExists() {
		// If the device is configured to use flattened APEX, don't set
		// p.properties.Source so that the prebuilt module (which is
		// a non-flattened APEX) is not used.
		p.properties.ForceDisable = true
		return
	}

	// This is called before prebuilt_select and prebuilt_postdeps mutators
	// The mutators requires that src to be set correctly for each arch so that
	// arch variants are disabled when src is not provided for the arch.
@@ -1473,6 +1482,10 @@ func (p *Prebuilt) InstallFilename() string {
}

func (p *Prebuilt) GenerateAndroidBuildActions(ctx android.ModuleContext) {
	if p.properties.ForceDisable {
		return
	}

	// TODO(jungjw): Check the key validity.
	p.inputApex = p.Prebuilt().SingleSourcePath(ctx)
	p.installDir = android.PathForModuleInstall(ctx, "apex")