diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 21:10:56 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-05-12 21:10:56 +0000 |
commit | 1cbfc541a98d89c1e7d72f592eec0e18a85c98e1 (patch) | |
tree | fed8f4431d74652ffdab3ec4721a21e0c649c05e /build/mac | |
parent | c1b60c1bf92e06c3c3e9c3300acd7d057b16ee89 (diff) | |
download | chromium_src-1cbfc541a98d89c1e7d72f592eec0e18a85c98e1.zip chromium_src-1cbfc541a98d89c1e7d72f592eec0e18a85c98e1.tar.gz chromium_src-1cbfc541a98d89c1e7d72f592eec0e18a85c98e1.tar.bz2 |
TTF: Don't include v8 in the coverage results. Also moves common rules to common.croc.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/2022007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@47071 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/mac')
-rw-r--r-- | build/mac/chrome_mac.croc | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/build/mac/chrome_mac.croc b/build/mac/chrome_mac.croc index a31f4d0..f202cb9 100644 --- a/build/mac/chrome_mac.croc +++ b/build/mac/chrome_mac.croc @@ -4,27 +4,8 @@ { # List of rules, applied in order 'rules' : [ - # Files/paths to include. Specify these before the excludes, since rules - # are in order. - { - 'regexp' : '^CHROMIUM/(base|media|net|printing|chrome|v8|webkit/glue|native_client)/', - 'include' : 1, - }, - # Don't include subversion or mercurial SCM dirs - { - 'regexp' : '.*/(\\.svn|\\.hg)/', - 'include' : 0, - }, - # Don't include output dirs - { - 'regexp' : '.*/(Debug|Release|sconsbuild|xcodebuild)/', - 'include' : 0, - }, - # Don't include third-party source - { - 'regexp' : '.*/third_party/', - 'include' : 0, - }, + # Specify inclusions before exclusions, since rules are in order. + # Don't include linux or windows specific files { 'regexp' : '.*(_|/)(linux|win|views)(\\.|_)', |