webdriver: Implement Fullscreen command support (#100)
[gecko.git] / config / static-checking-config.mk
blobc24e40c93a5448dff00cee813b02d0cc6d65cc8a
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 # The entire tree should be subject to static analysis using the XPCOM
6 # script. Additional scripts may be added by specific subdirectories.
8 ifdef ENABLE_CLANG_PLUGIN
9 # Replace "clang-cl.exe" to "clang.exe --driver-mode=cl" to avoid loading the
10 # module clang.exe again when load the plugin dll, which links to the import
11 # library of clang.exe.
12 ifeq ($(OS_ARCH),WINNT)
13 CC := $(subst clang-cl.exe,clang.exe --driver-mode=cl,$(CC:.EXE=.exe))
14 CXX := $(subst clang-cl.exe,clang.exe --driver-mode=cl,$(CXX:.EXE=.exe))
15 endif
17 CLANG_PLUGIN := $(topobjdir)/build/clang-plugin/$(DLL_PREFIX)clang-plugin$(DLL_SUFFIX)
18 OS_CXXFLAGS += -Xclang -load -Xclang $(CLANG_PLUGIN) -Xclang -add-plugin -Xclang moz-check
19 OS_CFLAGS += -Xclang -load -Xclang $(CLANG_PLUGIN) -Xclang -add-plugin -Xclang moz-check
20 endif