summaryrefslogtreecommitdiffstats
path: root/build/mac/chrome_mac.croc
blob: f202cb982159733aa835881abf78f8a116a76a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- 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 linux or windows specific files
    {
      'regexp' : '.*(_|/)(linux|win|views)(\\.|_)',
      'include' : 0,
    },

    # Groups
    {
      'regexp' : '.*_test_mac\\.',
      'group' : 'test',
    },

    # Languages
    {
      'regexp' : '.*\\.m$',
      'language' : 'ObjC',
    },
    {
      'regexp' : '.*\\.mm$',
      'language' : 'ObjC++',
    },
  ],
}