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

Commit 378c7a39 authored by Alyssa Ketpreechasawat's avatar Alyssa Ketpreechasawat Committed by Gerrit Code Review
Browse files

Merge "Skip unknown check in bootclasspath_fragment (source version) if...

Merge "Skip unknown check in bootclasspath_fragment (source version) if prebuilt version is in use." into main
parents 7dc019e8 a0cf0a4a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -582,7 +582,7 @@ func (b *BootclasspathFragmentModule) configuredJars(ctx android.ModuleContext)
		// So ignore it even if it is not in PRODUCT_APEX_BOOT_JARS.
		// TODO(b/202896428): Add better way to handle this.
		_, unknown = android.RemoveFromList("android.car-module", unknown)
		if len(unknown) > 0 {
		if isActiveModule(ctx.Module()) && len(unknown) > 0 {
			ctx.ModuleErrorf("%s in contents must also be declared in PRODUCT_APEX_BOOT_JARS", unknown)
		}
	}