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