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

Side by Side Diff: build/linux/chrome_linux.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
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | build/mac/chrome_mac.croc » ('J')
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 linux 2 # Crocodile config file for Chromium linux
3 3
4 # TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot 4 # TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot
5 # for that platform. 5 # for that platform.
6 6
7 { 7 {
8 # List of rules, applied in order 8 # List of rules, applied in order
9 'rules' : [ 9 'rules' : [
10 # Specify inclusions before exclusions, since rules are in order. 10 # Specify inclusions before exclusions, since rules are in order.
11 11
12 # Don't include non-Linux platform dirs 12 # Don't include non-Linux platform dirs
13 { 13 {
14 'regexp' : '.*/(chromeos|views)/', 14 'regexp' : '.*/(chromeos|views)/',
15 'include' : 0, 15 'include' : 0,
16 }, 16 },
17 # Don't include windows or mac specific files 17 # Don't include chromeos, windows, or mac specific files
18 { 18 {
19 'regexp' : '.*(_|/)(mac|win|views)(\\.|_)', 19 'regexp' : '.*(_|/)(chromeos|mac|win|views)(\\.|_)',
20 'include' : 0, 20 'include' : 0,
21 }, 21 },
22 22
23 # Groups 23 # Groups
24 { 24 {
25 'regexp' : '.*_test_linux\\.', 25 'regexp' : '.*_test_linux\\.',
26 'group' : 'test', 26 'group' : 'test',
27 }, 27 },
28 ], 28 ],
29 } 29 }
OLDNEW
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | build/mac/chrome_mac.croc » ('J')

Powered by Google App Engine
This is Rietveld 408576698