Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | # -*- python -*- |
michael@0 | 2 | # Crocodile config file for Chromium windows |
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, posix, or linux specific files |
michael@0 | 10 | { |
michael@0 | 11 | 'regexp' : '.*(_|/)(chromeos|linux|posix)(\\.|_)', |
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_win\\.', |
michael@0 | 23 | 'group' : 'test', |
michael@0 | 24 | }, |
michael@0 | 25 | ], |
michael@0 | 26 | } |