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