Revert part of bug 460548, increasing the leak to 75000 again.
[wine-gecko.git] / config / static-checking-config.mk
blob1c834f88420863955b3948d6b0813b86562244ff
1 # The entire tree should be subject to static analysis using the XPCOM
2 # script. Additional scripts may be added by specific subdirectories.
4 DEHYDRA_SCRIPT = $(topsrcdir)/config/static-checking.js
6 DEHYDRA_MODULES = \
7 $(topsrcdir)/xpcom/analysis/final.js \
8 $(NULL)
10 TREEHYDRA_MODULES = \
11 $(topsrcdir)/xpcom/analysis/outparams.js \
12 $(topsrcdir)/xpcom/analysis/stack.js \
13 $(topsrcdir)/xpcom/analysis/flow.js \
14 $(topsrcdir)/js/src/jsstack.js \
15 $(NULL)
17 DEHYDRA_ARGS = \
18 --topsrcdir=$(topsrcdir) \
19 --objdir=$(DEPTH) \
20 --dehydra-modules=$(subst $(NULL) ,$(COMMA),$(strip $(DEHYDRA_MODULES))) \
21 --treehydra-modules=$(subst $(NULL) ,$(COMMA),$(strip $(TREEHYDRA_MODULES))) \
22 $(NULL)
24 DEHYDRA_FLAGS = -fplugin=$(DEHYDRA_PATH) -fplugin-arg='$(DEHYDRA_SCRIPT) $(DEHYDRA_ARGS)'
26 ifdef DEHYDRA_PATH
27 OS_CXXFLAGS += $(DEHYDRA_FLAGS)
28 endif