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

Side by Side Diff: build/mac/chrome_mac.croc

Issue 2022007: TTF: Don't include v8 in the coverage results. Also moves common rules to common.croc. (Closed)
Patch Set: 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') | build/win/chrome_win.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 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 # Specify inclusions before exclusions, since rules are in order.
8 # are in order. 8
9 {
10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/',
11 'include' : 1,
12 },
13 # Don't include subversion or mercurial SCM dirs
14 {
15 'regexp' : '.*/(\\.svn|\\.hg)/',
16 'include' : 0,
17 },
18 # Don't include output dirs
19 {
20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/',
21 'include' : 0,
22 },
23 # Don't include third-party source
24 {
25 'regexp' : '.*/third_party/',
26 'include' : 0,
27 },
28 # Don't include linux or windows specific files 9 # Don't include linux or windows specific files
29 { 10 {
30 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', 11 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)',
31 'include' : 0, 12 'include' : 0,
32 }, 13 },
33 14
34 # Groups 15 # Groups
35 { 16 {
36 'regexp' : '.*_test_mac\\.', 17 'regexp' : '.*_test_mac\\.',
37 'group' : 'test', 18 'group' : 'test',
38 }, 19 },
39 20
40 # Languages 21 # Languages
41 { 22 {
42 'regexp' : '.*\\.m$', 23 'regexp' : '.*\\.m$',
43 'language' : 'ObjC', 24 'language' : 'ObjC',
44 }, 25 },
45 { 26 {
46 'regexp' : '.*\\.mm$', 27 'regexp' : '.*\\.mm$',
47 'language' : 'ObjC++', 28 'language' : 'ObjC++',
48 }, 29 },
49 ], 30 ],
50 } 31 }
OLDNEW
« 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