diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 01:00:12 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-07 01:00:12 +0000 |
commit | edcbed942435d8a900f89a244ec67296e005777b (patch) | |
tree | 96515cbd617cb04e9f34da1092e59812bde29c7b /build/mac | |
parent | d8922f242f544d7bdd84263676e75906e154e2c2 (diff) | |
download | chromium_src-edcbed942435d8a900f89a244ec67296e005777b.zip chromium_src-edcbed942435d8a900f89a244ec67296e005777b.tar.gz chromium_src-edcbed942435d8a900f89a244ec67296e005777b.tar.bz2 |
[TFF] Coverage: Don't include any non-Linux platform directories in the Linux code coverage analysis.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2046002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@46647 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/mac')
-rw-r--r-- | build/mac/chrome_mac.croc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/mac/chrome_mac.croc b/build/mac/chrome_mac.croc index 9d1d393..a31f4d0 100644 --- a/build/mac/chrome_mac.croc +++ b/build/mac/chrome_mac.croc @@ -25,9 +25,9 @@ 'regexp' : '.*/third_party/', 'include' : 0, }, - # Don't include windows or mac specific files + # Don't include linux or windows specific files { - 'regexp' : '.*(_|/)(linux|win)(\\.|_)', + 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', 'include' : 0, }, |