2007-03-22 10:30:00 -07: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):
|
|
|
|
# Brian Ryner <bryner@brianryner.com>
|
|
|
|
# Benjamin Smedberg <benjamin@smedbergs.us>
|
|
|
|
#
|
|
|
|
# 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 *****
|
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = xulapp
|
|
|
|
LIBRARY_NAME = xulapp_s
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
|
|
|
|
XPIDLSRCS = \
|
|
|
|
nsINativeAppSupport.idl \
|
|
|
|
$(NULL)
|
|
|
|
|
2008-03-05 11:23:44 -08:00
|
|
|
ifneq (,$(filter WINCE WINNT,$(OS_ARCH)))
|
2007-03-22 10:30:00 -07:00
|
|
|
XPIDLSRCS += nsIWinAppHelper.idl
|
|
|
|
endif
|
|
|
|
|
|
|
|
CPPSRCS = \
|
|
|
|
nsAppRunner.cpp \
|
|
|
|
nsConsoleWriter.cpp \
|
|
|
|
nsXREDirProvider.cpp \
|
|
|
|
nsNativeAppSupportBase.cpp \
|
|
|
|
nsAppData.cpp \
|
2009-12-17 13:56:12 -08:00
|
|
|
nsSigHandlers.cpp \
|
2007-03-22 10:30:00 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2009-06-16 11:59:35 -07:00
|
|
|
ifdef MOZ_SPLASHSCREEN
|
|
|
|
ifeq ($(OS_ARCH),WINCE)
|
|
|
|
CPPSRCS += nsSplashScreenWin.cpp
|
|
|
|
else
|
|
|
|
CPPSRCS += nsSplashScreenDummy.cpp
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-06-03 18:16:20 -07:00
|
|
|
DEFINES += -DIMPL_XREAPI -DMOZ_APP_NAME='"$(MOZ_APP_NAME)"'
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
ifndef BUILD_STATIC_LIBS
|
|
|
|
CPPSRCS += nsEmbedFunctions.cpp
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef MOZ_UPDATER
|
|
|
|
CPPSRCS += nsUpdateDriver.cpp
|
|
|
|
DEFINES += -DMOZ_UPDATER
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
|
|
CPPSRCS += nsNativeAppSupportWin.cpp
|
2008-01-07 08:38:12 -08:00
|
|
|
DEFINES += -DWIN32_LEAN_AND_MEAN -DUNICODE -D_UNICODE
|
2010-03-22 20:06:35 -07:00
|
|
|
EXPORTS = nsWindowsDllInterceptor.h
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
2007-08-16 07:53:10 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
|
|
|
CMMSRCS = nsNativeAppSupportCocoa.mm
|
2007-03-22 10:30:00 -07:00
|
|
|
else
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
|
|
|
CPPSRCS += nsNativeAppSupportOS2.cpp
|
|
|
|
else
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),beos)
|
|
|
|
CPPSRCS += nsNativeAppSupportBeOS.cpp
|
|
|
|
else
|
2007-07-16 19:32:14 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
CPPSRCS += nsNativeAppSupportUnix.cpp
|
|
|
|
else
|
2010-03-14 19:25:03 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),qt)
|
|
|
|
CPPSRCS += nsNativeAppSupportQt.cpp
|
2010-03-30 04:34:37 -07:00
|
|
|
CPPSRCS += nsQAppInstance.cpp
|
|
|
|
EXPORTS += nsQAppInstance.h
|
2010-08-03 10:44:46 -07:00
|
|
|
ifdef MOZ_ENABLE_MEEGOTOUCH
|
|
|
|
MOCSRCS += moc_MozMeegoAppService.cpp
|
|
|
|
CPPSRCS += moc_MozMeegoAppService.cpp
|
|
|
|
endif
|
2010-03-14 19:25:03 -07:00
|
|
|
else
|
2007-03-22 10:30:00 -07:00
|
|
|
CPPSRCS += nsNativeAppSupportDefault.cpp
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2010-03-14 19:25:03 -07:00
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
2007-07-16 19:32:14 -07:00
|
|
|
endif
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-08-27 21:41:38 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
|
|
|
|
CMMSRCS += MacLaunchHelper.mm
|
2007-08-16 07:53:10 -07:00
|
|
|
CMMSRCS += MacApplicationDelegate.mm
|
2010-04-21 01:29:38 -07:00
|
|
|
CMMSRCS += MacAutoreleasePool.mm
|
2010-06-08 15:26:12 -07:00
|
|
|
CPPSRCS += nsCommandLineServiceMac.cpp
|
|
|
|
OS_CXXFLAGS += -fexceptions
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2010-02-24 14:25:16 -08:00
|
|
|
ifdef MOZ_X11
|
|
|
|
CPPSRCS += nsX11ErrorHandler.cpp
|
|
|
|
endif
|
|
|
|
|
2010-06-03 18:16:20 -07:00
|
|
|
ifeq ($(OS_TARGET),Android)
|
|
|
|
CPPSRCS += nsAndroidStartup.cpp
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
SHARED_LIBRARY_LIBS += ../profile/src/$(LIB_PREFIX)profile_s.$(LIB_SUFFIX)
|
|
|
|
|
|
|
|
ifdef MOZ_ENABLE_XREMOTE
|
|
|
|
SHARED_LIBRARY_LIBS += $(DEPTH)/widget/src/xremoteclient/$(LIB_PREFIX)xremote_client_s.$(LIB_SUFFIX)
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/widget/src/xremoteclient
|
|
|
|
endif
|
|
|
|
|
2007-08-08 08:19:57 -07:00
|
|
|
ifdef MOZ_CRASHREPORTER
|
|
|
|
SHARED_LIBRARY_LIBS += $(DEPTH)/toolkit/crashreporter/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX)
|
2007-03-22 10:30:00 -07:00
|
|
|
ifeq ($(OS_ARCH),WINNT)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2007-08-08 08:19:57 -07:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/windows/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
2008-11-25 09:03:26 -08:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
2007-08-08 08:19:57 -07:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/windows/$(LIB_PREFIX)breakpad_windows_common_s.$(LIB_SUFFIX)
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
2007-04-25 07:26:42 -07:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Darwin)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2007-08-08 08:19:57 -07:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/$(LIB_PREFIX)minidump_file_writer_s.$(LIB_SUFFIX) \
|
2010-08-16 12:05:09 -07:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/mac/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
2007-08-08 08:19:57 -07:00
|
|
|
$(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 07:26:42 -07:00
|
|
|
endif
|
2007-05-22 13:20:55 -07:00
|
|
|
|
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2010-01-12 13:14:37 -08:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/crash_generation/$(LIB_PREFIX)crash_generation_s.$(LIB_SUFFIX) \
|
2007-08-08 08:19:57 -07:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
2009-12-14 03:55:31 -08:00
|
|
|
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/minidump_writer/$(LIB_PREFIX)minidump_writer_s.$(LIB_SUFFIX) \
|
2007-08-08 08:19:57 -07: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-22 13:20:55 -07:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2008-03-19 18:13:36 -07: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
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
2008-10-10 16:17:58 -07:00
|
|
|
ifdef ENABLE_TESTS
|
|
|
|
DIRS += test
|
|
|
|
endif
|
|
|
|
|
2009-06-30 12:21:25 -07:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
2007-03-22 10:30:00 -07:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
2010-01-12 13:14:38 -08:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/ipc \
|
|
|
|
-I$(topsrcdir)/toolkit/crashreporter \
|
|
|
|
$(NULL)
|
2009-06-30 13:39:22 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
export::
|
2009-12-14 03:55:40 -08:00
|
|
|
@$(PYTHON) $(MOZILLA_DIR)/config/buildlist.py $(FINAL_LINK_COMP_NAMES) Apprunner
|
2007-03-22 10:30:00 -07:00
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(srcdir) \
|
|
|
|
-I$(srcdir)/../profile/src \
|
|
|
|
-I$(topsrcdir)/config \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-04-28 13:33:14 -07:00
|
|
|
CXXFLAGS += $(TK_CFLAGS) $(MOZ_DBUS_CFLAGS) $(MOZ_DBUS_GLIB_CFLAGS)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-09-26 17:17:28 -07:00
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),gtk2)
|
|
|
|
CXXFLAGS += $(MOZ_PANGO_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef BUILD_STATIC_LIBS
|
|
|
|
DEFINES += -D_BUILD_STATIC_BIN
|
|
|
|
endif
|
|
|
|
|
2009-02-02 05:53:24 -08:00
|
|
|
DEFINES += \
|
|
|
|
-DOS_TARGET=\"$(OS_TARGET)\" \
|
|
|
|
-DMOZ_WIDGET_TOOLKIT=\"$(MOZ_WIDGET_TOOLKIT)\"
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
ifdef TARGET_XPCOM_ABI
|
|
|
|
DEFINES += \
|
|
|
|
-DTARGET_XPCOM_ABI=\"$(TARGET_XPCOM_ABI)\" \
|
|
|
|
-DTARGET_OS_ABI=\"$(OS_TARGET)_$(TARGET_XPCOM_ABI)\" \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
|
|
|
DEFINES += -DTOOLKIT_EM_VERSION=\"$(shell $(PERL) $(topsrcdir)/config/milestone.pl --topsrcdir=$(topsrcdir))\"
|
|
|
|
|
|
|
|
ifdef WRAP_SYSTEM_INCLUDES
|
|
|
|
DEFINES += -DWRAP_SYSTEM_INCLUDES
|
|
|
|
endif
|
|
|
|
|
2008-01-15 07:13:59 -08:00
|
|
|
ifeq ($(OS_ARCH),Linux)
|
|
|
|
ifneq (,$(findstring lib64,$(libdir)))
|
|
|
|
DEFINES += -DHAVE_USR_LIB64_DIR
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-01-06 08:59:44 -08:00
|
|
|
MOZ_SOURCE_STAMP ?= $(firstword $(shell hg -R $(topsrcdir) parent --template="{node|short}\n" 2>/dev/null))
|
2009-02-16 05:32:39 -08: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 06:25:48 -08:00
|
|
|
ifdef MOZ_SOURCE_STAMP
|
|
|
|
INIARGS = --sourcestamp=$(MOZ_SOURCE_STAMP)
|
2009-02-16 05:32:39 -08: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 00:56:04 -07: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 12:44:38 -07:00
|
|
|
GRE_BUILDID := $(shell cat $(DEPTH)/config/buildid)
|
|
|
|
|
|
|
|
DEFINES += -DGRE_MILESTONE=$(GRE_MILESTONE) -DGRE_BUILDID=$(GRE_BUILDID)
|
|
|
|
|
|
|
|
$(srcdir)/nsAppRunner.cpp: $(DEPTH)/config/buildid $(topsrcdir)/config/milestone.txt
|
|
|
|
|
2007-07-02 11:20:24 -07:00
|
|
|
platform.ini: FORCE
|
2009-02-16 05:32:39 -08:00
|
|
|
$(PYTHON) $(srcdir)/make-platformini.py --buildid=$(shell cat $(DEPTH)/config/buildid) $(INIARGS) $(topsrcdir)/config/milestone.txt > $@
|
2007-07-02 11:20:24 -07:00
|
|
|
|
2008-02-09 02:37:42 -08:00
|
|
|
GARBAGE += platform.ini
|
|
|
|
|
2007-07-02 11:20:24 -07:00
|
|
|
libs:: platform.ini
|
|
|
|
$(INSTALL) $^ $(DIST)/bin
|
|
|
|
|
|
|
|
install::
|
|
|
|
$(INSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)
|