Merge "Support cc code coverage for mixed build"

This commit is contained in:
Yu Liu
2022-06-13 18:57:50 +00:00
committed by Gerrit Code Review
7 changed files with 101 additions and 13 deletions

View File

@@ -664,6 +664,9 @@ func shouldSkipAction(a action) bool {
if a.Mnemonic == "FileWrite" {
return true
}
if a.Mnemonic == "BaselineCoverage" {
return true
}
return false
}