Makefile.in 683 B

123456789101112131415
  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/.
  4. include $(topsrcdir)/config/rules.mk
  5. # run the binscope tool to make sure the binary and all libraries
  6. # are using all available Windows OS-level security mechanisms
  7. # Don't do this in clang-cl since it doesn't support debug information yet.
  8. ifndef CLANG_CL
  9. check::
  10. $(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/$(MOZ_APP_NAME)$(BIN_SUFFIX) $(DIST)/crashreporter-symbols/
  11. $(PYTHON) $(srcdir)/autobinscope.py $(DIST)/bin/plugin-container.exe $(DIST)/crashreporter-symbols/
  12. endif