blob: f4003060f69c255dfbd9e1dcc1b03adbc63d01d5 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# -*- python -*-
2# Crocodile config file for Chromium linux
3
4# TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot
5# for that platform.
6
7{
8 # List of rules, applied in order
9 'rules' : [
10 # Specify inclusions before exclusions, since rules are in order.
11
12 # Don't include non-Linux platform dirs
13 {
14 'regexp' : '.*/(chromeos|views)/',
15 'include' : 0,
16 },
17 # Don't include chromeos, windows, or mac specific files
18 {
19 'regexp' : '.*(_|/)(chromeos|mac|win|views)(\\.|_)',
20 'include' : 0,
21 },
22
23 # Groups
24 {
25 'regexp' : '.*_test_linux\\.',
26 'group' : 'test',
27 },
28 ],
29}