michael@0: # This Source Code Form is subject to the terms of the Mozilla Public michael@0: # License, v. 2.0. If a copy of the MPL was not distributed with this file, michael@0: # You can obtain one at http://mozilla.org/MPL/2.0/. michael@0: michael@0: ifdef MOZ_CONTENT_SANDBOX michael@0: ifeq ($(OS_ARCH),WINNT) michael@0: SHARED_LIBRARY_LIBS += ../../security/sandbox/win/src/sandboxbroker/$(LIB_PREFIX)sandboxbroker.$(LIB_SUFFIX) michael@0: endif michael@0: endif michael@0: michael@0: # COMPONENT_LIBS is mosly useless since bug 935881, but is kept for michael@0: # MOZ_APP_COMPONENT_LIBS, used by comm-central, and gtest linking. michael@0: SHARED_LIBRARY_LIBS += \ michael@0: $(foreach component,$(COMPONENT_LIBS),$(DEPTH)/staticlib/$(LIB_PREFIX)$(component).$(LIB_SUFFIX)) \ michael@0: $(NULL) michael@0: michael@0: ifdef MOZ_APP_COMPONENT_LIBS michael@0: COMPONENT_LIBS += $(MOZ_APP_COMPONENT_LIBS) michael@0: endif michael@0: michael@0: ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa) michael@0: CXXFLAGS += $(TK_CFLAGS) michael@0: endif michael@0: michael@0: include $(topsrcdir)/config/rules.mk michael@0: michael@0: .PHONY: gtestxul michael@0: gtestxul: michael@0: $(MAKE) -C gtest libs LINK_GTEST=1