media/webrtc/trunk/build/mac/chrome_mac.croc

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

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

mercurial