michael@0: # -*- python -*- michael@0: # Crocodile config file for Chromium mac michael@0: michael@0: { michael@0: # List of rules, applied in order michael@0: 'rules' : [ michael@0: # Specify inclusions before exclusions, since rules are in order. michael@0: michael@0: # Don't include chromeos, linux, or windows specific files michael@0: { michael@0: 'regexp' : '.*(_|/)(chromeos|linux|win|views)(\\.|_)', michael@0: 'include' : 0, michael@0: }, michael@0: # Don't include ChromeOS dirs michael@0: { michael@0: 'regexp' : '.*/chromeos/', michael@0: 'include' : 0, michael@0: }, michael@0: michael@0: # Groups michael@0: { michael@0: 'regexp' : '.*_test_mac\\.', michael@0: 'group' : 'test', michael@0: }, michael@0: michael@0: # Languages michael@0: { michael@0: 'regexp' : '.*\\.m$', michael@0: 'language' : 'ObjC', michael@0: }, michael@0: { michael@0: 'regexp' : '.*\\.mm$', michael@0: 'language' : 'ObjC++', michael@0: }, michael@0: ], michael@0: }