# 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/. DEPTH = ../.. topsrcdir = @top_srcdir@ srcdir = @srcdir@ VPATH = @srcdir@ include $(DEPTH)/config/autoconf.mk MODULE = dom LIBRARY_NAME = domipc_s LIBXUL_LIBRARY = 1 FORCE_STATIC_LIB = 1 EXPORT_LIBRARY = 1 ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT)) TEST_DIRS += tests endif EXPORTS = PCOMContentPermissionRequestChild.h EXPORTS_NAMESPACES = mozilla/dom EXPORTS_mozilla/dom = \ ContentChild.h \ ContentParent.h \ ContentProcess.h \ CrashReporterChild.h \ CrashReporterParent.h \ TabParent.h \ TabChild.h \ TabMessageUtils.h \ $(NULL) CPPSRCS = \ ContentProcess.cpp \ ContentParent.cpp \ ContentChild.cpp \ CrashReporterParent.cpp \ CrashReporterChild.cpp \ TabParent.cpp \ TabChild.cpp \ TabMessageUtils.cpp \ $(NULL) ifdef MOZ_SYDNEYAUDIO EXPORTS_mozilla/dom += \ AudioChild.h \ AudioParent.h \ $(NULL) CPPSRCS += \ AudioChild.cpp \ AudioParent.cpp \ $(NULL) endif include $(topsrcdir)/config/config.mk include $(topsrcdir)/ipc/chromium/chromium-config.mk include $(topsrcdir)/config/rules.mk LOCAL_INCLUDES += \ -I$(srcdir)/../../content/base/src \ -I$(srcdir)/../../content/events/src \ -I$(srcdir)/../../toolkit/components/places \ -I$(topsrcdir)/chrome/src \ -I$(topsrcdir)/uriloader/exthandler \ -I$(srcdir)/../../netwerk/base/src \ -I$(srcdir)/../src/base \ -I$(srcdir)/../src/storage \ -I$(srcdir)/../../xpcom/base \ -I$(topsrcdir)/dom/indexedDB \ -I$(topsrcdir)/dom/indexedDB/ipc \ -I$(topsrcdir)/extensions/cookie \ -I$(topsrcdir)/dom/base \ -I$(topsrcdir)/toolkit/xre \ -I$(topsrcdir)/hal/sandbox \ -I$(topsrcdir)/dom/sms/src/ipc \ $(NULL) DEFINES += -DBIN_SUFFIX='"$(BIN_SUFFIX)"' ifeq ($(MOZ_WIDGET_TOOLKIT),$(findstring $(MOZ_WIDGET_TOOLKIT),android gtk2 gonk qt)) DEFINES += -DMOZ_ENABLE_FREETYPE endif ifdef MOZ_PERMISSIONS DEFINES += -DMOZ_PERMISSIONS endif CXXFLAGS += $(TK_CFLAGS)