OLD | NEW |
---|---|
1 # -*- python -*- | 1 # -*- python -*- |
2 # Crocodile config file for Chromium mac | 2 # Crocodile config file for Chromium mac |
3 | 3 |
4 { | 4 { |
5 # List of rules, applied in order | 5 # List of rules, applied in order |
6 'rules' : [ | 6 'rules' : [ |
7 # Specify inclusions before exclusions, since rules are in order. | 7 # Specify inclusions before exclusions, since rules are in order. |
8 | 8 |
9 # Don't include linux or windows specific files | 9 # Don't include chromeos, linux, or windows specific files |
10 { | 10 { |
11 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', | 11 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)', |
12 'include' : 0, | |
13 }, | |
14 # Don't include ChromeOS dirs | |
15 { | |
16 'regexp' : '.*/chromeos/', | |
bulach
2010/10/04 09:42:05
you may want to add this rule to chrome_linux.croc
John Grabowski
2010/10/04 20:21:39
I would prefer to have 2 regexps which are margina
| |
12 'include' : 0, | 17 'include' : 0, |
13 }, | 18 }, |
14 | 19 |
15 # Groups | 20 # Groups |
16 { | 21 { |
17 'regexp' : '.*_test_mac\\.', | 22 'regexp' : '.*_test_mac\\.', |
18 'group' : 'test', | 23 'group' : 'test', |
19 }, | 24 }, |
20 | 25 |
21 # Languages | 26 # Languages |
22 { | 27 { |
23 'regexp' : '.*\\.m$', | 28 'regexp' : '.*\\.m$', |
24 'language' : 'ObjC', | 29 'language' : 'ObjC', |
25 }, | 30 }, |
26 { | 31 { |
27 'regexp' : '.*\\.mm$', | 32 'regexp' : '.*\\.mm$', |
28 'language' : 'ObjC++', | 33 'language' : 'ObjC++', |
29 }, | 34 }, |
30 ], | 35 ], |
31 } | 36 } |
OLD | NEW |