| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Crocodile config file for Chromium mac | 2 # Crocodile config file for Chromium mac |
| 3 | 3 |
| 4 { | 4 { |
| 5 # List of rules, applied in order | 5 # List of rules, applied in order |
| 6 'rules' : [ | 6 'rules' : [ |
| 7 # Files/paths to include. Specify these before the excludes, since rules | 7 # Specify inclusions before exclusions, since rules are in order. |
| 8 # are in order. | 8 |
| 9 { | |
| 10 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|nativ
e_client)/', | |
| 11 'include' : 1, | |
| 12 }, | |
| 13 # Don't include subversion or mercurial SCM dirs | |
| 14 { | |
| 15 'regexp' : '.*/(\\.svn|\\.hg)/', | |
| 16 'include' : 0, | |
| 17 }, | |
| 18 # Don't include output dirs | |
| 19 { | |
| 20 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/', | |
| 21 'include' : 0, | |
| 22 }, | |
| 23 # Don't include third-party source | |
| 24 { | |
| 25 'regexp' : '.*/third_party/', | |
| 26 'include' : 0, | |
| 27 }, | |
| 28 # Don't include linux or windows specific files | 9 # Don't include linux or windows specific files |
| 29 { | 10 { |
| 30 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', | 11 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', |
| 31 'include' : 0, | 12 'include' : 0, |
| 32 }, | 13 }, |
| 33 | 14 |
| 34 # Groups | 15 # Groups |
| 35 { | 16 { |
| 36 'regexp' : '.*_test_mac\\.', | 17 'regexp' : '.*_test_mac\\.', |
| 37 'group' : 'test', | 18 'group' : 'test', |
| 38 }, | 19 }, |
| 39 | 20 |
| 40 # Languages | 21 # Languages |
| 41 { | 22 { |
| 42 'regexp' : '.*\\.m$', | 23 'regexp' : '.*\\.m$', |
| 43 'language' : 'ObjC', | 24 'language' : 'ObjC', |
| 44 }, | 25 }, |
| 45 { | 26 { |
| 46 'regexp' : '.*\\.mm$', | 27 'regexp' : '.*\\.mm$', |
| 47 'language' : 'ObjC++', | 28 'language' : 'ObjC++', |
| 48 }, | 29 }, |
| 49 ], | 30 ], |
| 50 } | 31 } |
| OLD | NEW |