blob: c562f2ad6ffadc9f771ccdf992e031368fb3461d [file] [log] [blame]
# -*- python -*-
# Crocodile config file for Chromium windows
{
# List of rules, applied in order
'rules' : [
# Files/paths to include. Specify these before the excludes, since rules
# are in order.
{
'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue)/',
'include' : 1,
},
# Don't include subversion or mercurial SCM dirs
{
'regexp' : '.*/(\\.svn|\\.hg)/',
'include' : 0,
},
# Don't include output dirs
{
'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/',
'include' : 0,
},
# Don't include third-party source
{
'regexp' : '.*/third_party/',
'include' : 0,
},
# Don't include windows, posix, or linux specific files
{
'regexp' : '.*(_|/)(linux|posix|win)(\\.|_)',
'include' : 0,
},
# Groups
{
'regexp' : '.*_test_win\\.',
'group' : 'test',
},
],
}