| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Crocodile config file for Chromium - settings common to all platforms | 2 # Crocodile config file for Chromium - settings common to all platforms |
| 3 # | 3 # |
| 4 # This should be speicified before the platform-specific config, for example: | 4 # This should be speicified before the platform-specific config, for example: |
| 5 # croc -c chrome_common.croc -c linux/chrome_linux.croc | 5 # croc -c chrome_common.croc -c linux/chrome_linux.croc |
| 6 | 6 |
| 7 { | 7 { |
| 8 # List of root directories, applied in order | 8 # List of root directories, applied in order |
| 9 'roots' : [ | 9 'roots' : [ |
| 10 # Sub-paths we specifically care about and want to call out | 10 # Sub-paths we specifically care about and want to call out |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'regexp' : '^CHROMIUM/(base|media|net|printing|remoting|chrome|content|web
kit/glue|native_client)/', | 50 'regexp' : '^CHROMIUM/(base|media|net|printing|remoting|chrome|content|web
kit/glue|native_client)/', |
| 51 'include' : 1, | 51 'include' : 1, |
| 52 }, | 52 }, |
| 53 # Don't include subversion or mercurial SCM dirs | 53 # Don't include subversion or mercurial SCM dirs |
| 54 { | 54 { |
| 55 'regexp' : '.*/(\\.svn|\\.hg)/', | 55 'regexp' : '.*/(\\.svn|\\.hg)/', |
| 56 'include' : 0, | 56 'include' : 0, |
| 57 }, | 57 }, |
| 58 # Don't include output dirs | 58 # Don't include output dirs |
| 59 { | 59 { |
| 60 'regexp' : '.*/(Debug|Release|sconsbuild|out|xcodebuild)/', | 60 'regexp' : '.*/(Debug|Release|out|xcodebuild)/', |
| 61 'include' : 0, | 61 'include' : 0, |
| 62 }, | 62 }, |
| 63 # Don't include third-party source | 63 # Don't include third-party source |
| 64 { | 64 { |
| 65 'regexp' : '.*/third_party/', | 65 'regexp' : '.*/third_party/', |
| 66 'include' : 0, | 66 'include' : 0, |
| 67 }, | 67 }, |
| 68 # We don't run the V8 test suite, so we don't care about V8 coverage. | 68 # We don't run the V8 test suite, so we don't care about V8 coverage. |
| 69 { | 69 { |
| 70 'regexp' : '.*/v8/', | 70 'regexp' : '.*/v8/', |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g perce
nt', | 118 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g perce
nt', |
| 119 'group' : 'source', | 119 'group' : 'source', |
| 120 }, | 120 }, |
| 121 { | 121 { |
| 122 'stat' : '100.0 * lines_covered / lines_executable', | 122 'stat' : '100.0 * lines_covered / lines_executable', |
| 123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g percent', | 123 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g percent', |
| 124 'group' : 'test', | 124 'group' : 'test', |
| 125 }, | 125 }, |
| 126 ], | 126 ], |
| 127 } | 127 } |
| OLD | NEW |