2002-08-21 14:25:54 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
#
|
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
|
|
|
#
|
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 2001
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
2003-09-29 10:04:02 +04:00
|
|
|
# Brian Ryner <bryner@brianryner.com>
|
2005-07-21 17:33:43 +04:00
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
2002-08-21 14:25:54 +04:00
|
|
|
#
|
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
#
|
|
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
|
2011-03-08 06:58:46 +03:00
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2002-08-21 14:25:54 +04:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = xulapp
|
|
|
|
LIBRARY_NAME = xulapp_s
|
2005-03-19 00:24:05 +03:00
|
|
|
LIBXUL_LIBRARY = 1
|
2002-08-21 14:25:54 +04:00
|
|
|
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
2004-12-04 21:25:46 +03:00
|
|
|
XPIDLSRCS = \
|
2011-03-08 06:58:46 +03:00
|
|
|
nsINativeAppSupport.idl \
|
|
|
|
$(NULL)
|
2004-10-29 23:28:38 +04:00
|
|
|
|
2011-04-29 14:38:26 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
2007-01-30 08:14:50 +03:00
|
|
|
XPIDLSRCS += nsIWinAppHelper.idl
|
|
|
|
endif
|
|
|
|
|
2002-08-25 13:31:39 +04:00
|
|
|
CPPSRCS = \
|
2011-03-08 06:58:46 +03:00
|
|
|
nsAppRunner.cpp \
|
|
|
|
nsConsoleWriter.cpp \
|
|
|
|
nsXREDirProvider.cpp \
|
|
|
|
nsNativeAppSupportBase.cpp \
|
|
|
|
nsAppData.cpp \
|
|
|
|
nsSigHandlers.cpp \
|
2011-05-23 20:54:47 +04:00
|
|
|
nsEmbedFunctions.cpp \
|
2011-03-08 06:58:46 +03:00
|
|
|
$(NULL)
|
2002-08-25 13:31:39 +04:00
|
|
|
|
2011-05-04 00:07:17 +04:00
|
|
|
ifdef MOZ_X11
|
|
|
|
ifndef MOZ_PLATFORM_MAEMO
|
|
|
|
CPPSRCS += glxtest.cpp
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2011-03-03 19:20:02 +03:00
|
|
|
ifdef MOZ_INSTRUMENT_EVENT_LOOP
|
|
|
|
CPPSRCS += EventTracer.cpp
|
2011-12-05 05:53:17 +04:00
|
|
|
EXPORTS += EventTracer.h
|
2011-03-03 19:20:02 +03:00
|
|
|
endif
|
|
|
|
|
2010-06-04 05:16:20 +04:00
|
|
|
DEFINES += -DIMPL_XREAPI -DMOZ_APP_NAME='"$(MOZ_APP_NAME)"'
|
2005-11-23 17:16:33 +03:00
|
|
|
|
2005-06-08 21:40:38 +04:00
|
|
|
ifdef MOZ_UPDATER
|
2010-09-11 03:48:52 +04:00
|
|
|
ifneq ($(OS_TARGET),Android)
|
2005-06-08 21:40:38 +04:00
|
|
|
CPPSRCS += nsUpdateDriver.cpp
|
|
|
|
DEFINES += -DMOZ_UPDATER
|
|
|
|
endif
|
2010-09-11 03:48:52 +04:00
|
|
|
endif
|
2005-06-08 21:40:38 +04:00
|
|
|
|
2004-03-08 12:56:44 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
CPPSRCS += nsNativeAppSupportWin.cpp
|
2011-05-22 10:22:27 +04:00
|
|
|
CPPSRCS += nsWindowsDllBlocklist.cpp
|
2008-01-07 19:38:12 +03:00
|
|
|
DEFINES += -DWIN32_LEAN_AND_MEAN -DUNICODE -D_UNICODE
|
2011-12-05 05:53:17 +04:00
|
|
|
EXPORTS += nsWindowsDllInterceptor.h
|
2004-06-18 01:23:51 +04:00
|
|
|
else
|
2007-08-16 18:53:10 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
|
|
|
CMMSRCS = nsNativeAppSupportCocoa.mm
|
2011-12-05 05:53:17 +04:00
|
|
|
EXPORTS += MacQuirks.h
|
2004-06-18 01:23:51 +04:00
|
|
|
else
|
2004-06-22 17:14:08 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
CPPSRCS += nsNativeAppSupportOS2.cpp
|
|
|
|
else
|
2007-07-17 06:32:14 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
CPPSRCS += nsNativeAppSupportUnix.cpp
|
|
|
|
else
|
2010-03-15 05:25:03 +03:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
2011-08-21 16:32:38 +04:00
|
|
|
MOCSRCS += moc_nsNativeAppSupportQt.cpp
|
|
|
|
CPPSRCS += $(MOCSRCS)
|
2010-03-15 05:25:03 +03:00
|
|
|
CPPSRCS += nsNativeAppSupportQt.cpp
|
2010-03-30 15:34:37 +04:00
|
|
|
CPPSRCS += nsQAppInstance.cpp
|
|
|
|
EXPORTS += nsQAppInstance.h
|
2010-03-15 05:25:03 +03:00
|
|
|
else
|
2004-06-18 01:23:51 +04:00
|
|
|
CPPSRCS += nsNativeAppSupportDefault.cpp
|
|
|
|
endif
|
2004-03-08 12:56:44 +03:00
|
|
|
endif
|
2004-06-22 17:14:08 +04:00
|
|
|
endif
|
2010-03-15 05:25:03 +03:00
|
|
|
endif
|
2005-04-15 19:13:11 +04:00
|
|
|
endif
|
2004-03-08 12:56:44 +03:00
|
|
|
|
2008-08-28 08:41:38 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
|
|
|
CMMSRCS += MacLaunchHelper.mm
|
2007-08-16 18:53:10 +04:00
|
|
|
CMMSRCS += MacApplicationDelegate.mm
|
2010-04-21 12:29:38 +04:00
|
|
|
CMMSRCS += MacAutoreleasePool.mm
|
2010-06-09 02:26:12 +04:00
|
|
|
CPPSRCS += nsCommandLineServiceMac.cpp
|
2011-01-21 22:13:04 +03:00
|
|
|
ENABLE_CXX_EXCEPTIONS = 1
|
2006-12-15 01:00:46 +03:00
|
|
|
endif
|
2004-01-21 03:57:55 +03:00
|
|
|
|
2010-02-25 01:25:16 +03:00
|
|
|
ifdef MOZ_X11
|
|
|
|
CPPSRCS += nsX11ErrorHandler.cpp
|
|
|
|
endif
|
|
|
|
|
2011-11-11 04:17:46 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),android)
|
2010-06-04 05:16:20 +04:00
|
|
|
CPPSRCS += nsAndroidStartup.cpp
|
2010-12-21 23:02:14 +03:00
|
|
|
DEFINES += -DANDROID_PACKAGE_NAME='"$(ANDROID_PACKAGE_NAME)"'
|
2010-06-04 05:16:20 +04:00
|
|
|
endif
|
|
|
|
|
2011-03-08 06:58:46 +03:00
|
|
|
SHARED_LIBRARY_LIBS += ../profile/$(LIB_PREFIX)profile_s.$(LIB_SUFFIX)
|
2004-06-18 01:23:51 +04:00
|
|
|
|
2005-04-04 23:08:55 +04:00
|
|
|
ifdef MOZ_ENABLE_XREMOTE
|
2012-01-04 07:09:29 +04:00
|
|
|
SHARED_LIBRARY_LIBS += $(DEPTH)/widget/xremoteclient/$(LIB_PREFIX)xremote_client_s.$(LIB_SUFFIX)
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/widget/xremoteclient
|
2005-04-04 23:08:55 +04:00
|
|
|
endif
|
|
|
|
|
2007-08-08 19:19:57 +04:00
|
|
|
ifdef MOZ_CRASHREPORTER
|
|
|
|
SHARED_LIBRARY_LIBS += $(DEPTH)/toolkit/crashreporter/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX)
|
2006-10-27 02:52:30 +04:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2011-03-08 06:58:46 +03:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/windows/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/windows/$(LIB_PREFIX)breakpad_windows_common_s.$(LIB_SUFFIX)
|
2006-10-27 02:52:30 +04:00
|
|
|
endif
|
2007-04-25 18:26:42 +04:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2011-03-08 06:58:46 +03:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/$(LIB_PREFIX)minidump_file_writer_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/mac/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/mac/$(LIB_PREFIX)breakpad_mac_common_s.$(LIB_SUFFIX)
|
2007-04-25 18:26:42 +04:00
|
|
|
endif
|
2007-05-23 00:20:55 +04:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2010-01-13 00:14:37 +03:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
2007-08-08 19:19:57 +04:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
2009-12-14 14:55:31 +03:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/minidump_writer/$(LIB_PREFIX)minidump_writer_s.$(LIB_SUFFIX) \
|
2007-08-08 19:19:57 +04:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/$(LIB_PREFIX)minidump_file_writer_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/linux/$(LIB_PREFIX)breakpad_linux_common_s.$(LIB_SUFFIX) \
|
2007-05-23 00:20:55 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2008-03-20 04:13:36 +03:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/solaris/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/$(LIB_PREFIX)minidump_file_writer_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/solaris/$(LIB_PREFIX)breakpad_solaris_common_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
2006-10-27 02:52:30 +04:00
|
|
|
endif
|
|
|
|
|
2012-02-04 21:32:24 +04:00
|
|
|
TEST_DIRS += test
|
2008-10-11 03:17:58 +04:00
|
|
|
|
2009-06-30 23:21:25 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
2002-08-21 14:25:54 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2010-01-13 00:14:38 +03:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/ipc \
|
|
|
|
-I$(topsrcdir)/toolkit/crashreporter \
|
2010-12-03 11:24:17 +03:00
|
|
|
-I$(topsrcdir)/dom/base \
|
2011-05-22 10:23:20 +04:00
|
|
|
-I$(topsrcdir)/xpcom/build \
|
2010-01-13 00:14:38 +03:00
|
|
|
$(NULL)
|
2009-07-01 00:39:22 +04:00
|
|
|
|
2005-07-21 17:33:43 +04:00
|
|
|
LOCAL_INCLUDES += \
|
2011-03-08 06:58:46 +03:00
|
|
|
-I$(srcdir) \
|
|
|
|
-I$(srcdir)/../profile \
|
|
|
|
-I$(topsrcdir)/config \
|
|
|
|
$(NULL)
|
2005-07-21 17:33:43 +04:00
|
|
|
|
2010-04-29 00:33:14 +04:00
|
|
|
CXXFLAGS += $(TK_CFLAGS) $(MOZ_DBUS_CFLAGS) $(MOZ_DBUS_GLIB_CFLAGS)
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2008-09-27 04:17:28 +04:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
CXXFLAGS += $(MOZ_PANGO_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2009-02-02 16:53:24 +03:00
|
|
|
DEFINES += \
|
|
|
|
-DOS_TARGET=\"$(OS_TARGET)\" \
|
|
|
|
-DMOZ_WIDGET_TOOLKIT=\"$(MOZ_WIDGET_TOOLKIT)\"
|
|
|
|
|
2005-06-08 02:10:56 +04:00
|
|
|
ifdef TARGET_XPCOM_ABI
|
2005-06-10 22:23:28 +04:00
|
|
|
DEFINES += \
|
2011-03-08 06:58:46 +03:00
|
|
|
-DTARGET_XPCOM_ABI=\"$(TARGET_XPCOM_ABI)\" \
|
|
|
|
-DTARGET_OS_ABI=\"$(OS_TARGET)_$(TARGET_XPCOM_ABI)\" \
|
|
|
|
$(NULL)
|
2005-06-08 02:10:56 +04:00
|
|
|
endif
|
|
|
|
|
2005-09-29 23:57:21 +04:00
|
|
|
DEFINES += -DTOOLKIT_EM_VERSION=\"$(shell $(PERL) $(topsrcdir)/config/milestone.pl --topsrcdir=$(topsrcdir))\"
|
2005-07-15 00:29:06 +04:00
|
|
|
|
2006-10-29 19:12:48 +03:00
|
|
|
ifdef WRAP_SYSTEM_INCLUDES
|
2011-03-08 06:58:46 +03:00
|
|
|
DEFINES += -DWRAP_SYSTEM_INCLUDES
|
2006-10-29 19:12:48 +03:00
|
|
|
endif
|
|
|
|
|
2008-01-15 18:13:59 +03:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
ifneq (,$(findstring lib64,$(libdir)))
|
2011-03-08 06:58:46 +03:00
|
|
|
DEFINES += -DHAVE_USR_LIB64_DIR
|
2008-01-15 18:13:59 +03:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-01-06 19:59:44 +03:00
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template="{node|short}\n" 2>/dev/null))
|
2009-02-16 16:32:39 +03:00
|
|
|
# strip a trailing slash from the repo URL because it's not always present,
|
|
|
|
# and we want to construct a working URL in buildconfig.html
|
|
|
|
# make+shell+sed = awful
|
|
|
|
_dollar=$$
|
|
|
|
SOURCE_REPO := $(shell cd $(topsrcdir) && hg showconfig paths.default 2>/dev/null | head -n1 | sed -e "s/^ssh:/http:/" -e "s/\/$(_dollar)//" )
|
|
|
|
|
2009-12-20 17:25:48 +03:00
|
|
|
ifdef MOZ_SOURCE_STAMP
|
|
|
|
INIARGS = --sourcestamp=$(MOZ_SOURCE_STAMP)
|
2009-02-16 16:32:39 +03:00
|
|
|
# extra sanity check for old versions of hg
|
|
|
|
# that don't support showconfig
|
|
|
|
ifeq (http,$(patsubst http%,http,$(SOURCE_REPO)))
|
|
|
|
INIARGS += --sourcerepo=$(SOURCE_REPO)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-05-04 11:56:04 +04:00
|
|
|
# Solaris /usr/bin/diff doesn't have -n option
|
|
|
|
GRE_MILESTONE := $(shell tail -n 1 $(topsrcdir)/config/milestone.txt 2>/dev/null || tail -1 $(topsrcdir)/config/milestone.txt)
|
2010-04-07 23:44:38 +04:00
|
|
|
GRE_BUILDID := $(shell cat $(DEPTH)/config/buildid)
|
|
|
|
|
|
|
|
DEFINES += -DGRE_MILESTONE=$(GRE_MILESTONE) -DGRE_BUILDID=$(GRE_BUILDID)
|
|
|
|
|
2011-10-11 04:40:17 +04:00
|
|
|
ifdef MOZILLA_OFFICIAL
|
|
|
|
DEFINES += -DMOZILLA_OFFICIAL
|
|
|
|
endif
|
|
|
|
|
|
|
|
DEFINES += -DAPP_VERSION=$(MOZ_APP_VERSION)
|
|
|
|
|
2011-10-25 00:07:33 +04:00
|
|
|
DEFINES += -DAPP_ID=$(MOZ_APP_ID)
|
|
|
|
|
2010-04-07 23:44:38 +04:00
|
|
|
$(srcdir)/nsAppRunner.cpp: $(DEPTH)/config/buildid $(topsrcdir)/config/milestone.txt
|
|
|
|
|
2007-07-02 22:20:24 +04:00
|
|
|
platform.ini: FORCE
|
2009-02-16 16:32:39 +03:00
|
|
|
$(PYTHON) $(srcdir)/make-platformini.py --buildid=$(shell cat $(DEPTH)/config/buildid) $(INIARGS) $(topsrcdir)/config/milestone.txt > $@
|
2007-07-02 22:20:24 +04:00
|
|
|
|
2008-02-09 13:37:42 +03:00
|
|
|
GARBAGE += platform.ini
|
|
|
|
|
2007-07-02 22:20:24 +04:00
|
|
|
libs:: platform.ini
|
|
|
|
$(INSTALL) $^ $(DIST)/bin
|
|
|
|
|
|
|
|
install::
|
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)
|