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