2012-05-21 15:12:37 +04:00
|
|
|
# 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/.
|
2006-02-02 23:56:10 +03:00
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2011-11-19 17:35:03 +04:00
|
|
|
# run the binscope tool to make sure the binary and all libraries
|
|
|
|
# are using all available Windows OS-level security mechanisms
|
2016-02-08 04:31:01 +03:00
|
|
|
# Don't do this in clang-cl since it doesn't support debug information yet.
|
|
|
|
ifndef CLANG_CL
|
2011-11-19 17:35:03 +04:00
|
|
|
check::
|
2011-11-21 20:56:20 +04:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
2016-04-08 20:34:40 +03:00
|
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|
2016-02-08 04:31:01 +03:00
|
|
|
endif
|