mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 08:07:11 +00:00
aa6353b6da
R=kmillikin@google.com BUG= Review-Url: https://codereview.chromium.org/2850783002 .
26 lines
532 B
Python
26 lines
532 B
Python
# -*- python -*-
|
|
# Crocodile config file for Chromium windows
|
|
|
|
{
|
|
# List of rules, applied in order
|
|
'rules' : [
|
|
# Specify inclusions before exclusions, since rules are in order.
|
|
|
|
# Don't include ChromeOS, posix, or linux specific files
|
|
{
|
|
'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)',
|
|
'include' : 0,
|
|
},
|
|
# Don't include ChromeOS dirs
|
|
{
|
|
'regexp' : '.*/chromeos/',
|
|
'include' : 0,
|
|
},
|
|
|
|
# Groups
|
|
{
|
|
'regexp' : '.*_test_win\\.',
|
|
'group' : 'test',
|
|
},
|
|
],
|
|
}
|