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

Side by Side Diff: build/linux/chrome_linux.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/common.croc ('k') | 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 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 # Files/paths to include. Specify these before the excludes, since rules 10 # Specify inclusions before exclusions, since rules are in order.
11 # are in order. 11
12 {
13 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ e_client)/',
14 'include' : 1,
15 },
16 # Don't include subversion or mercurial SCM dirs
17 {
18 'regexp' : '.*/(\\.svn|\\.hg)/',
19 'include' : 0,
20 },
21 # Don't include output dirs
22 {
23 'regexp' : '.*/(Debug|Release|sconsbuild|out|xcodebuild)/',
24 'include' : 0,
25 },
26 # Don't include third-party source
27 {
28 'regexp' : '.*/third_party/',
29 'include' : 0,
30 },
31 # Don't include non-Linux platform dirs 12 # Don't include non-Linux platform dirs
32 { 13 {
33 'regexp' : '.*/(chromeos|views)/', 14 'regexp' : '.*/(chromeos|views)/',
34 'include' : 0, 15 'include' : 0,
35 }, 16 },
36 # Don't include windows or mac specific files 17 # Don't include windows or mac specific files
37 { 18 {
38 'regexp' : '.*(_|/)(mac|win|views)(\\.|_)', 19 'regexp' : '.*(_|/)(mac|win|views)(\\.|_)',
39 'include' : 0, 20 'include' : 0,
40 }, 21 },
41 22
42 # Groups 23 # Groups
43 { 24 {
44 'regexp' : '.*_test_linux\\.', 25 'regexp' : '.*_test_linux\\.',
45 'group' : 'test', 26 'group' : 'test',
46 }, 27 },
47 ], 28 ],
48 } 29 }
OLDNEW
« no previous file with comments | « build/common.croc ('k') | build/mac/chrome_mac.croc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698