1998-10-28 06:53:57 +03:00
|
|
|
#
|
2004-04-18 18:30:37 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1998-10-28 06:53:57 +03:00
|
|
|
#
|
2004-04-18 18:30:37 +04:00
|
|
|
# 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.
|
1998-10-28 06:53:57 +03:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-18 18:30:37 +04:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 06:40:37 +03:00
|
|
|
#
|
2004-04-18 18:30:37 +04:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either of 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.
|
1999-08-04 01:40:56 +04:00
|
|
|
#
|
2004-04-18 18:30:37 +04:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1998-10-28 06:53:57 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
DEPTH = ../..
|
1998-10-28 06:53:57 +03:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2005-03-26 02:46:25 +03:00
|
|
|
# Solaris and Tru64 UNIX sh blows
|
2004-04-09 08:45:29 +04:00
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
SHELL := ksh
|
|
|
|
endif
|
2005-03-26 02:46:25 +03:00
|
|
|
ifeq ($(OS_ARCH),OSF1)
|
|
|
|
SHELL := ksh
|
|
|
|
endif
|
2004-04-09 08:45:29 +04:00
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
BUILD_DATE = gbdate.h
|
2004-04-08 13:12:49 +04:00
|
|
|
BUILD_DATE_TS = gbdate.tstamp
|
2003-01-14 10:08:59 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
MODULE = layout
|
2000-07-02 22:44:42 +04:00
|
|
|
LIBRARY_NAME = gklayout
|
2001-04-28 23:48:12 +04:00
|
|
|
EXPORT_LIBRARY = 1
|
1999-08-04 01:40:56 +04:00
|
|
|
IS_COMPONENT = 1
|
2001-06-21 00:21:49 +04:00
|
|
|
MODULE_NAME = nsLayoutModule
|
2002-12-28 04:15:07 +03:00
|
|
|
GRE_MODULE = 1
|
2004-12-15 07:07:01 +03:00
|
|
|
LIBXUL_LIBRARY = 1
|
2002-12-28 04:15:07 +03:00
|
|
|
|
2004-01-07 16:37:00 +03:00
|
|
|
PACKAGE_FILE = layout.pkg
|
|
|
|
PACKAGE_VARS += MOZ_XUL
|
|
|
|
|
2004-12-09 22:28:35 +03:00
|
|
|
ifndef MOZ_ENABLE_LIBXUL
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
EXTRA_DSO_LIBS = gkgfx
|
2004-12-09 22:28:35 +03:00
|
|
|
endif
|
2001-12-18 12:14:29 +03:00
|
|
|
ifdef MOZ_PERF_METRICS
|
|
|
|
EXTRA_DSO_LIBS += mozutil_s
|
|
|
|
endif
|
2005-11-08 23:06:16 +03:00
|
|
|
ifdef MOZ_ENABLE_CAIRO_GFX
|
|
|
|
EXTRA_DSO_LIBS += thebes
|
|
|
|
endif
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2001-09-18 17:41:47 +04:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
content \
|
|
|
|
gfx \
|
|
|
|
widget \
|
2003-03-15 04:04:32 +03:00
|
|
|
view \
|
2001-09-18 17:41:47 +04:00
|
|
|
locale \
|
2001-09-29 21:50:15 +04:00
|
|
|
necko \
|
2002-11-19 19:00:01 +03:00
|
|
|
dom \
|
2006-05-19 09:57:36 +04:00
|
|
|
storage \
|
2002-11-19 19:00:01 +03:00
|
|
|
editor \
|
2003-01-14 10:08:59 +03:00
|
|
|
webshell \
|
|
|
|
docshell \
|
|
|
|
htmlparser \
|
|
|
|
js \
|
|
|
|
xpconnect \
|
|
|
|
uriloader \
|
|
|
|
caps \
|
|
|
|
rdf \
|
|
|
|
xuldoc \
|
|
|
|
imglib2 \
|
|
|
|
pref \
|
|
|
|
unicharutil \
|
|
|
|
xul \
|
|
|
|
xultmpl \
|
|
|
|
lwbrk \
|
2003-03-22 05:22:03 +03:00
|
|
|
plugin \
|
2004-02-24 06:22:35 +03:00
|
|
|
commandhandler \
|
|
|
|
webbrwsr \
|
|
|
|
uconv \
|
2005-12-05 21:07:33 +03:00
|
|
|
txtsvc \
|
2006-05-19 22:59:39 +04:00
|
|
|
inspector \
|
2001-09-18 17:41:47 +04:00
|
|
|
$(NULL)
|
1998-10-28 06:53:57 +03:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
CPPSRCS = \
|
1999-10-01 01:14:14 +04:00
|
|
|
nsLayoutModule.cpp \
|
2003-01-14 10:08:59 +03:00
|
|
|
nsContentHTTPStartup.cpp \
|
|
|
|
nsContentDLF.cpp \
|
2006-05-19 13:31:57 +04:00
|
|
|
nsLayoutStatics.cpp \
|
1999-08-04 01:40:56 +04:00
|
|
|
$(NULL)
|
1999-02-02 20:40:37 +03:00
|
|
|
|
2005-02-21 21:11:18 +03:00
|
|
|
EXPORTS = \
|
|
|
|
nsLayoutCID.h \
|
|
|
|
nsContentDLF.h \
|
2006-05-19 13:31:57 +04:00
|
|
|
nsLayoutStatics.h \
|
2005-02-21 21:11:18 +03:00
|
|
|
$(NULL)
|
1999-08-04 01:40:56 +04:00
|
|
|
|
|
|
|
SHARED_LIBRARY_LIBS = \
|
2006-03-02 18:22:10 +03:00
|
|
|
../base/$(LIB_PREFIX)gkbase_s.$(LIB_SUFFIX) \
|
|
|
|
../generic/$(LIB_PREFIX)gkgeneric_s.$(LIB_SUFFIX) \
|
|
|
|
../forms/$(LIB_PREFIX)gkforms_s.$(LIB_SUFFIX) \
|
|
|
|
../style/$(LIB_PREFIX)gkstyle_s.$(LIB_SUFFIX) \
|
|
|
|
../tables/$(LIB_PREFIX)gktable_s.$(LIB_SUFFIX) \
|
|
|
|
../xul/base/src/$(LIB_PREFIX)gkxulbase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/base/src/$(LIB_PREFIX)gkconbase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/canvas/src/$(LIB_PREFIX)gkconcvs_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/events/src/$(LIB_PREFIX)gkconevents_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/html/content/src/$(LIB_PREFIX)gkconhtmlcon_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/html/document/src/$(LIB_PREFIX)gkconhtmldoc_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xml/content/src/$(LIB_PREFIX)gkconxmlcon_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xml/document/src/$(LIB_PREFIX)gkconxmldoc_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xslt/src/base/$(LIB_PREFIX)txbase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xslt/src/xml/$(LIB_PREFIX)txxml_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xslt/src/xpath/$(LIB_PREFIX)txxpath_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xslt/src/xslt/$(LIB_PREFIX)txxslt_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xbl/src/$(LIB_PREFIX)gkconxbl_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xul/document/src/$(LIB_PREFIX)gkconxuldoc_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/view/src/$(LIB_PREFIX)gkview_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/dom/src/base/$(LIB_PREFIX)jsdombase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/dom/src/events/$(LIB_PREFIX)jsdomevents_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/dom/src/jsurl/$(LIB_PREFIX)jsurl_s.$(LIB_SUFFIX) \
|
2006-05-19 09:57:36 +04:00
|
|
|
$(DEPTH)/dom/src/storage/$(LIB_PREFIX)jsdomstorage_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(NULL)
|
2003-03-15 04:04:32 +03:00
|
|
|
|
2005-09-16 06:25:37 +04:00
|
|
|
ifdef NS_PRINTING
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-03-02 18:22:10 +03:00
|
|
|
../printing/$(LIB_PREFIX)gkprinting_s.$(LIB_SUFFIX) \
|
2005-09-16 06:25:37 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
ifdef MOZ_XUL
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-03-02 18:22:10 +03:00
|
|
|
../xul/base/src/tree/src/$(LIB_PREFIX)gkxultree_s.$(LIB_SUFFIX) \
|
|
|
|
../xul/base/src/grid/$(LIB_PREFIX)gkxulgrid_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xul/content/src/$(LIB_PREFIX)gkconxulcon_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/xul/templates/src/$(LIB_PREFIX)gkconxultmpl_s.$(LIB_SUFFIX) \
|
1999-08-04 01:40:56 +04:00
|
|
|
$(NULL)
|
2003-03-15 04:04:32 +03:00
|
|
|
endif
|
1999-02-02 20:40:37 +03:00
|
|
|
|
2006-05-19 22:59:39 +04:00
|
|
|
ifndef MOZ_NO_INSPECTOR_APIS
|
|
|
|
SHARED_LIBRARY_LIBS += ../inspector/src/$(LIB_PREFIX)inspector_s.$(LIB_SUFFIX)
|
|
|
|
else
|
|
|
|
DEFINES += -DMOZ_NO_INSPECTOR_APIS
|
|
|
|
endif
|
|
|
|
|
1999-10-12 08:47:55 +04:00
|
|
|
ifdef MOZ_MATHML
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-03-02 18:22:10 +03:00
|
|
|
../mathml/content/src/$(LIB_PREFIX)gkmathmlcon_s.$(LIB_SUFFIX) \
|
|
|
|
../mathml/base/src/$(LIB_PREFIX)gkmathmlbase_s.$(LIB_SUFFIX) \
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
$(NULL)
|
1999-10-12 08:47:55 +04:00
|
|
|
endif
|
|
|
|
|
2004-10-08 00:59:53 +04:00
|
|
|
ifdef MOZ_XTF
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(DEPTH)/content/xtf/src/$(LIB_PREFIX)gkcontentxtf_s.$(LIB_SUFFIX) \
|
|
|
|
../xtf/src/$(LIB_PREFIX)gkxtfbase_s.$(LIB_SUFFIX) \
|
2004-10-08 00:59:53 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2000-04-02 02:31:45 +04:00
|
|
|
ifdef MOZ_SVG
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2006-03-02 18:22:10 +03:00
|
|
|
../svg/base/src/$(LIB_PREFIX)gksvgbase_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/svg/document/src/$(LIB_PREFIX)gkconsvgdoc_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/svg/content/src/$(LIB_PREFIX)gkcontentsvg_s.$(LIB_SUFFIX) \
|
|
|
|
../svg/renderer/src/cairo/$(LIB_PREFIX)gksvgrenderercairo_s.$(LIB_SUFFIX) \
|
2005-04-22 23:03:41 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2000-04-02 02:31:45 +04:00
|
|
|
|
1999-08-04 01:40:56 +04:00
|
|
|
EXTRA_DSO_LDOPTS = \
|
2001-12-18 12:14:29 +03:00
|
|
|
$(LIBS_DIR) \
|
2000-04-18 14:27:21 +04:00
|
|
|
$(EXTRA_DSO_LIBS) \
|
2001-10-23 00:44:02 +04:00
|
|
|
$(MOZ_UNICHARUTIL_LIBS) \
|
2003-01-03 11:58:59 +03:00
|
|
|
$(MOZ_COMPONENT_LIBS) \
|
2000-04-18 14:27:21 +04:00
|
|
|
$(MOZ_JS_LIBS) \
|
1999-08-04 01:40:56 +04:00
|
|
|
$(NULL)
|
1998-10-28 06:53:57 +03:00
|
|
|
|
2005-08-18 16:31:30 +04:00
|
|
|
ifdef MOZ_ENABLE_XLIB
|
|
|
|
EXTRA_DSO_LDOPTS += \
|
|
|
|
-lxlibrgb \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2004-03-08 10:28:22 +03:00
|
|
|
ifdef NS_TRACE_MALLOC
|
|
|
|
EXTRA_DSO_LIBS += tracemalloc
|
|
|
|
endif
|
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
ifdef MOZ_ENABLE_GTK2
|
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_GTK2_LIBS) \
|
|
|
|
$(NULL)
|
2006-04-23 01:48:20 +04:00
|
|
|
ifdef MOZ_ENABLE_CAIRO_GFX
|
|
|
|
EXTRA_DSO_LDOPTS += -lXrender \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
endif
|
2001-12-12 10:59:31 +03:00
|
|
|
|
2005-11-08 23:06:16 +03:00
|
|
|
ifndef MOZ_ENABLE_CAIRO_GFX
|
2006-03-21 00:16:45 +03:00
|
|
|
ifdef MOZ_SVG
|
2004-08-14 05:01:16 +04:00
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_CAIRO_LIBS) \
|
2005-11-08 23:06:16 +03:00
|
|
|
$(NULL)
|
|
|
|
endif
|
2004-08-14 05:01:16 +04:00
|
|
|
endif
|
|
|
|
|
2006-03-14 23:46:30 +03:00
|
|
|
ifdef MOZ_ENABLE_CAIRO_GFX
|
|
|
|
ifndef MOZ_TREE_CAIRO
|
|
|
|
# In an in-tree cairo build, cairo is part of libthebes
|
|
|
|
# otherwise, we need to link it separately.
|
|
|
|
EXTRA_DSO_LDOPTS += $(MOZ_CAIRO_LIBS)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2002-11-06 04:24:57 +03:00
|
|
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
EXTRA_DSO_LDOPTS += \
|
|
|
|
$(TK_LIBS) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2006-03-01 12:36:51 +03:00
|
|
|
# Add explicit X11 dependency when building against X11 toolkits
|
|
|
|
ifneq (,$(filter gtk gtk2 qt xlib,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
EXTRA_DSO_LDOPTS += $(XLDFLAGS) $(XLIBS)
|
|
|
|
endif
|
|
|
|
|
1998-10-28 06:53:57 +03:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-02-02 20:40:37 +03:00
|
|
|
|
2004-12-08 22:41:48 +03:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../base \
|
|
|
|
-I$(srcdir)/../generic \
|
|
|
|
-I$(srcdir)/../forms \
|
|
|
|
-I$(srcdir)/../style \
|
2000-11-08 06:22:03 +03:00
|
|
|
-I$(srcdir)/../xul/content/src \
|
|
|
|
-I$(srcdir)/../xul/base/src \
|
2006-05-19 22:59:39 +04:00
|
|
|
-I$(srcdir)/../inspector/src \
|
2005-11-02 22:03:06 +03:00
|
|
|
-I$(topsrcdir)/content/base/src \
|
|
|
|
-I$(topsrcdir)/content/html/content/src \
|
|
|
|
-I$(topsrcdir)/content/html/document/src \
|
|
|
|
-I$(topsrcdir)/content/html/style/src \
|
|
|
|
-I$(topsrcdir)/content/xslt/src/base \
|
|
|
|
-I$(topsrcdir)/content/xslt/src/xml \
|
|
|
|
-I$(topsrcdir)/content/xslt/src/xpath \
|
|
|
|
-I$(topsrcdir)/content/xslt/src/xslt \
|
|
|
|
-I$(topsrcdir)/content/xul/content/src \
|
|
|
|
-I$(topsrcdir)/content/xul/templates/src \
|
|
|
|
-I$(topsrcdir)/content/events/src \
|
|
|
|
-I$(topsrcdir)/content/xbl/src \
|
2003-03-15 04:04:32 +03:00
|
|
|
-I$(topsrcdir)/view/src \
|
2004-02-24 06:22:35 +03:00
|
|
|
-I$(topsrcdir)/dom/src/base \
|
|
|
|
-I$(topsrcdir)/dom/src/jsurl \
|
2006-05-19 09:57:36 +04:00
|
|
|
-I$(topsrcdir)/dom/src/storage \
|
2003-01-14 10:08:59 +03:00
|
|
|
-I. \
|
2000-11-08 06:22:03 +03:00
|
|
|
$(NULL)
|
1999-03-20 22:05:05 +03:00
|
|
|
|
1999-10-02 15:01:41 +04:00
|
|
|
ifdef MOZ_MATHML
|
2004-12-08 22:41:48 +03:00
|
|
|
LOCAL_INCLUDES += -I$(srcdir)/../mathml/content/src
|
1999-10-02 15:01:41 +04:00
|
|
|
endif
|
|
|
|
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
ifdef MOZ_SVG
|
2005-11-02 22:03:06 +03:00
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/content/svg/content/src
|
Landing of SVG_20020806_BRANCH, Bug 182533. Refactoring of SVG backend, new GDI+ and Libart rendering
backends, text support on Windows (GDI+), rudimentary text support on Linux (libart/freetype2), presentation
attributes, lots of bug fixes (see bug 182533 for dependency list).
Not part of default build; code is #ifdef'ed out.
r=sicking, sr=jst for dom and htmlparser changes
r=bsmedberg, sr=tor for config changes
r=dbaron, sr=bzbarsky for content and layout changes
r=tor, sr=bzbarsky for gfx changes
2004-02-07 15:39:26 +03:00
|
|
|
endif
|
|
|
|
|
2003-01-09 09:49:07 +03:00
|
|
|
DEFINES += -D_IMPL_NS_LAYOUT
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2004-04-08 13:12:49 +04:00
|
|
|
GARBAGE += $(BUILD_DATE) $(BUILD_DATE_TS)
|
2003-01-14 10:08:59 +03:00
|
|
|
|
2003-02-12 21:17:34 +03:00
|
|
|
ifeq ($(OS_ARCH),IRIX)
|
|
|
|
ifeq ($(GNU_CXX),1)
|
|
|
|
LDFLAGS += -Wl,-LD_LAYOUT:lgot_buffer=50
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2003-01-14 10:08:59 +03:00
|
|
|
export:: $(BUILD_DATE)
|
|
|
|
|
2004-04-08 13:12:49 +04:00
|
|
|
$(BUILD_DATE_TS): FORCE
|
|
|
|
@for f in $(SHARED_LIBRARY_LIBS); do \
|
|
|
|
if [ $$f -nt $@ ]; then \
|
|
|
|
touch $@; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
|
|
|
|
$(BUILD_DATE):: gbdate.pl $(BUILD_DATE_TS)
|
2003-01-14 10:08:59 +03:00
|
|
|
$(RM) $@
|
|
|
|
$(PERL) $(srcdir)/gbdate.pl > $@
|