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

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

Merge "Skip llndk_library and llndk_headers for vendor snapshot"

parents cf04073b f2664c6b
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -552,6 +552,13 @@ func isVendorSnapshotModule(m *Module, moduleDir string) bool {
	if _, ok := m.linker.(*kernelHeadersDecorator); ok {
		return false
	}
	// skip llndk_library and llndk_headers which are backward compatible
	if _, ok := m.linker.(*llndkStubDecorator); ok {
		return false
	}
	if _, ok := m.linker.(*llndkHeadersDecorator); ok {
		return false
	}

	// Libraries
	if l, ok := m.linker.(snapshotLibraryInterface); ok {