mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
a88d164819
MozReview-Commit-ID: 8FY0F6reO1g --HG-- extra : rebase_source : 7caa74f3627ffa99982f4502fd3a0c98077d7270
15 lines
683 B
Makefile
15 lines
683 B
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/.
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# run the binscope tool to make sure the binary and all libraries
|
|
# are using all available Windows OS-level security mechanisms
|
|
# Don't do this in clang-cl since it doesn't support debug information yet.
|
|
ifndef CLANG_CL
|
|
check::
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
|
|
$(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
|
|
endif
|