2012-02-01 22:09:00 -08: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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-10-30 16:58:45 -07:00
|
|
|
ifdef MOZ_CONTENT_SANDBOX
|
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2013-10-30 16:58:56 -07:00
|
|
|
SHARED_LIBRARY_LIBS += ../../security/sandbox/win/src/sandboxbroker/$(LIB_PREFIX)sandboxbroker.$(LIB_SUFFIX)
|
2013-03-30 15:29:47 -07:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-11-18 18:47:14 -08:00
|
|
|
# COMPONENT_LIBS is mosly useless since bug 935881, but is kept for
|
|
|
|
# MOZ_APP_COMPONENT_LIBS, used by comm-central, and gtest linking.
|
2007-03-22 10:30:00 -07:00
|
|
|
SHARED_LIBRARY_LIBS += \
|
2013-08-08 17:12:37 -07:00
|
|
|
$(foreach component,$(COMPONENT_LIBS),$(DEPTH)/staticlib/$(LIB_PREFIX)$(component).$(LIB_SUFFIX)) \
|
2011-11-16 10:58:09 -08:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef MOZ_APP_COMPONENT_LIBS
|
2013-07-29 08:03:21 -07:00
|
|
|
COMPONENT_LIBS += $(MOZ_APP_COMPONENT_LIBS)
|
2011-11-16 10:58:09 -08:00
|
|
|
endif
|
|
|
|
|
2008-02-29 15:24:53 -08:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
2011-11-16 10:58:09 -08:00
|
|
|
CXXFLAGS += $(TK_CFLAGS)
|
2014-03-29 00:49:19 -07:00
|
|
|
endif
|
|
|
|
|
2009-11-02 01:17:27 -08:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2013-03-11 11:47:40 -07:00
|
|
|
.PHONY: gtestxul
|
2014-03-31 04:21:38 -07:00
|
|
|
gtestxul:
|
|
|
|
$(MAKE) -C gtest libs LINK_GTEST=1
|