mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
30 lines
653 B
Python
30 lines
653 B
Python
# -*- python -*-
|
|
# Crocodile config file for Chromium linux
|
|
|
|
# TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot
|
|
# for that platform.
|
|
|
|
{
|
|
# List of rules, applied in order
|
|
'rules' : [
|
|
# Specify inclusions before exclusions, since rules are in order.
|
|
|
|
# Don't include non-Linux platform dirs
|
|
{
|
|
'regexp' : '.*/(chromeos|views)/',
|
|
'include' : 0,
|
|
},
|
|
# Don't include chromeos, windows, or mac specific files
|
|
{
|
|
'regexp' : '.*(_|/)(chromeos|mac|win|views)(\\.|_)',
|
|
'include' : 0,
|
|
},
|
|
|
|
# Groups
|
|
{
|
|
'regexp' : '.*_test_linux\\.',
|
|
'group' : 'test',
|
|
},
|
|
],
|
|
}
|