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
|
|
|
|
|
2011-09-03 04:55:30 +04:00
|
|
|
# Solaris sh blows
|
2004-04-09 08:45:29 +04:00
|
|
|
ifeq ($(OS_ARCH),SunOS)
|
|
|
|
SHELL := ksh
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
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
|
|
|
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) \
|
|
|
|
../forms/$(LIB_PREFIX)gkforms_s.$(LIB_SUFFIX) \
|
2010-08-21 03:24:41 +04:00
|
|
|
../generic/$(LIB_PREFIX)gkgeneric_s.$(LIB_SUFFIX) \
|
2011-04-03 06:14:00 +04:00
|
|
|
../ipc/$(LIB_PREFIX)gkipc_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
../style/$(LIB_PREFIX)gkstyle_s.$(LIB_SUFFIX) \
|
|
|
|
../tables/$(LIB_PREFIX)gktable_s.$(LIB_SUFFIX) \
|
|
|
|
../xul/base/src/$(LIB_PREFIX)gkxulbase_s.$(LIB_SUFFIX) \
|
2011-06-02 15:11:33 +04:00
|
|
|
../mathml/$(LIB_PREFIX)gkmathml_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(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) \
|
2009-03-11 17:10:19 +03:00
|
|
|
$(DEPTH)/dom/base/$(LIB_PREFIX)jsdombase_s.$(LIB_SUFFIX) \
|
2011-11-02 16:04:39 +04:00
|
|
|
$(DEPTH)/dom/battery/$(LIB_PREFIX)dom_battery_s.$(LIB_SUFFIX) \
|
2012-01-20 07:24:00 +04:00
|
|
|
$(DEPTH)/dom/power/$(LIB_PREFIX)dom_power_s.$(LIB_SUFFIX) \
|
2012-01-16 16:23:28 +04:00
|
|
|
$(DEPTH)/dom/network/src/$(LIB_PREFIX)dom_network_s.$(LIB_SUFFIX) \
|
2011-11-21 01:08:33 +04:00
|
|
|
$(DEPTH)/dom/sms/src/$(LIB_PREFIX)dom_sms_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(DEPTH)/dom/src/events/$(LIB_PREFIX)jsdomevents_s.$(LIB_SUFFIX) \
|
2007-12-28 00:34:03 +03:00
|
|
|
$(DEPTH)/dom/src/json/$(LIB_PREFIX)json_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(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) \
|
2007-05-29 13:45:30 +04:00
|
|
|
$(DEPTH)/dom/src/offline/$(LIB_PREFIX)jsdomoffline_s.$(LIB_SUFFIX) \
|
2009-09-18 10:01:12 +04:00
|
|
|
$(DEPTH)/dom/src/geolocation/$(LIB_PREFIX)jsdomgeolocation_s.$(LIB_SUFFIX) \
|
2010-09-10 09:00:14 +04:00
|
|
|
$(DEPTH)/dom/src/notification/$(LIB_PREFIX)jsdomnotification_s.$(LIB_SUFFIX) \
|
2010-06-25 16:25:31 +04:00
|
|
|
$(DEPTH)/dom/system/$(LIB_PREFIX)domsystem_s.$(LIB_SUFFIX) \
|
2011-12-05 11:58:27 +04:00
|
|
|
$(DEPTH)/dom/telephony/$(LIB_PREFIX)domtelephony_s.$(LIB_SUFFIX) \
|
2011-07-17 23:09:13 +04:00
|
|
|
$(DEPTH)/dom/workers/$(LIB_PREFIX)domworkers_s.$(LIB_SUFFIX) \
|
2010-06-23 23:46:08 +04:00
|
|
|
$(DEPTH)/dom/indexedDB/$(LIB_PREFIX)dom_indexeddb_s.$(LIB_SUFFIX) \
|
2007-02-24 23:07:06 +03:00
|
|
|
$(DEPTH)/editor/libeditor/text/$(LIB_PREFIX)texteditor_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/editor/libeditor/base/$(LIB_PREFIX)editorbase_s.$(LIB_SUFFIX) \
|
2009-06-29 02:44:22 +04:00
|
|
|
$(DEPTH)/parser/html/$(LIB_PREFIX)html5p_s.$(LIB_SUFFIX) \
|
2010-04-11 17:55:24 +04:00
|
|
|
$(DEPTH)/caps/src/$(LIB_PREFIX)caps_s.$(LIB_SUFFIX) \
|
2011-03-25 02:59:00 +03:00
|
|
|
$(DEPTH)/editor/libeditor/html/$(LIB_PREFIX)htmleditor_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/editor/txtsvc/src/$(LIB_PREFIX)txtsvc_s.$(LIB_SUFFIX) \
|
2011-06-02 15:11:33 +04:00
|
|
|
$(DEPTH)/content/mathml/content/src/$(LIB_PREFIX)gkcontentmathml_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(NULL)
|
2003-03-15 04:04:32 +03:00
|
|
|
|
2010-06-25 16:25:31 +04:00
|
|
|
ifneq (,$(filter qt gtk2,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/dom/system/unix/$(LIB_PREFIX)domsystemunix_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/system/unix \
|
|
|
|
$(NULL)
|
|
|
|
else ifneq (,$(filter windows,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/dom/system/windows/$(LIB_PREFIX)domsystemwindows_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/system/windows \
|
|
|
|
$(NULL)
|
|
|
|
else ifneq (,$(filter cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/dom/system/cocoa/$(LIB_PREFIX)domsystemcocoa_s.$(LIB_SUFFIX) \
|
2010-08-19 08:53:55 +04:00
|
|
|
$(NULL)
|
2010-06-25 16:25:31 +04:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/system/cocoa \
|
|
|
|
$(NULL)
|
|
|
|
else ifneq (,$(filter android,$(MOZ_WIDGET_TOOLKIT)))
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/dom/system/android/$(LIB_PREFIX)domsystemandroid_s.$(LIB_SUFFIX) \
|
2011-09-17 01:34:31 +04:00
|
|
|
$(DEPTH)/dom/plugins/base/android/$(LIB_PREFIX)gkpluginandroid_s.$(LIB_SUFFIX) \
|
2010-08-19 08:53:55 +04:00
|
|
|
$(NULL)
|
2010-06-25 16:25:31 +04:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/dom/system/android \
|
2011-12-05 11:58:27 +04:00
|
|
|
-I$(topsrcdir)/dom/system \
|
2010-06-25 16:25:31 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2011-12-06 10:10:51 +04:00
|
|
|
ifdef MOZ_B2G_RIL #{
|
|
|
|
SHARED_LIBRARY_LIBS += $(DEPTH)/dom/system/b2g/$(LIB_PREFIX)domsystemb2g_s.$(LIB_SUFFIX)
|
|
|
|
endif #}
|
|
|
|
|
2008-07-09 12:22:20 +04:00
|
|
|
ifdef MOZ_MEDIA
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2009-06-26 08:23:15 +04:00
|
|
|
$(DEPTH)/content/media/$(LIB_PREFIX)gkconmedia_s.$(LIB_SUFFIX) \
|
2008-07-09 12:22:20 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2008-07-30 10:50:14 +04:00
|
|
|
ifdef MOZ_OGG
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
2009-06-26 08:23:15 +04:00
|
|
|
$(DEPTH)/content/media/ogg/$(LIB_PREFIX)gkconogg_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2010-10-07 00:17:54 +04:00
|
|
|
ifdef MOZ_RAW
|
2010-07-26 23:35:16 +04:00
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/content/media/raw/$(LIB_PREFIX)gkconraw_s.$(LIB_SUFFIX)\
|
|
|
|
$(NULL)
|
2010-10-07 00:17:54 +04:00
|
|
|
endif
|
2010-07-26 23:35:16 +04:00
|
|
|
|
2010-06-09 03:31:27 +04:00
|
|
|
ifdef MOZ_WEBM
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/content/media/webm/$(LIB_PREFIX)gkconwebm_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2009-06-26 08:23:15 +04:00
|
|
|
ifdef MOZ_WAVE
|
|
|
|
SHARED_LIBRARY_LIBS += \
|
|
|
|
$(DEPTH)/content/media/wave/$(LIB_PREFIX)gkconwave_s.$(LIB_SUFFIX) \
|
2008-07-30 10:50:14 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
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
|
|
|
|
2007-07-18 09:35:23 +04:00
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(srcdir)/../inspector/src \
|
|
|
|
$(NULL)
|
2006-05-19 22:59:39 +04:00
|
|
|
SHARED_LIBRARY_LIBS += ../inspector/src/$(LIB_PREFIX)inspector_s.$(LIB_SUFFIX)
|
|
|
|
|
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) \
|
2004-10-08 00:59:53 +04:00
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2000-04-02 02:31:45 +04:00
|
|
|
SHARED_LIBRARY_LIBS += \
|
2008-01-09 12:38:28 +03:00
|
|
|
../svg/base/src/$(LIB_PREFIX)gksvgbase_s.$(LIB_SUFFIX) \
|
2006-03-02 18:22:10 +03:00
|
|
|
$(DEPTH)/content/svg/document/src/$(LIB_PREFIX)gkconsvgdoc_s.$(LIB_SUFFIX) \
|
|
|
|
$(DEPTH)/content/svg/content/src/$(LIB_PREFIX)gkcontentsvg_s.$(LIB_SUFFIX) \
|
2009-01-15 07:38:07 +03:00
|
|
|
$(DEPTH)/content/smil/$(LIB_PREFIX)gkconsmil_s.$(LIB_SUFFIX) \
|
|
|
|
$(NULL)
|
|
|
|
|
2007-02-24 23:07:06 +03:00
|
|
|
ifdef ENABLE_EDITOR_API_LOG
|
|
|
|
DEFINES += -DENABLE_EDITOR_API_LOG
|
|
|
|
endif
|
|
|
|
|
2010-04-11 17:55:24 +04:00
|
|
|
SHARED_LIBRARY_LIBS += \
|
2011-10-14 21:52:47 +04:00
|
|
|
$(DEPTH)/js/xpconnect/src/$(LIB_PREFIX)xpconnect_s.$(LIB_SUFFIX)
|
2010-04-11 17:55:24 +04:00
|
|
|
|
2010-05-13 21:44:51 +04:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
|
|
|
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 \
|
2007-02-13 19:59:51 +03:00
|
|
|
-I$(srcdir)/../tables \
|
2004-12-08 22:41:48 +03:00
|
|
|
-I$(srcdir)/../style \
|
2000-11-08 06:22:03 +03:00
|
|
|
-I$(srcdir)/../xul/base/src \
|
2011-06-02 15:11:33 +04:00
|
|
|
-I$(srcdir)/../mathml \
|
2005-11-02 22:03:06 +03:00
|
|
|
-I$(topsrcdir)/content/base/src \
|
2011-03-24 06:13:56 +03:00
|
|
|
-I$(topsrcdir)/content/canvas/src \
|
2005-11-02 22:03:06 +03:00
|
|
|
-I$(topsrcdir)/content/html/content/src \
|
|
|
|
-I$(topsrcdir)/content/html/document/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 \
|
2007-03-12 08:53:33 +03:00
|
|
|
-I$(topsrcdir)/content/xul/document/src \
|
2005-11-02 22:03:06 +03:00
|
|
|
-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 \
|
2009-03-11 17:10:19 +03:00
|
|
|
-I$(topsrcdir)/dom/base \
|
2007-12-28 00:34:03 +03:00
|
|
|
-I$(topsrcdir)/dom/src/json \
|
2004-02-24 06:22:35 +03:00
|
|
|
-I$(topsrcdir)/dom/src/jsurl \
|
2006-05-19 09:57:36 +04:00
|
|
|
-I$(topsrcdir)/dom/src/storage \
|
2007-05-29 13:45:30 +04:00
|
|
|
-I$(topsrcdir)/dom/src/offline \
|
2008-07-16 03:37:48 +04:00
|
|
|
-I$(topsrcdir)/dom/src/geolocation \
|
2011-12-05 11:58:27 +04:00
|
|
|
-I$(topsrcdir)/dom/telephony \
|
2003-01-14 10:08:59 +03:00
|
|
|
-I. \
|
2007-02-24 23:07:06 +03:00
|
|
|
-I$(topsrcdir)/editor/libeditor/base \
|
|
|
|
-I$(topsrcdir)/editor/libeditor/text \
|
|
|
|
-I$(topsrcdir)/editor/libeditor/html \
|
|
|
|
-I$(topsrcdir)/editor/txtsvc/src \
|
|
|
|
-I$(topsrcdir)/editor/composer/src \
|
2011-10-14 21:52:47 +04:00
|
|
|
-I$(topsrcdir)/js/xpconnect/src \
|
|
|
|
-I$(topsrcdir)/js/xpconnect/loader \
|
2010-04-11 17:55:24 +04:00
|
|
|
-I$(topsrcdir)/caps/include \
|
2011-05-30 11:34:50 +04:00
|
|
|
-I$(topsrcdir)/netwerk/base/src \
|
|
|
|
-I$(topsrcdir)/content/svg/content/src \
|
2000-11-08 06:22:03 +03:00
|
|
|
$(NULL)
|
1999-03-20 22:05:05 +03:00
|
|
|
|
2011-12-06 10:10:51 +04:00
|
|
|
ifdef MOZ_B2G_RIL #{
|
|
|
|
LOCAL_INCLUDES += -I$(topsrcdir)/dom/system/b2g
|
|
|
|
endif #}
|
|
|
|
|
|
|
|
|
2003-01-09 09:49:07 +03:00
|
|
|
DEFINES += -D_IMPL_NS_LAYOUT
|