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

Commit a2e64e7b authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge "Use inclusive language in Android.bp files"

parents bee15725 cbd62d07
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -986,7 +986,7 @@ type apexBundleProperties struct {
	Uses []string

	// A txt file containing list of files that are allowed to be included in this APEX.
	Whitelisted_files *string
	Allowed_files *string

	// package format of this apex variant; could be non-flattened, flattened, or zip.
	// imageApex, zipApex or flattened
+2 −2
Original line number Diff line number Diff line
@@ -391,7 +391,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
	emitCommands = append(emitCommands, "sort -o "+imageContentFile.String()+" "+imageContentFile.String())
	implicitInputs = append(implicitInputs, a.manifestPbOut)

	if a.properties.Whitelisted_files != nil {
	if a.properties.Allowed_files != nil {
		ctx.Build(pctx, android.BuildParams{
			Rule:        emitApexContentRule,
			Implicits:   implicitInputs,
@@ -402,7 +402,7 @@ func (a *apexBundle) buildUnflattenedApex(ctx android.ModuleContext) {
			},
		})
		implicitInputs = append(implicitInputs, imageContentFile)
		allowedFilesFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.Whitelisted_files))
		allowedFilesFile := android.PathForModuleSrc(ctx, proptools.String(a.properties.Allowed_files))

		phonyOutput := android.PathForModuleOut(ctx, a.Name()+"-diff-phony-output")
		ctx.Build(pctx, android.BuildParams{