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

Commit f2e53400 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Ingore CC prebuilts from cmake snapshots" into main

parents e51cb36a 1f22939d
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -347,8 +347,11 @@ func (m *CmakeSnapshot) GenerateAndroidBuildActions(ctx android.ModuleContext) {
		if slices.Contains(ignoredSystemLibs, moduleName) {
			return false // system libs built in-tree for Android
		}
		if dep.IsPrebuilt() {
			return false // prebuilts are not supported
		}
		if dep.compiler == nil {
			return false // unsupported module type (e.g. prebuilt)
			return false // unsupported module type
		}
		isAidlModule := dep.compiler.baseCompilerProps().AidlInterface.Lang != ""