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

Side by Side Diff: build/linux/chrome_linux.croc

Issue 2046002: [TFF] Coverage: Don't include any chromeos directory in the Linux code coverage analysis. (Closed)
Patch Set: Update mac. Created 10 years, 7 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
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | 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 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
5 # for that platform.
6
4 { 7 {
5 # List of rules, applied in order 8 # List of rules, applied in order
6 'rules' : [ 9 'rules' : [
7 # Files/paths to include. Specify these before the excludes, since rules 10 # Files/paths to include. Specify these before the excludes, since rules
8 # are in order. 11 # are in order.
9 { 12 {
10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/', 13 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/',
11 'include' : 1, 14 'include' : 1,
12 }, 15 },
13 # Don't include subversion or mercurial SCM dirs 16 # Don't include subversion or mercurial SCM dirs
14 { 17 {
15 'regexp' : '.*/(\\.svn|\\.hg)/', 18 'regexp' : '.*/(\\.svn|\\.hg)/',
16 'include' : 0, 19 'include' : 0,
17 }, 20 },
18 # Don't include output dirs 21 # Don't include output dirs
19 { 22 {
20 'regexp' : '.*/(Debug|Release|sconsbuild|out|xcodebuild)/', 23 'regexp' : '.*/(Debug|Release|sconsbuild|out|xcodebuild)/',
21 'include' : 0, 24 'include' : 0,
22 }, 25 },
23 # Don't include third-party source 26 # Don't include third-party source
24 { 27 {
25 'regexp' : '.*/third_party/', 28 'regexp' : '.*/third_party/',
26 'include' : 0, 29 'include' : 0,
27 }, 30 },
31 # Don't include non-Linux platform dirs
32 {
33 'regexp' : '.*/(chromeos|views)/',
34 'include' : 0,
35 },
28 # Don't include windows or mac specific files 36 # Don't include windows or mac specific files
29 { 37 {
30 'regexp' : '.*(_|/)(mac|win)(\\.|_)', 38 'regexp' : '.*(_|/)(mac|win|views)(\\.|_)',
31 'include' : 0, 39 'include' : 0,
32 }, 40 },
33 41
34 # Groups 42 # Groups
35 { 43 {
36 'regexp' : '.*_test_linux\\.', 44 'regexp' : '.*_test_linux\\.',
37 'group' : 'test', 45 'group' : 'test',
38 }, 46 },
39 ], 47 ],
40 } 48 }
OLDNEW
« no previous file with comments | « no previous file | build/mac/chrome_mac.croc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698