toolkit/library/Makefile.in

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/library/Makefile.in	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +# This Source Code Form is subject to the terms of the Mozilla Public
     1.5 +# License, v. 2.0. If a copy of the MPL was not distributed with this file,
     1.6 +# You can obtain one at http://mozilla.org/MPL/2.0/.
     1.7 +
     1.8 +ifdef MOZ_CONTENT_SANDBOX
     1.9 +ifeq ($(OS_ARCH),WINNT)
    1.10 +  SHARED_LIBRARY_LIBS += ../../security/sandbox/win/src/sandboxbroker/$(LIB_PREFIX)sandboxbroker.$(LIB_SUFFIX)
    1.11 +endif
    1.12 +endif
    1.13 +
    1.14 +# COMPONENT_LIBS is mosly useless since bug 935881, but is kept for
    1.15 +# MOZ_APP_COMPONENT_LIBS, used by comm-central, and gtest linking.
    1.16 +SHARED_LIBRARY_LIBS += \
    1.17 +  $(foreach component,$(COMPONENT_LIBS),$(DEPTH)/staticlib/$(LIB_PREFIX)$(component).$(LIB_SUFFIX)) \
    1.18 +  $(NULL)
    1.19 +
    1.20 +ifdef MOZ_APP_COMPONENT_LIBS
    1.21 +COMPONENT_LIBS += $(MOZ_APP_COMPONENT_LIBS)
    1.22 +endif
    1.23 +
    1.24 +ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
    1.25 +CXXFLAGS += $(TK_CFLAGS)
    1.26 +endif
    1.27 +
    1.28 +include $(topsrcdir)/config/rules.mk
    1.29 +
    1.30 +.PHONY: gtestxul
    1.31 +gtestxul:
    1.32 +	$(MAKE) -C gtest libs LINK_GTEST=1

mercurial