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

Unified Diff: build/mac/chrome_mac.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
« no previous file with comments | « build/linux/chrome_linux.croc ('k') | build/win/chrome_win.croc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/mac/chrome_mac.croc
===================================================================
--- build/mac/chrome_mac.croc (revision 59321)
+++ build/mac/chrome_mac.croc (working copy)
@@ -6,11 +6,16 @@
'rules' : [
# Specify inclusions before exclusions, since rules are in order.
- # Don't include linux or windows specific files
+ # Don't include chromeos, linux, or windows specific files
{
- 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)',
+ 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)',
'include' : 0,
},
+ # Don't include ChromeOS dirs
+ {
+ 'regexp' : '.*/chromeos/',
bulach 2010/10/04 09:42:05 you may want to add this rule to chrome_linux.croc
John Grabowski 2010/10/04 20:21:39 I would prefer to have 2 regexps which are margina
+ 'include' : 0,
+ },
# Groups
{
« no previous file with comments | « build/linux/chrome_linux.croc ('k') | build/win/chrome_win.croc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698