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

Unified Diff: build/win/chrome_win.croc

Issue 3540002: Exclude ChromeOS directories from Mac coverage lines.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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
« build/mac/chrome_mac.croc ('K') | « build/mac/chrome_mac.croc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/win/chrome_win.croc
===================================================================
--- build/win/chrome_win.croc (revision 59321)
+++ build/win/chrome_win.croc (working copy)
@@ -6,11 +6,16 @@
'rules' : [
# Specify inclusions before exclusions, since rules are in order.
- # Don't include posix or linux specific files
+ # Don't include chromeos, posix, or linux specific files
{
- 'regexp' : '.*(_|/)(linux|posix)(\\.|_)',
+ 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)',
'include' : 0,
},
+ # Don't include ChromeOS dirs
+ {
+ 'regexp' : '.*/chromeos/',
+ 'include' : 0,
+ },
# Groups
{
« build/mac/chrome_mac.croc ('K') | « build/mac/chrome_mac.croc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698