| OLD | NEW |
| 1 # -*- python -*- | 1 # -*- python -*- |
| 2 # Crocodile config file for Chrome Frame. | 2 # Crocodile config file for Chrome Frame. |
| 3 # Parsed by: | 3 # Parsed by: |
| 4 # http://src.chromium.org/viewvc/chrome/trunk/src/tools/code_coverage/croc.py?vi
ew=markup | 4 # http://src.chromium.org/viewvc/chrome/trunk/src/tools/code_coverage/croc.py?vi
ew=markup |
| 5 | 5 |
| 6 { | 6 { |
| 7 # List of root directories, applied in order | 7 # List of root directories, applied in order |
| 8 'roots' : [ | 8 'roots' : [ |
| 9 # Sub-paths we specifically care about and want to call out | 9 # Sub-paths we specifically care about and want to call out |
| 10 { | 10 { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'regexp' : '^CHROMIUM/chrome_frame/', | 49 'regexp' : '^CHROMIUM/chrome_frame/', |
| 50 'include' : 1, | 50 'include' : 1, |
| 51 }, | 51 }, |
| 52 # Don't include subversion or mercurial SCM dirs | 52 # Don't include subversion or mercurial SCM dirs |
| 53 { | 53 { |
| 54 'regexp' : '.*/(\\.svn|\\.hg)/', | 54 'regexp' : '.*/(\\.svn|\\.hg)/', |
| 55 'include' : 0, | 55 'include' : 0, |
| 56 }, | 56 }, |
| 57 # Don't include output dirs | 57 # Don't include output dirs |
| 58 { | 58 { |
| 59 'regexp' : '.*/(Debug|Release|debug|release|sconsbuild|out|xcodebuild)/', | 59 'regexp' : '.*/(Debug|Release|debug|release|out|xcodebuild)/', |
| 60 'include' : 0, | 60 'include' : 0, |
| 61 }, | 61 }, |
| 62 # Don't include third-party source | 62 # Don't include third-party source |
| 63 { | 63 { |
| 64 'regexp' : '.*/third_party/.*', | 64 'regexp' : '.*/third_party/.*', |
| 65 'include' : 0, | 65 'include' : 0, |
| 66 }, | 66 }, |
| 67 ], | 67 ], |
| 68 | 68 |
| 69 # Paths to add source from | 69 # Paths to add source from |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g', | 113 'format' : '*RESULT PercentCoveredSource: percent_covered_source= %g', |
| 114 'group' : 'source', | 114 'group' : 'source', |
| 115 }, | 115 }, |
| 116 { | 116 { |
| 117 'stat' : '100.0 * lines_covered / lines_executable', | 117 'stat' : '100.0 * lines_covered / lines_executable', |
| 118 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g', | 118 'format' : '*RESULT PercentCoveredTest: percent_covered_test= %g', |
| 119 'group' : 'test', | 119 'group' : 'test', |
| 120 }, | 120 }, |
| 121 ], | 121 ], |
| 122 } | 122 } |
| OLD | NEW |