From 6ecbbf93782a5fbda400c393599899e965a2a7a1 Mon Sep 17 00:00:00 2001 From: "blythe%netscape.com" Date: Fri, 11 Oct 2002 01:40:22 +0000 Subject: [PATCH] not part of build refine set of files to get code size information on --- tools/codesighs/autosummary.linux.bash | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/tools/codesighs/autosummary.linux.bash b/tools/codesighs/autosummary.linux.bash index e8d90e447ec..64e68512bc3 100755 --- a/tools/codesighs/autosummary.linux.bash +++ b/tools/codesighs/autosummary.linux.bash @@ -83,6 +83,16 @@ fi # Be sure to modify the grep command below as well. # EXCLUDE_PATTERN_01="test" +EXCLUDE_PATTERN_02="tsv" + +EXCLUDE_NAMES="-not -name viewer" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name spacetrace" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name xpidl" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name bloadblame" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name leakstats" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name codesighs" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name htmlrobot" +EXCLUDE_NAMES="$EXCLUDE_NAMES -not -name DumpColors" # @@ -104,14 +114,14 @@ mkdir -p $TMPDIR # Find all relevant files. # ALLFILES="$TMPDIR/allfiles.list" -find ./mozilla/dist/bin -not -type d > $ALLFILES +find ./mozilla/dist/bin -not -type d $EXCLUDE_NAMES > $ALLFILES # # Reduce the files to a revelant set. # THEFILES="$TMPDIR/files.list" -grep -vi $EXCLUDE_PATTERN_01 < $ALLFILES > $THEFILES +grep -vi $EXCLUDE_PATTERN_01 < $ALLFILES | grep -vi $EXCLUDE_PATTERN_02 > $THEFILES #