Merge "Modify --ensure-allowlist-integrity call to avoid spurious errors."

This commit is contained in:
Mark Dacek
2023-05-03 03:34:48 +00:00
committed by Gerrit Code Review
2 changed files with 35 additions and 6 deletions

View File

@@ -1929,6 +1929,10 @@ func (c *config) GetMixedBuildsEnabledModules() map[string]struct{} {
return c.mixedBuildEnabledModules
}
func (c *config) GetMixedBuildsDisabledModules() map[string]struct{} {
return c.mixedBuildDisabledModules
}
func (c *config) LogMixedBuild(ctx BaseModuleContext, useBazel bool) {
moduleName := ctx.Module().Name()
c.mixedBuildsLock.Lock()