зеркало из https://github.com/mozilla/gecko-dev.git
Bug 350211 - Allow arbitrary build-system extension, parts 2 & 3 $(MOZ_BUILD_APP)/build.mk, r=mento
This commit is contained in:
Родитель
64a77c5790
Коммит
4b74339c6f
501
Makefile.in
501
Makefile.in
|
@ -46,480 +46,29 @@ include $(topsrcdir)/build/unix/modules.mk
|
|||
|
||||
include $(topsrcdir)/config/config.mk
|
||||
|
||||
ifneq ($(MOZ_STANDALONE_BUILD),1) # {
|
||||
#
|
||||
# And now for something completely different...
|
||||
# Divide the default build into tiers.
|
||||
# Tiers must be defined on module boundaries
|
||||
#
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
TIERS += nspr
|
||||
endif
|
||||
|
||||
TIERS += 0
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
TIERS += \
|
||||
1 \
|
||||
2 \
|
||||
9 \
|
||||
50 \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
TIERS += \
|
||||
99 \
|
||||
$(NULL)
|
||||
|
||||
#
|
||||
# tier NSPR
|
||||
#
|
||||
|
||||
ifdef GC_LEAK_DETECTOR
|
||||
tier_nspr_staticdirs = gc/boehm
|
||||
endif
|
||||
|
||||
ifndef MOZ_NATIVE_NSPR
|
||||
tier_nspr_staticdirs += nsprpub
|
||||
endif
|
||||
|
||||
#
|
||||
# tier 0 - base build config dirs
|
||||
#
|
||||
tier_0_dirs = \
|
||||
config \
|
||||
build \
|
||||
$(NULL)
|
||||
|
||||
#
|
||||
# tier 1 - 3rd party individual libraries
|
||||
#
|
||||
|
||||
ifndef MOZ_NATIVE_JPEG
|
||||
tier_1_dirs += jpeg
|
||||
endif
|
||||
|
||||
ifndef MOZ_NATIVE_ZLIB
|
||||
tier_1_dirs += modules/zlib
|
||||
endif
|
||||
|
||||
# Installer needs standalone libjar, hence standalone zlib
|
||||
ifdef MOZ_INSTALLER
|
||||
tier_1_dirs += modules/zlib/standalone
|
||||
endif
|
||||
|
||||
ifdef MOZ_UPDATER
|
||||
tier_1_dirs += modules/libbz2
|
||||
tier_1_dirs += modules/libmar
|
||||
endif
|
||||
|
||||
#
|
||||
# tier 2 - base libraries
|
||||
#
|
||||
tier_2_dirs = \
|
||||
js \
|
||||
xpcom \
|
||||
$(NULL)
|
||||
|
||||
ifneq (,$(MOZ_NO_XPCOM_OBSOLETE)$(MOZ_XPINSTALL))
|
||||
tier_2_dirs += modules/libreg
|
||||
endif
|
||||
|
||||
ifndef MOZ_NO_XPCOM_OBSOLETE
|
||||
tier_2_dirs += xpcom/obsolete
|
||||
endif
|
||||
|
||||
ifdef NS_TRACE_MALLOC
|
||||
tier_2_dirs += tools/trace-malloc/lib
|
||||
endif
|
||||
|
||||
#
|
||||
# tier 9 - core components (necko,gecko)
|
||||
#
|
||||
|
||||
tier_9_dirs += \
|
||||
js/src/xpconnect \
|
||||
intl \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_ENABLE_XLIB
|
||||
tier_9_dirs += gfx/src/xlibrgb widget/src/xlibxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_GTK
|
||||
tier_9_dirs += widget/src/gtksuperwin widget/src/gtkxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_GTK2
|
||||
tier_9_dirs += widget/src/gtkxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_IPCD
|
||||
tier_9_dirs += ipc/ipcd
|
||||
endif
|
||||
|
||||
tier_9_dirs += \
|
||||
modules/libutil \
|
||||
netwerk \
|
||||
modules/libjar \
|
||||
db \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_PERMISSIONS
|
||||
tier_9_dirs += \
|
||||
extensions/cookie \
|
||||
extensions/permissions \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef MOZ_STORAGE
|
||||
tier_9_dirs += storage
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL
|
||||
tier_9_dirs += rdf
|
||||
endif
|
||||
|
||||
ifdef MOZ_JSDEBUGGER
|
||||
tier_9_dirs += js/jsd
|
||||
endif
|
||||
|
||||
tier_9_dirs += \
|
||||
uriloader \
|
||||
modules/libpref \
|
||||
modules/libimg \
|
||||
caps \
|
||||
parser/expat \
|
||||
parser/xml \
|
||||
parser/htmlparser \
|
||||
gfx \
|
||||
modules/libpr0n \
|
||||
sun-java \
|
||||
modules/plugin \
|
||||
dom \
|
||||
view \
|
||||
widget \
|
||||
content \
|
||||
layout \
|
||||
docshell \
|
||||
webshell \
|
||||
embedding \
|
||||
editor \
|
||||
xpfe/appshell \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_AUTH_EXTENSION
|
||||
tier_9_dirs += extensions/auth
|
||||
endif
|
||||
|
||||
ifdef MOZ_XMLEXTRAS
|
||||
tier_9_dirs += extensions/xmlextras
|
||||
endif
|
||||
|
||||
ifdef MOZ_WEBSERVICES
|
||||
tier_9_dirs += extensions/webservices
|
||||
endif
|
||||
|
||||
ifdef MOZ_UNIVERSALCHARDET
|
||||
tier_9_dirs += extensions/universalchardet
|
||||
endif
|
||||
|
||||
ifdef MOZ_OJI
|
||||
tier_9_dirs += \
|
||||
js/src/liveconnect \
|
||||
modules/oji \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef ACCESSIBILITY
|
||||
tier_9_dirs += accessible
|
||||
endif
|
||||
|
||||
#
|
||||
# tier 50 - xpfe & toolkit
|
||||
#
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_50_dirs += chrome
|
||||
else
|
||||
ifdef MOZ_XUL
|
||||
tier_50_dirs += rdf/chrome
|
||||
else
|
||||
tier_50_dirs += embedding/minimo/chromelite
|
||||
endif
|
||||
endif
|
||||
|
||||
tier_50_dirs += profile
|
||||
|
||||
# This must preceed xpfe
|
||||
ifdef MOZ_JPROF
|
||||
tier_50_dirs += tools/jprof
|
||||
endif
|
||||
|
||||
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||||
tier_50_dirs += xpfe/bootstrap/appleevents
|
||||
endif
|
||||
|
||||
tier_50_dirs += \
|
||||
xpfe \
|
||||
toolkit/components \
|
||||
$(NULL)
|
||||
|
||||
ifndef MOZ_XUL_APP
|
||||
tier_50_dirs += themes
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_XREMOTE
|
||||
tier_50_dirs += widget/src/xremoteclient
|
||||
endif
|
||||
|
||||
ifdef MOZ_SPELLCHECK
|
||||
tier_50_dirs += extensions/spellcheck
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_50_dirs += toolkit
|
||||
endif
|
||||
|
||||
ifdef MOZ_XPINSTALL
|
||||
tier_50_dirs += xpinstall
|
||||
endif
|
||||
|
||||
ifdef MOZ_PSM
|
||||
tier_50_dirs += security/manager
|
||||
else
|
||||
tier_50_dirs += security/manager/boot/public security/manager/ssl/public
|
||||
endif
|
||||
|
||||
ifdef MOZ_PREF_EXTENSIONS
|
||||
tier_50_dirs += extensions/pref
|
||||
endif
|
||||
|
||||
ifdef MOZ_JAVAXPCOM
|
||||
tier_50_dirs += extensions/java
|
||||
endif
|
||||
|
||||
ifndef BUILD_STATIC_LIBS
|
||||
ifdef MOZ_XUL_APP
|
||||
ifneq (,$(MOZ_ENABLE_GTK)$(MOZ_ENABLE_GTK2))
|
||||
tier_50_dirs += embedding/browser/gtk
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
ifndef BUILD_STATIC_LIBS
|
||||
tier_50_dirs += toolkit/library
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_LIBXUL
|
||||
tier_50_dirs += xpcom/stub
|
||||
endif
|
||||
|
||||
ifdef NS_TRACE_MALLOC
|
||||
tier_50_dirs += tools/trace-malloc
|
||||
endif
|
||||
|
||||
ifdef MOZ_LDAP_XPCOM
|
||||
tier_50_staticdirs += directory/c-sdk
|
||||
tier_50_dirs += directory/xpcom
|
||||
endif
|
||||
|
||||
ifndef MINIMO
|
||||
ifdef MOZ_XUL_APP
|
||||
ifdef MOZ_ENABLE_GTK2
|
||||
tier_50_dirs += toolkit/components/gnome
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_LEAKY
|
||||
tier_50_dirs += tools/leaky
|
||||
endif
|
||||
|
||||
ifdef MOZ_MAPINFO
|
||||
tier_50_dirs += tools/codesighs
|
||||
endif
|
||||
|
||||
#
|
||||
# tier 99 - application binaries
|
||||
#
|
||||
|
||||
ifdef MOZ_MAIL_NEWS
|
||||
tier_99_dirs += mailnews
|
||||
endif
|
||||
|
||||
ifdef MOZ_CALENDAR
|
||||
tier_99_dirs += calendar
|
||||
endif
|
||||
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_99_dirs += extensions
|
||||
endif
|
||||
|
||||
# axcontrol
|
||||
ifndef LIBXUL_SDK
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
ifndef MOZ_NO_ACTIVEX_SUPPORT
|
||||
tier_99_dirs += \
|
||||
embedding/browser/activex/src/control \
|
||||
embedding/browser/activex/src/control_kicker \
|
||||
$(NULL)
|
||||
endif # MOZ_NO_ACTIVEX_SUPPORT
|
||||
endif # WINNT
|
||||
endif # LIBXUL_SDK
|
||||
|
||||
# Java Embedding Plugin
|
||||
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||||
tier_99_dirs += plugin/oji/JEP
|
||||
endif
|
||||
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_99_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
ifdef MOZ_PHOENIX
|
||||
tier_99_dirs += browser xpfe/bootstrap/init.d
|
||||
endif
|
||||
|
||||
ifdef MOZ_XULRUNNER
|
||||
tier_99_dirs += xulrunner
|
||||
endif
|
||||
|
||||
ifdef MOZ_COMPOSER
|
||||
tier_99_dirs += editor/ui
|
||||
endif
|
||||
|
||||
ifdef MOZ_THUNDERBIRD
|
||||
tier_99_dirs += mail xpfe/bootstrap/init.d
|
||||
endif
|
||||
|
||||
ifdef MOZ_STANDALONE_COMPOSER
|
||||
tier_99_dirs += composer
|
||||
endif
|
||||
|
||||
ifdef MOZ_SUNBIRD
|
||||
tier_99_dirs += calendar/sunbird
|
||||
endif
|
||||
|
||||
ifdef MOZ_SUITE
|
||||
tier_99_dirs += \
|
||||
xpfe/components/search \
|
||||
xpfe/components/bookmarks \
|
||||
$(NULL)
|
||||
|
||||
# When Suite becomes a full MOZ_XUL_APP we can remove this ifdef
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_99_dirs += themes
|
||||
endif
|
||||
tier_99_dirs += suite
|
||||
endif
|
||||
|
||||
ifdef MINIMO
|
||||
tier_99_dirs += minimo
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
# XXX SUITE doesn't want to build the toolkit installer yet
|
||||
ifndef MOZ_SUITE
|
||||
ifdef MOZ_INSTALLER
|
||||
tier_99_dirs += toolkit/mozapps/installer
|
||||
endif
|
||||
endif # MOZ_SUITE
|
||||
else
|
||||
ifneq (,$(MOZ_XPFE_COMPONENTS)$(MOZ_XUL))
|
||||
ifndef MINIMO
|
||||
tier_99_dirs += xpfe/bootstrap
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
|
||||
# winembed, mfcembed
|
||||
ifeq ($(OS_ARCH),WINNT)
|
||||
ifneq (,$(ENABLE_TESTS)$(MOZILLA_OFFICIAL))
|
||||
tier_99_dirs += embedding/tests
|
||||
endif
|
||||
endif
|
||||
|
||||
# os2embed
|
||||
ifeq ($(OS_ARCH),OS2)
|
||||
ifdef ENABLE_TESTS
|
||||
tier_99_dirs += embedding/tests
|
||||
endif
|
||||
endif
|
||||
|
||||
endif # LIBXUL_SDK
|
||||
|
||||
ifeq ($(MOZ_BUILD_APP),macbrowser)
|
||||
tier_99_dirs += \
|
||||
embedding/config \
|
||||
camino \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
# test harnesses
|
||||
ifdef ENABLE_TESTS
|
||||
tier_99_dirs += tools/test-harness
|
||||
endif
|
||||
|
||||
# This should be built last, after all IDL files in the tree have been processed
|
||||
ifdef MOZ_JAVAXPCOM
|
||||
tier_99_dirs += extensions/java/xpcom/interfaces
|
||||
endif
|
||||
|
||||
default alldep all::
|
||||
$(RM) -rf $(DIST)/sdk
|
||||
$(RM) -rf $(DIST)/include
|
||||
$(MAKE) -C config export
|
||||
|
||||
else # } { MOZ_STANDALONE_BUILD
|
||||
TIERS += base
|
||||
|
||||
# Standalone build
|
||||
|
||||
ifeq ($(MOZ_BUILD_APP),content/xslt) # {
|
||||
DIRS = \
|
||||
xpcom/typelib \
|
||||
xpcom \
|
||||
parser/expat \
|
||||
content/xslt/src \
|
||||
$(NULL)
|
||||
|
||||
SUBMAKEFILES = xpcom/typelib/Makefile
|
||||
|
||||
endif # } MOZ_BUILD_APP == content/xslt
|
||||
|
||||
ifeq ($(MOZ_BUILD_APP),tools/update-packaging) # {
|
||||
DIRS = \
|
||||
#
|
||||
# tier "base" - basic setup
|
||||
#
|
||||
tier_base_dirs = \
|
||||
config \
|
||||
build \
|
||||
modules/libbz2 \
|
||||
modules/libmar \
|
||||
other-licenses/bsdiff \
|
||||
$(NULL)
|
||||
|
||||
endif # } MOZ_BUILD_APP == tools/update-packaging
|
||||
include $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk
|
||||
|
||||
ifeq ($(MOZ_BUILD_APP),standalone) # {
|
||||
DIRS = $(BUILD_MODULE_DIRS)
|
||||
TIERS += testharness
|
||||
|
||||
# Hack to generate xpidl Makefile
|
||||
ifneq ($(BUILD_MODULES),all)
|
||||
ifneq (,$(findstring xpcom, $(BUILD_MODULE_DIRS)))
|
||||
DIRS := xpcom/typelib $(DIRS)
|
||||
SUBMAKEFILES := xpcom/typelib/Makefile
|
||||
# test harnesses
|
||||
ifdef ENABLE_TESTS
|
||||
tier_testharness_dirs += tools/test-harness
|
||||
endif
|
||||
endif
|
||||
endif # } MOZ_BUILD_APP == standalone
|
||||
|
||||
default:: $(SUBMAKEFILES)
|
||||
$(MAKE) export
|
||||
$(MAKE) libs
|
||||
|
||||
endif # } BUILD_MODULES == all or MOZ_STANDALONE
|
||||
|
||||
GARBAGE_DIRS += dist
|
||||
DIST_GARBAGE = config.cache config.log config.status config-defs.h \
|
||||
|
@ -533,39 +82,19 @@ export::
|
|||
$(RM) -rf $(DIST)/sdk
|
||||
$(MAKE) -C config export
|
||||
$(MAKE) tier_nspr
|
||||
ifneq ($(BUILD_MODULES),all)
|
||||
ifneq (,$(findstring xpcom, $(BUILD_MODULE_DIRS)))
|
||||
$(MAKE) -C xpcom/typelib
|
||||
$(MAKE) export-idl
|
||||
endif
|
||||
endif
|
||||
|
||||
install::
|
||||
ifndef MOZ_NATIVE_NSPR
|
||||
$(MAKE) -C nsprpub install DESTDIR=$(DESTDIR) libdir=$(mozappdir) includedir=$(includedir)/nspr
|
||||
$(RM) -f $(addprefix $(DESTDIR)$(mozappdir)/$(LIB_PREFIX), $(addsuffix .$(LIB_SUFFIX), nspr4 plds4 plc4))
|
||||
$(RM) -f $(addprefix $(DESTDIR)$(bindir)/,nspr-config compile-et.pl prerr.properties)
|
||||
endif
|
||||
ifdef MOZ_LDAP_XPCOM
|
||||
$(MAKE) -C directory/c-sdk real_install DESTDIR=$(DESTDIR) libdir=$(mozappdir) includedir=$(includedir)/ldap
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
# After we build tier 50, go back and build the tools from previous dirs
|
||||
tier_50::
|
||||
$(MAKE) tools_tier_2
|
||||
$(MAKE) tools_tier_9
|
||||
$(MAKE) tools_tier_50
|
||||
|
||||
# Clean up after pseudo-external modules
|
||||
clean clobber realclean clobber_all distclean::
|
||||
ifneq (,$(MOZ_NATIVE_NSPR)$(LIBXUL_SDK))
|
||||
$(MAKE) -C nsprpub $@
|
||||
endif
|
||||
ifdef MOZ_LDAP_XPCOM
|
||||
$(MAKE) -C directory/c-sdk $@
|
||||
endif
|
||||
# After we build tier toolki, go back and build the tools from previous dirs
|
||||
tier_toolkit::
|
||||
$(MAKE) tools_tier_core
|
||||
$(MAKE) tools_tier_gecko
|
||||
$(MAKE) tools_tier_toolkit
|
||||
|
||||
distclean::
|
||||
cat unallmakefiles | $(XARGS) rm -f
|
||||
|
|
|
@ -1678,7 +1678,7 @@ if test -n "$MOZ_SUNBIRD"; then
|
|||
add_makefiles "$MAKEFILES_sunbird"
|
||||
fi
|
||||
|
||||
if test "$MOZ_BUILD_APP" = "macbrowser"; then
|
||||
if test "$MOZ_BUILD_APP" = "camino"; then
|
||||
add_makefiles "$MAKEFILES_macbrowser"
|
||||
fi
|
||||
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
#
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
#
|
||||
|
@ -12,14 +11,16 @@
|
|||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is mozilla.org code.
|
||||
# The Original Code is the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# Netscape Communications Corporation.
|
||||
# Portions created by the Initial Developer are Copyright (C) 1998
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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
|
||||
|
@ -35,32 +36,18 @@
|
|||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
|
||||
DEPTH = ..
|
||||
topsrcdir = @top_srcdir@
|
||||
VPATH = @srcdir@
|
||||
srcdir = @srcdir@
|
||||
ifndef LIBXUL_SDK
|
||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
||||
endif
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
TIERS += app
|
||||
|
||||
#
|
||||
# Normally DIRS should contain all sub-dirs, but this
|
||||
# directory was built to organize code rather than to
|
||||
# reflect build order.
|
||||
#
|
||||
# Thus on the first pass we build the core classes and the
|
||||
# top-level Makefile will control the order of subsequent
|
||||
# directories by going directly into the specific directories
|
||||
#
|
||||
# The proper way to do this would be to introduce different
|
||||
# stages into the java code build cycle, but that has the
|
||||
# potential to introduce too many changes
|
||||
#
|
||||
# This is necessary to break circular dependencies the logical
|
||||
# tree directory structure would otherwise introduce.
|
||||
#
|
||||
# See top-level makefile for details
|
||||
#
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_app_dirs += extensions
|
||||
endif
|
||||
|
||||
DIRS = src/fdlibm src
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
tier_app_dirs += browser
|
|
@ -0,0 +1,46 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
tier_app_dirs += \
|
||||
calendar \
|
||||
calendar\sunbird \
|
||||
$(NULL)
|
|
@ -0,0 +1,56 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
||||
endif
|
||||
|
||||
TIERS += app
|
||||
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_app_dirs += extensions
|
||||
endif
|
||||
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
tier_app_dirs += \
|
||||
embedding/config \
|
||||
camino \
|
||||
$(NULL)
|
|
@ -1,5 +1,5 @@
|
|||
mk_add_options MOZ_CO_PROJECT=macbrowser
|
||||
ac_add_options --enable-application=macbrowser
|
||||
mk_add_options MOZ_CO_PROJECT=camino
|
||||
ac_add_options --enable-application=camino
|
||||
|
||||
# Pick the right SDK depending on the CPU. This doesn't even pretend to be
|
||||
# cross-friendly, but neither do other parts of the Camino build, and it's
|
||||
|
|
11
client.mk
11
client.mk
|
@ -64,7 +64,7 @@
|
|||
# composer (standalone composer, aka NVU)
|
||||
# calendar (aka Sunbird, use this to build the calendar extensions also)
|
||||
# xulrunner
|
||||
# macbrowser (aka Camino)
|
||||
# camino
|
||||
#
|
||||
# Other common MOZ_CO_MODULE options include the following:
|
||||
# mozilla/other-licenses/libart_lgpl
|
||||
|
@ -111,7 +111,7 @@ AVAILABLE_PROJECTS = \
|
|||
composer \
|
||||
calendar \
|
||||
xulrunner \
|
||||
macbrowser \
|
||||
camino \
|
||||
$(NULL)
|
||||
|
||||
# Trailing / on top-level mozilla dir required to stop fast-update thinking
|
||||
|
@ -352,17 +352,17 @@ BOOTSTRAP_xulrunner := \
|
|||
mozilla/xulrunner/config/mozconfig \
|
||||
$(NULL)
|
||||
|
||||
MODULES_NS_macbrowser := \
|
||||
MODULES_NS_camino := \
|
||||
$(MODULES_NS_toolkit) \
|
||||
$(NULL)
|
||||
|
||||
MODULES_macbrowser := \
|
||||
MODULES_camino := \
|
||||
$(MODULES_core) \
|
||||
mozilla/camino \
|
||||
mozilla/themes \
|
||||
$(NULL)
|
||||
|
||||
BOOTSTRAP_macbrowser := \
|
||||
BOOTSTRAP_camino := \
|
||||
$(BOOTSTRAP_toolkit) \
|
||||
mozilla/camino/config/mozconfig \
|
||||
$(NULL)
|
||||
|
@ -486,6 +486,7 @@ include $(TOPSRCDIR)/build/unix/modules.mk
|
|||
# Options that may come from mozconfig
|
||||
|
||||
MOZ_PROJECT_LIST := $(subst $(comma), ,$(MOZ_CO_PROJECT))
|
||||
MOZ_PROJECT_LIST := $(subst macbrowser,camino,$(MOZ_PROJECT_LIST))
|
||||
|
||||
ifneq (,$(filter-out $(AVAILABLE_PROJECTS),$(MOZ_PROJECT_LIST)))
|
||||
$(error MOZ_CO_PROJECT contains an unrecognized project.)
|
||||
|
|
|
@ -110,29 +110,6 @@ ifdef HOST_PROGRAM
|
|||
$(INSTALL) $(HOST_PROGRAM) $(DIST)/bin
|
||||
endif
|
||||
|
||||
|
||||
# Copy NSPR to the SDK
|
||||
ifndef LIBXUL_SDK
|
||||
ifndef MOZ_NATIVE_NSPR
|
||||
ABS_DIST = cd $(DIST) && pwd
|
||||
ifeq (,$(CROSS_COMPILE)$(filter-out WINNT,$(OS_ARCH)))
|
||||
ifdef CYGDRIVE_MOUNT
|
||||
ABS_DIST = cygpath -w $(DIST) | sed -e 's|\\\\|/|g'
|
||||
endif
|
||||
endif
|
||||
libs::
|
||||
_ABS_DIST=`$(ABS_DIST)`; \
|
||||
$(MAKE) -C $(DEPTH)/nsprpub install prefix=$$_ABS_DIST/sdk exec_prefix=$$_ABS_DIST/sdk bindir=$$_ABS_DIST/sdk/dummy includedir=$$_ABS_DIST/sdk/include libdir=$$_ABS_DIST/sdk/lib datadir=$$_ABS_DIST/sdk/dummy DESTDIR=
|
||||
$(RM) -rf $(DIST)/sdk/dummy
|
||||
ifneq (,$(filter OS2 WINNT,$(OS_ARCH)))
|
||||
$(RM) -f $(DIST)/sdk/lib/$(DLL_PREFIX)nspr4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plc4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plds4$(DLL_SUFFIX)
|
||||
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4_s.$(LIB_SUFFIX)
|
||||
else
|
||||
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4.$(LIB_SUFFIX)
|
||||
endif
|
||||
endif # MOZ_NATIVE_NSPR
|
||||
endif # LIBXUL_SDK
|
||||
|
||||
ifdef WRAP_SYSTEM_INCLUDES
|
||||
export::
|
||||
if test ! -d system_wrappers; then mkdir system_wrappers; fi
|
||||
|
|
|
@ -0,0 +1,80 @@
|
|||
#
|
||||
# ***** 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. This file was copied from parts of
|
||||
# mozilla/config/Makefile.in
|
||||
#
|
||||
# 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):
|
||||
# Robert Ginda <rginda@netscape.com>
|
||||
# John Taylor <jtaylor@netscape.com>
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us>
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
|
||||
DEPTH = ../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
ifdef LIBXUL_SDK
|
||||
$(error config/nspr/Makefile.in is not compatible with --enable-libxul-sdk=)
|
||||
endif
|
||||
ifdef MOZ_NATIVE_NSPR
|
||||
$(error config/nspr/Makefile.in is not compatible with MOZ_NATIVE_NSPR)
|
||||
endif
|
||||
|
||||
# Copy NSPR to the SDK
|
||||
ABS_DIST = cd $(DIST) && pwd
|
||||
ifeq (,$(CROSS_COMPILE)$(filter-out WINNT,$(OS_ARCH))) # {
|
||||
ifdef CYGDRIVE_MOUNT # {
|
||||
ABS_DIST = cygpath -w $(DIST) | sed -e 's|\\\\|/|g'
|
||||
endif # }
|
||||
endif # }
|
||||
|
||||
libs::
|
||||
_ABS_DIST=`$(ABS_DIST)`; \
|
||||
$(MAKE) -C $(DEPTH)/nsprpub install prefix=$$_ABS_DIST/sdk exec_prefix=$$_ABS_DIST/sdk bindir=$$_ABS_DIST/sdk/dummy includedir=$$_ABS_DIST/sdk/include libdir=$$_ABS_DIST/sdk/lib datadir=$$_ABS_DIST/sdk/dummy DESTDIR=
|
||||
$(RM) -rf $(DIST)/sdk/dummy
|
||||
ifneq (,$(filter OS2 WINNT,$(OS_ARCH))) # {
|
||||
$(RM) -f $(DIST)/sdk/lib/$(DLL_PREFIX)nspr4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plc4$(DLL_SUFFIX) $(DIST)/sdk/lib/$(DLL_PREFIX)plds4$(DLL_SUFFIX)
|
||||
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4_s.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4_s.$(LIB_SUFFIX)
|
||||
else # } {
|
||||
$(RM) -f $(DIST)/sdk/lib/$(LIB_PREFIX)nspr4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plc4.$(LIB_SUFFIX) $(DIST)/sdk/lib/$(LIB_PREFIX)plds4.$(LIB_SUFFIX)
|
||||
endif # }
|
||||
|
||||
install::
|
||||
$(MAKE) -C $(DEPTH)/nsprpub install DESTDIR=$(DESTDIR) libdir=$(mozappdir) includedir=$(includedir)/nspr
|
||||
$(RM) -f $(addprefix $(DESTDIR)$(mozappdir)/$(LIB_PREFIX), $(addsuffix .$(LIB_SUFFIX), nspr4 plds4 plc4))
|
||||
$(RM) -f $(addprefix $(DESTDIR)$(bindir)/,nspr-config compile-et.pl prerr.properties)
|
|
@ -0,0 +1,48 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
TIERS += nspr
|
||||
|
||||
ifdef GC_LEAK_DETECTOR
|
||||
tier_nspr_staticdirs = gc/boehm
|
||||
endif
|
||||
|
||||
ifndef MOZ_NATIVE_NSPR
|
||||
tier_nspr_staticdirs += nsprpub
|
||||
tier_nspr_dirs += config/nspr
|
||||
endif
|
|
@ -800,6 +800,7 @@ run_viewer: $(FINAL_TARGET)/viewer
|
|||
clean clobber realclean clobber_all:: $(SUBMAKEFILES)
|
||||
-rm -f $(ALL_TRASH)
|
||||
-rm -rf $(ALL_TRASH_DIRS)
|
||||
$(foreach dir,$(STATIC_DIRS),make -C $(dir) $@)
|
||||
+$(LOOP_OVER_DIRS)
|
||||
+$(LOOP_OVER_TOOL_DIRS)
|
||||
|
||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -4103,13 +4103,17 @@ MOZ_ARG_ENABLE_STRING(application,
|
|||
composer
|
||||
calendar (Sunbird)
|
||||
xulrunner
|
||||
macbrowser (Camino)
|
||||
camino
|
||||
content/xslt (Standalone Transformiix XSLT)
|
||||
tools/update-packaging (AUS-related packaging tools)
|
||||
standalone (use this for standalone
|
||||
xpcom/xpconnect or to manually drive a build)],
|
||||
[ MOZ_BUILD_APP=$enableval ] )
|
||||
|
||||
if test "$MOZ_BUILD_APP" == "macbrowser"; then
|
||||
MOZ_BUILD_APP=camino
|
||||
fi
|
||||
|
||||
case "$MOZ_BUILD_APP" in
|
||||
minimo)
|
||||
MOZ_EMBEDDING_PROFILE=basic
|
||||
|
@ -4366,7 +4370,7 @@ xulrunner)
|
|||
fi
|
||||
;;
|
||||
|
||||
macbrowser)
|
||||
camino)
|
||||
MOZ_APP_NAME=mozilla
|
||||
_PLATFORM_DEFAULT_TOOLKIT=cocoa
|
||||
ENABLE_TESTS=
|
||||
|
|
|
@ -0,0 +1,47 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
include $(topsrcdir)/config/nspr/build.mk
|
||||
include $(topsrcdir)/xpcom/build.mk
|
||||
|
||||
TIERS += app
|
||||
|
||||
tier_app_dirs += \
|
||||
parser/expat \
|
||||
content/xslt/src \
|
||||
$(NULL)
|
|
@ -84,6 +84,7 @@ FORCE_STATIC_LIB = 1
|
|||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
INCLUDES += \
|
||||
-I$(srcdir)/../../public \
|
||||
-I$(srcdir) \
|
||||
-I$(srcdir)/../xml \
|
||||
-I$(srcdir)/../xpath \
|
||||
|
|
|
@ -71,9 +71,9 @@ endif
|
|||
|
||||
embed_chrome: embed-jar.mn
|
||||
ifneq (jar,$(MOZ_CHROME_FILE_FORMAT))
|
||||
$(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/bin/chrome > $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
$(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/bin/chrome < $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
-$(RM) -f $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
$(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/bin/chrome > embed-tmp.mn
|
||||
$(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/bin/chrome < embed-tmp.mn
|
||||
-$(RM) -f embed-tmp.mn
|
||||
else
|
||||
-$(RM) -rf $(DIST)/Embed/tmpchrome
|
||||
for f in $(DIST)/bin/chrome/*.jar; do \
|
||||
|
@ -82,9 +82,9 @@ else
|
|||
$(NSINSTALL) -D $(DIST)/Embed/tmpchrome/$$b ;\
|
||||
$(UNZIP) -q -o -d $(DIST)/Embed/tmpchrome/$$b $$f ; \
|
||||
done
|
||||
$(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/Embed/tmpchrome > $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
$(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/Embed/tmpchrome -z $(ZIP) < $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
-$(RM) -f $(MOZILLA_DIR)/embedding/config/embed-tmp.mn
|
||||
$(PERL) -I$(srcdir) $(srcdir)/gen_mn.pl -manifest $(MOZILLA_DIR)/embedding/config/embed-jar.mn -mozpath $(MOZILLA_DIR) -chrome $(DIST)/Embed/tmpchrome > embed-tmp.mn
|
||||
$(PERL) -I$(MOZILLA_DIR)/config $(MOZILLA_DIR)/config/make-jars.pl -a -v -f $(MOZ_CHROME_FILE_FORMAT) -d $(DIST)/bin/chrome -s $(DIST)/Embed/tmpchrome -z $(ZIP) < embed-tmp.mn
|
||||
-$(RM) -f embed-tmp.mn
|
||||
-$(RM) -rf $(DIST)/Embed/tmpchrome
|
||||
endif
|
||||
|
||||
|
|
|
@ -0,0 +1,44 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
TIERS += js
|
||||
|
||||
tier_js_dirs += \
|
||||
js/src/fdlibm \
|
||||
js/src \
|
||||
$(NULL)
|
|
@ -0,0 +1,57 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
||||
endif
|
||||
|
||||
TIERS += app
|
||||
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_app_dirs += extensions
|
||||
endif
|
||||
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
tier_app_dirs += \
|
||||
editor/ui \
|
||||
mailnews \
|
||||
mail \
|
||||
$(NULL)
|
|
@ -0,0 +1,51 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
||||
endif
|
||||
|
||||
TIERS += app
|
||||
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_app_dirs += extensions
|
||||
endif
|
||||
|
||||
tier_app_dirs += \
|
||||
minimo \
|
||||
$(NULL)
|
|
@ -0,0 +1,73 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifndef LIBXUL_SDK
|
||||
include $(topsrcdir)/toolkit/toolkit-tiers.mk
|
||||
endif
|
||||
|
||||
TIERS += app
|
||||
|
||||
ifdef MOZ_EXTENSIONS
|
||||
tier_app_dirs += extensions
|
||||
endif
|
||||
|
||||
ifdef MOZ_BRANDING_DIRECTORY
|
||||
tier_app_dirs += $(MOZ_BRANDING_DIRECTORY)
|
||||
endif
|
||||
|
||||
ifdef MOZ_MAIL_NEWS
|
||||
tier_app_dirs += mailnews
|
||||
endif
|
||||
|
||||
ifdef MOZ_COMPOSER
|
||||
tier_app_dirs += editor/ui
|
||||
endif
|
||||
|
||||
tier_app_dirs += \
|
||||
xpfe/components/search \
|
||||
xpfe/components/bookmarks \
|
||||
$(NULL)
|
||||
|
||||
# When Suite becomes a full MOZ_XUL_APP we can remove this ifdef
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_app_dirs += themes
|
||||
else
|
||||
tier_app_dirs += suite
|
||||
endif
|
||||
|
||||
tier_app_dirs += xpfe/bootstrap
|
|
@ -0,0 +1,303 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
ifdef LIBXUL_SDK
|
||||
$(error toolkit-tiers.mk is not compatible with --enable-libxul-sdk=)
|
||||
endif
|
||||
|
||||
include $(topsrcdir)/config/nspr/build.mk
|
||||
include $(topsrcdir)/js/src/build.mk
|
||||
include $(topsrcdir)/xpcom/build.mk
|
||||
|
||||
TIERS += \
|
||||
external \
|
||||
gecko \
|
||||
toolkit \
|
||||
$(NULL)
|
||||
|
||||
#
|
||||
# tier "external" - 3rd party individual libraries
|
||||
#
|
||||
|
||||
ifndef MOZ_NATIVE_JPEG
|
||||
tier_external_dirs += jpeg
|
||||
endif
|
||||
|
||||
ifndef MOZ_NATIVE_ZLIB
|
||||
tier_external_dirs += modules/zlib
|
||||
endif
|
||||
|
||||
# Installer needs standalone libjar, hence standalone zlib
|
||||
ifdef MOZ_INSTALLER
|
||||
tier_external_dirs += modules/zlib/standalone
|
||||
endif
|
||||
|
||||
ifdef MOZ_UPDATER
|
||||
tier_external_dirs += modules/libbz2
|
||||
tier_external_dirs += modules/libmar
|
||||
endif
|
||||
|
||||
#
|
||||
# tier "gecko" - core components (necko,gecko)
|
||||
#
|
||||
|
||||
ifneq (,$(MOZ_NO_XPCOM_OBSOLETE)$(MOZ_XPINSTALL))
|
||||
tier_gecko_dirs += modules/libreg
|
||||
endif
|
||||
|
||||
ifndef MOZ_NO_XPCOM_OBSOLETE
|
||||
tier_gecko_dirs += xpcom/obsolete
|
||||
endif
|
||||
|
||||
ifdef NS_TRACE_MALLOC
|
||||
tier_gecko_dirs += tools/trace-malloc/lib
|
||||
endif
|
||||
|
||||
tier_gecko_dirs += \
|
||||
js/src/xpconnect \
|
||||
intl \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_ENABLE_XLIB
|
||||
tier_gecko_dirs += gfx/src/xlibrgb widget/src/xlibxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_GTK
|
||||
tier_gecko_dirs += widget/src/gtksuperwin widget/src/gtkxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_GTK2
|
||||
tier_gecko_dirs += widget/src/gtkxtbin
|
||||
endif
|
||||
|
||||
ifdef MOZ_IPCD
|
||||
tier_gecko_dirs += ipc/ipcd
|
||||
endif
|
||||
|
||||
tier_gecko_dirs += \
|
||||
modules/libutil \
|
||||
netwerk \
|
||||
modules/libjar \
|
||||
db \
|
||||
$(NULL)
|
||||
|
||||
ifdef MOZ_PERMISSIONS
|
||||
tier_gecko_dirs += \
|
||||
extensions/cookie \
|
||||
extensions/permissions \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef MOZ_STORAGE
|
||||
tier_gecko_dirs += storage
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL
|
||||
tier_gecko_dirs += rdf
|
||||
endif
|
||||
|
||||
ifdef MOZ_JSDEBUGGER
|
||||
tier_gecko_dirs += js/jsd
|
||||
endif
|
||||
|
||||
tier_gecko_dirs += \
|
||||
uriloader \
|
||||
modules/libpref \
|
||||
modules/libimg \
|
||||
caps \
|
||||
parser/expat \
|
||||
parser/xml \
|
||||
parser/htmlparser \
|
||||
gfx \
|
||||
modules/libpr0n \
|
||||
sun-java \
|
||||
modules/plugin \
|
||||
dom \
|
||||
view \
|
||||
widget \
|
||||
content \
|
||||
layout \
|
||||
docshell \
|
||||
webshell \
|
||||
embedding \
|
||||
editor \
|
||||
xpfe/appshell \
|
||||
$(NULL)
|
||||
|
||||
# Java Embedding Plugin
|
||||
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||||
tier_gecko_dirs += plugin/oji/JEP
|
||||
endif
|
||||
|
||||
ifdef MOZ_AUTH_EXTENSION
|
||||
tier_gecko_dirs += extensions/auth
|
||||
endif
|
||||
|
||||
ifdef MOZ_XMLEXTRAS
|
||||
tier_gecko_dirs += extensions/xmlextras
|
||||
endif
|
||||
|
||||
ifdef MOZ_WEBSERVICES
|
||||
tier_gecko_dirs += extensions/webservices
|
||||
endif
|
||||
|
||||
ifdef MOZ_UNIVERSALCHARDET
|
||||
tier_gecko_dirs += extensions/universalchardet
|
||||
endif
|
||||
|
||||
ifdef MOZ_OJI
|
||||
tier_gecko_dirs += \
|
||||
js/src/liveconnect \
|
||||
modules/oji \
|
||||
$(NULL)
|
||||
endif
|
||||
|
||||
ifdef ACCESSIBILITY
|
||||
tier_gecko_dirs += accessible
|
||||
endif
|
||||
|
||||
#
|
||||
# tier "toolkit" - xpfe & toolkit
|
||||
#
|
||||
# The division of "gecko" and "toolkit" is somewhat arbitrary, and related
|
||||
# to history where "gecko" wasn't forked between seamonkey/firefox but
|
||||
# "toolkit" was.
|
||||
#
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_toolkit_dirs += chrome
|
||||
else
|
||||
ifdef MOZ_XUL
|
||||
tier_toolkit_dirs += rdf/chrome
|
||||
else
|
||||
tier_toolkit_dirs += embedding/minimo/chromelite
|
||||
endif
|
||||
endif
|
||||
|
||||
tier_toolkit_dirs += profile
|
||||
|
||||
# This must preceed xpfe
|
||||
ifdef MOZ_JPROF
|
||||
tier_toolkit_dirs += tools/jprof
|
||||
endif
|
||||
|
||||
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||||
tier_toolkit_dirs += xpfe/bootstrap/appleevents
|
||||
endif
|
||||
|
||||
tier_toolkit_dirs += \
|
||||
xpfe \
|
||||
toolkit/components \
|
||||
$(NULL)
|
||||
|
||||
ifndef MOZ_XUL_APP
|
||||
tier_toolkit_dirs += themes
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_XREMOTE
|
||||
tier_toolkit_dirs += widget/src/xremoteclient
|
||||
endif
|
||||
|
||||
ifdef MOZ_SPELLCHECK
|
||||
tier_toolkit_dirs += extensions/spellcheck
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
tier_toolkit_dirs += toolkit
|
||||
endif
|
||||
|
||||
ifdef MOZ_XPINSTALL
|
||||
tier_toolkit_dirs += xpinstall
|
||||
endif
|
||||
|
||||
ifdef MOZ_PSM
|
||||
tier_toolkit_dirs += security/manager
|
||||
else
|
||||
tier_toolkit_dirs += security/manager/boot/public security/manager/ssl/public
|
||||
endif
|
||||
|
||||
ifdef MOZ_PREF_EXTENSIONS
|
||||
tier_toolkit_dirs += extensions/pref
|
||||
endif
|
||||
|
||||
ifdef MOZ_JAVAXPCOM
|
||||
tier_toolkit_dirs += extensions/java
|
||||
endif
|
||||
|
||||
ifndef BUILD_STATIC_LIBS
|
||||
ifdef MOZ_XUL_APP
|
||||
ifneq (,$(MOZ_ENABLE_GTK)$(MOZ_ENABLE_GTK2))
|
||||
tier_toolkit_dirs += embedding/browser/gtk
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_XUL_APP
|
||||
ifndef BUILD_STATIC_LIBS
|
||||
tier_toolkit_dirs += toolkit/library
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_ENABLE_LIBXUL
|
||||
tier_toolkit_dirs += xpcom/stub
|
||||
endif
|
||||
|
||||
ifdef NS_TRACE_MALLOC
|
||||
tier_toolkit_dirs += tools/trace-malloc
|
||||
endif
|
||||
|
||||
ifdef MOZ_LDAP_XPCOM
|
||||
tier_toolkit_staticdirs += directory/c-sdk
|
||||
tier_toolkit_dirs += directory/xpcom
|
||||
endif
|
||||
|
||||
ifndef MINIMO
|
||||
ifdef MOZ_XUL_APP
|
||||
ifdef MOZ_ENABLE_GTK2
|
||||
tier_toolkit_dirs += toolkit/components/gnome
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef MOZ_LEAKY
|
||||
tier_toolkit_dirs += tools/leaky
|
||||
endif
|
||||
|
||||
ifdef MOZ_MAPINFO
|
||||
tier_toolkit_dirs += tools/codesighs
|
||||
endif
|
|
@ -0,0 +1,47 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
include $(topsrcdir)/config/nspr/build.mk
|
||||
|
||||
TIERS += app
|
||||
|
||||
tier_app_dirs += \
|
||||
modules/libbz2 \
|
||||
modules/libmar \
|
||||
other-licenses/bsdiff \
|
||||
$(NULL)
|
|
@ -0,0 +1,41 @@
|
|||
# ***** 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 the Mozilla build system.
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# the Mozilla Foundation <http://www.mozilla.org/>.
|
||||
#
|
||||
# Portions created by the Initial Developer are Copyright (C) 2006
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Benjamin Smedberg <benjamin@smedbergs.us> (Initial Code)
|
||||
#
|
||||
# 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 *****
|
||||
|
||||
TIERS += xpcom
|
||||
|
||||
tier_xpcom_dirs = xpcom
|
Загрузка…
Ссылка в новой задаче