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

Side by Side 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, 2 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 unified diff | Download patch | Annotate | Revision Log
« build/mac/chrome_mac.croc ('K') | « build/mac/chrome_mac.croc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Crocodile config file for Chromium windows 2 # Crocodile config file for Chromium windows
3 3
4 { 4 {
5 # List of rules, applied in order 5 # List of rules, applied in order
6 'rules' : [ 6 'rules' : [
7 # Specify inclusions before exclusions, since rules are in order. 7 # Specify inclusions before exclusions, since rules are in order.
8 8
9 # Don't include posix or linux specific files 9 # Don't include chromeos, posix, or linux specific files
10 { 10 {
11 'regexp' : '.*(_|/)(linux|posix)(\\.|_)', 11 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)',
12 'include' : 0,
13 },
14 # Don't include ChromeOS dirs
15 {
16 'regexp' : '.*/chromeos/',
12 'include' : 0, 17 'include' : 0,
13 }, 18 },
14 19
15 # Groups 20 # Groups
16 { 21 {
17 'regexp' : '.*_test_win\\.', 22 'regexp' : '.*_test_win\\.',
18 'group' : 'test', 23 'group' : 'test',
19 }, 24 },
20 ], 25 ],
21 } 26 }
OLDNEW
« 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