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

Commit a03e16f1 authored by Jiyong Park's avatar Jiyong Park Committed by Gerrit Code Review
Browse files

Merge "Required deps don't track native bridge architectures" into main

parents 8723705f 8db44156
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -1076,6 +1076,12 @@ func addRequiredDeps(ctx BottomUpMutatorContext) {
			return
		}

		// ... also don't make a dependency between native bridge arch and non-native bridge
		// arches. b/342945184
		if ctx.Target().NativeBridge != target.NativeBridge {
			return
		}

		variation := target.Variations()
		if ctx.OtherModuleFarDependencyVariantExists(variation, depName) {
			ctx.AddFarVariationDependencies(variation, RequiredDepTag, depName)