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

Side by Side Diff: build/mac/chrome_mac.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 | « build/linux/chrome_linux.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 mac 2 # Crocodile config file for Chromium mac
3 3
4 { 4 {
5 # List of rules, applied in order 5 # List of rules, applied in order
6 'rules' : [ 6 'rules' : [
7 # Files/paths to include. Specify these before the excludes, since rules 7 # Files/paths to include. Specify these before the excludes, since rules
8 # are in order. 8 # are in order.
9 { 9 {
10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/', 10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/',
11 'include' : 1, 11 'include' : 1,
12 }, 12 },
13 # Don't include subversion or mercurial SCM dirs 13 # Don't include subversion or mercurial SCM dirs
14 { 14 {
15 'regexp' : '.*/(\\.svn|\\.hg)/', 15 'regexp' : '.*/(\\.svn|\\.hg)/',
16 'include' : 0, 16 'include' : 0,
17 }, 17 },
18 # Don't include output dirs 18 # Don't include output dirs
19 { 19 {
20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/', 20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/',
21 'include' : 0, 21 'include' : 0,
22 }, 22 },
23 # Don't include third-party source 23 # Don't include third-party source
24 { 24 {
25 'regexp' : '.*/third_party/', 25 'regexp' : '.*/third_party/',
26 'include' : 0, 26 'include' : 0,
27 }, 27 },
28 # Don't include windows or mac specific files 28 # Don't include linux or windows specific files
29 { 29 {
30 'regexp' : '.*(_|/)(linux|win)(\\.|_)', 30 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)',
31 'include' : 0, 31 'include' : 0,
32 }, 32 },
33 33
34 # Groups 34 # Groups
35 { 35 {
36 'regexp' : '.*_test_mac\\.', 36 'regexp' : '.*_test_mac\\.',
37 'group' : 'test', 37 'group' : 'test',
38 }, 38 },
39 39
40 # Languages 40 # Languages
41 { 41 {
42 'regexp' : '.*\\.m$', 42 'regexp' : '.*\\.m$',
43 'language' : 'ObjC', 43 'language' : 'ObjC',
44 }, 44 },
45 { 45 {
46 'regexp' : '.*\\.mm$', 46 'regexp' : '.*\\.mm$',
47 'language' : 'ObjC++', 47 'language' : 'ObjC++',
48 }, 48 },
49 ], 49 ],
50 } 50 }
OLDNEW
« no previous file with comments | « build/linux/chrome_linux.croc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698