Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3588)

Unified Diff: build/linux/chrome_linux.croc

Issue 2046002: [TFF] Coverage: Don't include any chromeos directory in the Linux code coverage analysis. (Closed)
Patch Set: Update mac. Created 10 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/chrome_linux.croc
diff --git a/build/linux/chrome_linux.croc b/build/linux/chrome_linux.croc
index c67be248e7bd475b582c8fc1619c9b2facab99db..8a3628f7ab9c73c99a7ba090d903745c4b8d1b7b 100644
--- a/build/linux/chrome_linux.croc
+++ b/build/linux/chrome_linux.croc
@@ -1,6 +1,9 @@
# -*- python -*-
# Crocodile config file for Chromium linux
+# TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot
+# for that platform.
+
{
# List of rules, applied in order
'rules' : [
@@ -25,9 +28,14 @@
'regexp' : '.*/third_party/',
'include' : 0,
},
+ # Don't include non-Linux platform dirs
+ {
+ 'regexp' : '.*/(chromeos|views)/',
+ 'include' : 0,
+ },
# Don't include windows or mac specific files
{
- 'regexp' : '.*(_|/)(mac|win)(\\.|_)',
+ 'regexp' : '.*(_|/)(mac|win|views)(\\.|_)',
'include' : 0,
},
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698