michael@0: # -*- python -*- michael@0: # Crocodile config file for Chromium linux michael@0: michael@0: # TODO(jhawkins): We'll need to add a chromeos.croc once we get a coverage bot michael@0: # for that platform. 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 non-Linux platform dirs michael@0: { michael@0: 'regexp' : '.*/(chromeos|views)/', michael@0: 'include' : 0, michael@0: }, michael@0: # Don't include chromeos, windows, or mac specific files michael@0: { michael@0: 'regexp' : '.*(_|/)(chromeos|mac|win|views)(\\.|_)', michael@0: 'include' : 0, michael@0: }, michael@0: michael@0: # Groups michael@0: { michael@0: 'regexp' : '.*_test_linux\\.', michael@0: 'group' : 'test', michael@0: }, michael@0: ], michael@0: }