| OLD | NEW |
| (Empty) |
| 1 # -*- python -*- | |
| 2 # Crocodile config file for Chromium mac | |
| 3 | |
| 4 { | |
| 5 # List of rules, applied in order | |
| 6 'rules' : [ | |
| 7 # Specify inclusions before exclusions, since rules are in order. | |
| 8 | |
| 9 # Don't include chromeos, linux, or windows specific files | |
| 10 { | |
| 11 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)', | |
| 12 'include' : 0, | |
| 13 }, | |
| 14 # Don't include ChromeOS dirs | |
| 15 { | |
| 16 'regexp' : '.*/chromeos/', | |
| 17 'include' : 0, | |
| 18 }, | |
| 19 | |
| 20 # Groups | |
| 21 { | |
| 22 'regexp' : '.*_test_mac\\.', | |
| 23 'group' : 'test', | |
| 24 }, | |
| 25 | |
| 26 # Languages | |
| 27 { | |
| 28 'regexp' : '.*\\.m$', | |
| 29 'language' : 'ObjC', | |
| 30 }, | |
| 31 { | |
| 32 'regexp' : '.*\\.mm$', | |
| 33 'language' : 'ObjC++', | |
| 34 }, | |
| 35 ], | |
| 36 } | |
| OLD | NEW |