Makefile.in 573 B

12345678910111213141516171819
  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. # Avoid recursive make to avoid having to add files to the gtest/ subdirectory
  5. # (which is third-party code), and to make the build faster.
  6. include $(topsrcdir)/config/rules.mk
  7. ifdef MOZ_PHOENIX
  8. ifdef COMPILE_ENVIRONMENT
  9. gtest::
  10. $(MAKE) -C $(DEPTH)/toolkit/library gtestxul
  11. ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
  12. $(MAKE) -C $(DEPTH)/browser/app repackage
  13. endif
  14. endif
  15. endif