mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# The entire tree should be subject to static analysis using the XPCOM
|
|
# script. Additional scripts may be added by specific subdirectories.
|
|
|
|
DEHYDRA_SCRIPT = $(topsrcdir)/config/static-checking.js
|
|
|
|
DEHYDRA_MODULES = \
|
|
$(topsrcdir)/xpcom/analysis/final.js \
|
|
$(topsrcdir)/xpcom/analysis/override.js \
|
|
$(topsrcdir)/xpcom/analysis/must-override.js \
|
|
$(NULL)
|
|
|
|
TREEHYDRA_MODULES = \
|
|
$(topsrcdir)/xpcom/analysis/outparams.js \
|
|
$(topsrcdir)/xpcom/analysis/stack.js \
|
|
$(topsrcdir)/xpcom/analysis/flow.js \
|
|
$(topsrcdir)/xpcom/analysis/static-init.js \
|
|
$(topsrcdir)/js/src/jsstack.js \
|
|
$(topsrcdir)/layout/generic/frame-verify.js \
|
|
$(NULL)
|
|
|
|
DEHYDRA_ARG_PREFIX=-fplugin-arg-gcc_treehydra-
|
|
|
|
DEHYDRA_ARGS = \
|
|
$(DEHYDRA_ARG_PREFIX)script=$(DEHYDRA_SCRIPT) \
|
|
$(DEHYDRA_ARG_PREFIX)topsrcdir=$(topsrcdir) \
|
|
$(DEHYDRA_ARG_PREFIX)objdir=$(DEPTH) \
|
|
$(DEHYDRA_ARG_PREFIX)dehydra-modules=$(subst $(NULL) ,$(COMMA),$(strip $(DEHYDRA_MODULES))) \
|
|
$(DEHYDRA_ARG_PREFIX)treehydra-modules=$(subst $(NULL) ,$(COMMA),$(strip $(TREEHYDRA_MODULES))) \
|
|
$(NULL)
|
|
|
|
DEHYDRA_FLAGS = -fplugin=$(DEHYDRA_PATH) $(DEHYDRA_ARGS)
|
|
|
|
ifdef DEHYDRA_PATH
|
|
OS_CXXFLAGS += $(DEHYDRA_FLAGS)
|
|
endif
|