зеркало из https://github.com/mozilla/pjs.git
Bug 73353: Clean up our MODULE/REQUIRES story. rs=dbaron, a=brendan
This commit is contained in:
Родитель
758d541994
Коммит
60e16aa5b6
|
@ -92,7 +92,6 @@ endif
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
xulapp \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = nsBrowserApp.cpp
|
CPPSRCS = nsBrowserApp.cpp
|
||||||
|
|
|
@ -17,18 +17,12 @@ FORCE_SHARED_LIB = 1
|
||||||
USE_STATIC_LIBS = 1
|
USE_STATIC_LIBS = 1
|
||||||
|
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
docshell \
|
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
pref \
|
|
||||||
rdf \
|
rdf \
|
||||||
uriloader \
|
uriloader \
|
||||||
webbrowserpersist \
|
|
||||||
intl \
|
intl \
|
||||||
necko \
|
necko \
|
||||||
nkcache \
|
|
||||||
txmgr \
|
|
||||||
chardet \
|
|
||||||
migration \
|
migration \
|
||||||
shellservice \
|
shellservice \
|
||||||
xulapp \
|
xulapp \
|
||||||
|
|
|
@ -51,7 +51,6 @@ REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
necko \
|
necko \
|
||||||
history \
|
|
||||||
libreg \
|
libreg \
|
||||||
browsercomps \
|
browsercomps \
|
||||||
toolkitcomps \
|
toolkitcomps \
|
||||||
|
|
|
@ -53,7 +53,6 @@ USE_STATIC_LIBS = 1
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
docshell \
|
|
||||||
necko \
|
necko \
|
||||||
browsercomps \
|
browsercomps \
|
||||||
toolkitcomps \
|
toolkitcomps \
|
||||||
|
|
|
@ -49,7 +49,6 @@ USE_STATIC_LIBS = 1
|
||||||
|
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
necko \
|
necko \
|
||||||
safebrowsing \
|
|
||||||
string \
|
string \
|
||||||
uriloader \
|
uriloader \
|
||||||
xpcom
|
xpcom
|
||||||
|
|
|
@ -54,13 +54,10 @@ REQUIRES = \
|
||||||
webbrowserpersist \
|
webbrowserpersist \
|
||||||
dom \
|
dom \
|
||||||
intl \
|
intl \
|
||||||
unicharutil \
|
|
||||||
necko \
|
necko \
|
||||||
content \
|
content \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
browsercomps \
|
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
|
||||||
widget \
|
widget \
|
||||||
pref \
|
pref \
|
||||||
layout \
|
layout \
|
||||||
|
@ -68,13 +65,19 @@ REQUIRES = \
|
||||||
|
|
||||||
ifeq ($(OS_ARCH),WINNT)
|
ifeq ($(OS_ARCH),WINNT)
|
||||||
CPPSRCS = nsWindowsShellService.cpp
|
CPPSRCS = nsWindowsShellService.cpp
|
||||||
|
REQUIRES += \
|
||||||
|
browsercomps \
|
||||||
|
$(NULL)
|
||||||
else
|
else
|
||||||
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
|
||||||
CPPSRCS = nsMacShellService.cpp
|
CPPSRCS = nsMacShellService.cpp
|
||||||
else
|
else
|
||||||
ifeq ($(MOZ_WIDGET_TOOLKIT), gtk2)
|
ifeq ($(MOZ_WIDGET_TOOLKIT), gtk2)
|
||||||
CPPSRCS = nsGNOMEShellService.cpp
|
CPPSRCS = nsGNOMEShellService.cpp
|
||||||
REQUIRES += mozgnome
|
REQUIRES += \
|
||||||
|
mozgnome \
|
||||||
|
thebes \
|
||||||
|
$(NULL)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -59,7 +59,6 @@ REQUIRES = xpcom \
|
||||||
js \
|
js \
|
||||||
webshell \
|
webshell \
|
||||||
necko \
|
necko \
|
||||||
nkcache \
|
|
||||||
mimetype \
|
mimetype \
|
||||||
exthandler \
|
exthandler \
|
||||||
chardet \
|
chardet \
|
||||||
|
@ -82,9 +81,12 @@ REQUIRES = xpcom \
|
||||||
util \
|
util \
|
||||||
appshell \
|
appshell \
|
||||||
shistory \
|
shistory \
|
||||||
accessibility \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ACCESSIBILITY
|
||||||
|
REQUIRES += accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
nsAtomListUtils.h \
|
nsAtomListUtils.h \
|
||||||
nsAttrName.h \
|
nsAttrName.h \
|
||||||
|
|
|
@ -57,24 +57,13 @@ REQUIRES = \
|
||||||
locale \
|
locale \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
webshell \
|
webshell \
|
||||||
uriloader \
|
|
||||||
htmlparser \
|
|
||||||
necko \
|
necko \
|
||||||
view \
|
|
||||||
pref \
|
pref \
|
||||||
docshell \
|
docshell \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
xuldoc \
|
|
||||||
caps \
|
caps \
|
||||||
editor \
|
|
||||||
imglib2 \
|
imglib2 \
|
||||||
mimetype \
|
|
||||||
exthandler \
|
|
||||||
uconv \
|
|
||||||
intl \
|
|
||||||
plugin \
|
|
||||||
cairo \
|
cairo \
|
||||||
libpixman \
|
|
||||||
thebes \
|
thebes \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -65,11 +65,8 @@ REQUIRES = xpcom \
|
||||||
util \
|
util \
|
||||||
uconv \
|
uconv \
|
||||||
pref \
|
pref \
|
||||||
uriloader \
|
|
||||||
rdf \
|
|
||||||
chardet \
|
chardet \
|
||||||
nkcache \
|
nkcache \
|
||||||
lwbrk \
|
|
||||||
imglib2 \
|
imglib2 \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
|
|
|
@ -49,7 +49,6 @@ LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
layout \
|
layout \
|
||||||
content \
|
|
||||||
widget \
|
widget \
|
||||||
gfx \
|
gfx \
|
||||||
dom \
|
dom \
|
||||||
|
@ -57,8 +56,6 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
pref \
|
pref \
|
||||||
webshell \
|
webshell \
|
||||||
unicharutil \
|
|
||||||
docshell \
|
|
||||||
thebes \
|
thebes \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -49,14 +49,11 @@ LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
layout \
|
layout \
|
||||||
content \
|
|
||||||
widget \
|
widget \
|
||||||
gfx \
|
gfx \
|
||||||
dom \
|
dom \
|
||||||
js \
|
js \
|
||||||
locale \
|
locale \
|
||||||
htmlparser \
|
|
||||||
view \
|
|
||||||
pref \
|
pref \
|
||||||
necko \
|
necko \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
|
|
|
@ -45,7 +45,7 @@ include $(DEPTH)/config/autoconf.mk
|
||||||
MODULE = content
|
MODULE = content
|
||||||
LIBRARY_NAME = gkconsvgdoc_s
|
LIBRARY_NAME = gkconsvgdoc_s
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = content \
|
REQUIRES = \
|
||||||
layout \
|
layout \
|
||||||
widget \
|
widget \
|
||||||
xpcom \
|
xpcom \
|
||||||
|
@ -55,14 +55,11 @@ REQUIRES = content \
|
||||||
dom \
|
dom \
|
||||||
webshell \
|
webshell \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
lwbrk \
|
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
js \
|
js \
|
||||||
caps \
|
caps \
|
||||||
locale \
|
locale \
|
||||||
view \
|
|
||||||
xpconnect \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
|
|
|
@ -62,7 +62,6 @@ REQUIRES = xpcom \
|
||||||
pref \
|
pref \
|
||||||
docshell \
|
docshell \
|
||||||
webshell \
|
webshell \
|
||||||
lwbrk \
|
|
||||||
xuldoc \
|
xuldoc \
|
||||||
rdf \
|
rdf \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
|
|
|
@ -55,11 +55,8 @@ REQUIRES = xpcom \
|
||||||
layout \
|
layout \
|
||||||
widget \
|
widget \
|
||||||
necko \
|
necko \
|
||||||
caps \
|
|
||||||
webshell \
|
webshell \
|
||||||
docshell \
|
docshell \
|
||||||
htmlparser \
|
|
||||||
xpconnect \
|
|
||||||
unicharutil \
|
unicharutil \
|
||||||
pref \
|
pref \
|
||||||
locale \
|
locale \
|
||||||
|
|
|
@ -57,15 +57,12 @@ REQUIRES = xpcom \
|
||||||
caps \
|
caps \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
necko \
|
||||||
view \
|
|
||||||
imglib2 \
|
imglib2 \
|
||||||
docshell \
|
docshell \
|
||||||
webshell \
|
webshell \
|
||||||
uriloader \
|
|
||||||
pref \
|
pref \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
uconv \
|
uconv \
|
||||||
lwbrk \
|
|
||||||
exthandler \
|
exthandler \
|
||||||
mimetype \
|
mimetype \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
|
|
|
@ -64,12 +64,10 @@ REQUIRES = xpcom \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
pref \
|
pref \
|
||||||
locale \
|
locale \
|
||||||
lwbrk \
|
|
||||||
xuldoc \
|
xuldoc \
|
||||||
xultmpl \
|
xultmpl \
|
||||||
webshell \
|
webshell \
|
||||||
view \
|
view \
|
||||||
docshell \
|
|
||||||
htmlparser \
|
htmlparser \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -63,9 +63,7 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
view \
|
view \
|
||||||
necko \
|
necko \
|
||||||
uriloader \
|
|
||||||
htmlparser \
|
htmlparser \
|
||||||
lwbrk \
|
|
||||||
docshell \
|
docshell \
|
||||||
pref \
|
pref \
|
||||||
xultmpl \
|
xultmpl \
|
||||||
|
|
|
@ -84,7 +84,6 @@ REQUIRES = xpcom \
|
||||||
editor \
|
editor \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
mimetype \
|
|
||||||
jar \
|
jar \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,6 @@ PACKAGE_FILE = docshell.pkg
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
js \
|
|
||||||
shistory \
|
shistory \
|
||||||
necko \
|
necko \
|
||||||
nkcache \
|
nkcache \
|
||||||
|
@ -68,7 +67,6 @@ REQUIRES = xpcom \
|
||||||
webshell \
|
webshell \
|
||||||
widget \
|
widget \
|
||||||
pref \
|
pref \
|
||||||
view \
|
|
||||||
intl \
|
intl \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
chardet \
|
chardet \
|
||||||
|
@ -79,7 +77,6 @@ REQUIRES = xpcom \
|
||||||
uriloader \
|
uriloader \
|
||||||
exthandler \
|
exthandler \
|
||||||
mimetype \
|
mimetype \
|
||||||
rdf \
|
|
||||||
prefetch \
|
prefetch \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -66,7 +66,6 @@ REQUIRES = xpcom \
|
||||||
mimetype \
|
mimetype \
|
||||||
java \
|
java \
|
||||||
locale \
|
locale \
|
||||||
uriloader \
|
|
||||||
prefetch \
|
prefetch \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
webshell \
|
webshell \
|
||||||
|
|
|
@ -49,14 +49,11 @@ LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
content \
|
content \
|
||||||
caps \
|
|
||||||
js \
|
js \
|
||||||
locale \
|
|
||||||
layout \
|
layout \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
uconv \
|
uconv \
|
||||||
unicharutil \
|
|
||||||
widget \
|
widget \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -55,7 +55,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
dom \
|
dom \
|
||||||
js \
|
|
||||||
layout \
|
layout \
|
||||||
content \
|
content \
|
||||||
uriloader \
|
uriloader \
|
||||||
|
|
|
@ -54,7 +54,6 @@ REQUIRES = xpcom \
|
||||||
content \
|
content \
|
||||||
txmgr \
|
txmgr \
|
||||||
txtsvc \
|
txtsvc \
|
||||||
htmlparser \
|
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
lwbrk \
|
lwbrk \
|
||||||
|
|
|
@ -52,7 +52,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
editor \
|
editor \
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
|
||||||
layout \
|
layout \
|
||||||
content \
|
content \
|
||||||
dom \
|
dom \
|
||||||
|
|
|
@ -59,7 +59,6 @@ REQUIRES = xpcom \
|
||||||
dom \
|
dom \
|
||||||
widget \
|
widget \
|
||||||
gfx \
|
gfx \
|
||||||
layout \
|
|
||||||
content \
|
content \
|
||||||
necko \
|
necko \
|
||||||
uriloader \
|
uriloader \
|
||||||
|
|
|
@ -48,12 +48,10 @@ REQUIRES = string \
|
||||||
dom \
|
dom \
|
||||||
content \
|
content \
|
||||||
widget \
|
widget \
|
||||||
necko \
|
|
||||||
xuldoc \
|
xuldoc \
|
||||||
caps \
|
caps \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
js \
|
js \
|
||||||
layout \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LIBRARY_NAME = commandhandler_s
|
LIBRARY_NAME = commandhandler_s
|
||||||
|
|
|
@ -56,8 +56,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
necko \
|
necko \
|
||||||
dom \
|
dom \
|
||||||
widget \
|
|
||||||
content \
|
|
||||||
pref \
|
pref \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
docshell \
|
docshell \
|
||||||
|
|
|
@ -63,11 +63,13 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
view \
|
view \
|
||||||
pref \
|
pref \
|
||||||
appshell \
|
|
||||||
appcomps \
|
|
||||||
toolkitcomps \
|
toolkitcomps \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifndef MOZ_XUL_APP
|
||||||
|
REQUIRES += appcomps
|
||||||
|
endif
|
||||||
|
|
||||||
XPIDLSRCS = \
|
XPIDLSRCS = \
|
||||||
nsILayoutRegressionTester.idl \
|
nsILayoutRegressionTester.idl \
|
||||||
nsILayoutDebuggingTools.idl \
|
nsILayoutDebuggingTools.idl \
|
||||||
|
|
|
@ -51,13 +51,10 @@ LIBXUL_LIBRARY = 1
|
||||||
PACKAGE_FILE = gfx.pkg
|
PACKAGE_FILE = gfx.pkg
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
windowwatcher \
|
|
||||||
dom \
|
|
||||||
string \
|
string \
|
||||||
widget \
|
widget \
|
||||||
locale \
|
locale \
|
||||||
view \
|
view \
|
||||||
pref \
|
|
||||||
unicharutil \
|
unicharutil \
|
||||||
thebes \
|
thebes \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -53,11 +53,6 @@ REQUIRES= \
|
||||||
string \
|
string \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
widget \
|
widget \
|
||||||
content \
|
|
||||||
layout \
|
|
||||||
necko \
|
|
||||||
dom \
|
|
||||||
locale \
|
|
||||||
thebes \
|
thebes \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -55,25 +55,12 @@ LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
cairo \
|
|
||||||
libpixman \
|
|
||||||
glitz \
|
|
||||||
thebes \
|
thebes \
|
||||||
gfx \
|
|
||||||
widget \
|
widget \
|
||||||
intl \
|
|
||||||
view \
|
view \
|
||||||
pref \
|
pref \
|
||||||
uconv \
|
|
||||||
unicharutil \
|
unicharutil \
|
||||||
locale \
|
|
||||||
necko \
|
|
||||||
content \
|
|
||||||
layout \
|
|
||||||
dom \
|
|
||||||
debug \
|
|
||||||
imglib2 \
|
imglib2 \
|
||||||
widget \
|
|
||||||
$(ZLIB_REQUIRES) \
|
$(ZLIB_REQUIRES) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
@ -103,7 +90,10 @@ ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
||||||
CPPSRCS += nsSystemFontsWin.cpp \
|
CPPSRCS += nsSystemFontsWin.cpp \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
REQUIRES += glitzwgl
|
REQUIRES += \
|
||||||
|
glitzwgl \
|
||||||
|
cairo \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
_OS_LIBS = usp10
|
_OS_LIBS = usp10
|
||||||
OS_LIBS += $(call EXPAND_LIBNAME,$(_OS_LIBS))
|
OS_LIBS += $(call EXPAND_LIBNAME,$(_OS_LIBS))
|
||||||
|
|
|
@ -13,7 +13,6 @@ EXPORT_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
cairo \
|
cairo \
|
||||||
libpixman \
|
|
||||||
string \
|
string \
|
||||||
pref \
|
pref \
|
||||||
xpcom \
|
xpcom \
|
||||||
|
|
|
@ -59,7 +59,6 @@ REQUIRES = xpcom \
|
||||||
lwbrk \
|
lwbrk \
|
||||||
intl \
|
intl \
|
||||||
locale \
|
locale \
|
||||||
necko \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
|
|
|
@ -47,7 +47,6 @@ LIBRARY_NAME = nslocale_s
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
gfx \
|
|
||||||
string \
|
string \
|
||||||
uconv \
|
uconv \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
|
|
|
@ -57,7 +57,6 @@ SDK_LIBRARY = $(LIBRARY)
|
||||||
|
|
||||||
REQUIRES=xpcom \
|
REQUIRES=xpcom \
|
||||||
string \
|
string \
|
||||||
uconv \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
SDK_HEADERS = \
|
SDK_HEADERS = \
|
||||||
|
|
|
@ -56,7 +56,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
content \
|
content \
|
||||||
xul \
|
|
||||||
xuldoc \
|
xuldoc \
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
|
@ -76,13 +75,14 @@ REQUIRES = xpcom \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
util \
|
util \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
accessibility \
|
|
||||||
shistory \
|
shistory \
|
||||||
caps \
|
caps \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ACCESSIBILITY
|
||||||
|
REQUIRES += accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
XPIDLSRCS = \
|
XPIDLSRCS = \
|
||||||
nsIStyleSheetService.idl \
|
nsIStyleSheetService.idl \
|
||||||
|
|
|
@ -83,14 +83,12 @@ REQUIRES = xpcom \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
uriloader \
|
|
||||||
caps \
|
caps \
|
||||||
rdf \
|
rdf \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
pref \
|
pref \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
xul \
|
|
||||||
xultmpl \
|
xultmpl \
|
||||||
lwbrk \
|
lwbrk \
|
||||||
plugin \
|
plugin \
|
||||||
|
|
|
@ -64,13 +64,10 @@ REQUIRES = xpcom \
|
||||||
necko \
|
necko \
|
||||||
webshell \
|
webshell \
|
||||||
editor \
|
editor \
|
||||||
txtsvc \
|
|
||||||
intl \
|
|
||||||
uconv \
|
uconv \
|
||||||
txmgr \
|
txmgr \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
accessibility \
|
|
||||||
unicharutil \
|
unicharutil \
|
||||||
commandhandler \
|
commandhandler \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
|
@ -79,6 +76,10 @@ REQUIRES = xpcom \
|
||||||
docshell \
|
docshell \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ACCESSIBILITY
|
||||||
|
REQUIRES += accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
nsIListControlFrame.h \
|
nsIListControlFrame.h \
|
||||||
nsIComboboxControlFrame.h \
|
nsIComboboxControlFrame.h \
|
||||||
|
|
|
@ -54,7 +54,6 @@ REQUIRES = xpcom \
|
||||||
dom \
|
dom \
|
||||||
content \
|
content \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
locale \
|
locale \
|
||||||
|
@ -67,23 +66,22 @@ REQUIRES = xpcom \
|
||||||
webshell \
|
webshell \
|
||||||
plugin \
|
plugin \
|
||||||
docshell \
|
docshell \
|
||||||
uriloader \
|
|
||||||
mimetype \
|
|
||||||
webbrwsr \
|
webbrwsr \
|
||||||
oji \
|
oji \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
lwbrk \
|
lwbrk \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
accessibility \
|
|
||||||
xpconnect \
|
xpconnect \
|
||||||
java \
|
java \
|
||||||
exthandler \
|
|
||||||
intl \
|
intl \
|
||||||
uconv \
|
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
cairo \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ACCESSIBILITY
|
||||||
|
REQUIRES += accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
# Sun's Complex Text Layout support
|
# Sun's Complex Text Layout support
|
||||||
ifdef SUNCTL
|
ifdef SUNCTL
|
||||||
REQUIRES += ctl
|
REQUIRES += ctl
|
||||||
|
|
|
@ -57,7 +57,6 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
necko \
|
necko \
|
||||||
docshell \
|
docshell \
|
||||||
view \
|
|
||||||
webshell \
|
webshell \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -60,12 +60,10 @@ REQUIRES = xpcom \
|
||||||
view \
|
view \
|
||||||
webshell \
|
webshell \
|
||||||
locale \
|
locale \
|
||||||
intl \
|
|
||||||
unicharutil \
|
unicharutil \
|
||||||
necko \
|
necko \
|
||||||
docshell \
|
docshell \
|
||||||
webbrwsr \
|
webbrwsr \
|
||||||
windowwatcher \
|
|
||||||
pref \
|
pref \
|
||||||
js \
|
js \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -66,7 +66,6 @@ REQUIRES = xpcom \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
|
||||||
pref \
|
pref \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -65,8 +65,6 @@ REQUIRES = xpcom \
|
||||||
necko \
|
necko \
|
||||||
mimetype \
|
mimetype \
|
||||||
webshell \
|
webshell \
|
||||||
docshell \
|
|
||||||
htmlparser \
|
|
||||||
uconv \
|
uconv \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
|
|
|
@ -59,8 +59,6 @@ REQUIRES = xpcom \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
webshell \
|
webshell \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
intl \
|
|
||||||
windowwatcher \
|
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
docshell \
|
docshell \
|
||||||
|
|
|
@ -55,15 +55,17 @@ REQUIRES = xpcom \
|
||||||
widget \
|
widget \
|
||||||
locale \
|
locale \
|
||||||
view \
|
view \
|
||||||
accessibility \
|
|
||||||
necko \
|
necko \
|
||||||
webshell \
|
webshell \
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
|
||||||
pref \
|
pref \
|
||||||
docshell \
|
docshell \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ACCESSIBILITY
|
||||||
|
REQUIRES += accessibility
|
||||||
|
endif
|
||||||
|
|
||||||
EXPORTS = \
|
EXPORTS = \
|
||||||
nsITableCellLayout.h \
|
nsITableCellLayout.h \
|
||||||
nsITableLayout.h \
|
nsITableLayout.h \
|
||||||
|
|
|
@ -51,7 +51,6 @@ REQUIRES = xpcom \
|
||||||
dom \
|
dom \
|
||||||
locale \
|
locale \
|
||||||
content \
|
content \
|
||||||
xul \
|
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
thebes \
|
||||||
widget \
|
widget \
|
||||||
|
|
|
@ -49,7 +49,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
content \
|
content \
|
||||||
xul \
|
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
thebes \
|
||||||
widget \
|
widget \
|
||||||
|
|
|
@ -59,8 +59,6 @@ REQUIRES = xpcom \
|
||||||
nkcache \
|
nkcache \
|
||||||
gfx \
|
gfx \
|
||||||
caps \
|
caps \
|
||||||
xpconnect \
|
|
||||||
js \
|
|
||||||
$(JPEG_REQUIRES) \
|
$(JPEG_REQUIRES) \
|
||||||
$(PNG_REQUIRES) \
|
$(PNG_REQUIRES) \
|
||||||
$(ZLIB_REQUIRES) \
|
$(ZLIB_REQUIRES) \
|
||||||
|
|
|
@ -52,7 +52,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
imglib2 \
|
imglib2 \
|
||||||
$(LCMS_REQUIRES) \
|
$(LCMS_REQUIRES) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -49,7 +49,6 @@ LIBXUL_LIBRARY = 1
|
||||||
EXTRA_DSO_LIBS = gkgfx
|
EXTRA_DSO_LIBS = gkgfx
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
gfx \
|
|
||||||
string \
|
string \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
$(JPEG_REQUIRES) \
|
$(JPEG_REQUIRES) \
|
||||||
|
|
|
@ -49,7 +49,6 @@ LIBXUL_LIBRARY = 1
|
||||||
EXTRA_DSO_LIBS = gkgfx
|
EXTRA_DSO_LIBS = gkgfx
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
gfx \
|
|
||||||
string \
|
string \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
$(PNG_REQUIRES) \
|
$(PNG_REQUIRES) \
|
||||||
|
|
|
@ -55,7 +55,6 @@ REQUIRES = xpcom \
|
||||||
nkcache \
|
nkcache \
|
||||||
gfx \
|
gfx \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
caps \
|
caps \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
js \
|
js \
|
||||||
|
|
|
@ -54,7 +54,6 @@ GRE_MODULE = 1
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
xpcom_obsolete \
|
|
||||||
string \
|
string \
|
||||||
intl \
|
intl \
|
||||||
necko \
|
necko \
|
||||||
|
@ -66,6 +65,10 @@ REQUIRES += ipcd \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifndef MOZ_NO_XPCOM_OBSOLETE
|
||||||
|
REQUIRES += xpcom_obsolete
|
||||||
|
endif
|
||||||
|
|
||||||
include $(topsrcdir)/config/config.mk
|
include $(topsrcdir)/config/config.mk
|
||||||
|
|
||||||
CPPSRCS = nsPref.cpp \
|
CPPSRCS = nsPref.cpp \
|
||||||
|
|
|
@ -49,7 +49,6 @@ LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
mimetype \
|
mimetype \
|
||||||
pref \
|
|
||||||
uconv \
|
uconv \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -48,10 +48,8 @@ LIBRARY_NAME = nkgopher_s
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
necko \
|
|
||||||
string \
|
string \
|
||||||
mimetype \
|
mimetype \
|
||||||
pref \
|
|
||||||
intl \
|
intl \
|
||||||
uconv \
|
uconv \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -49,7 +49,6 @@ LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
necko \
|
|
||||||
mimetype \
|
mimetype \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -53,13 +53,11 @@ MODULE_NAME = mozStorageModule
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
storage \
|
|
||||||
sqlite3 \
|
sqlite3 \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
intl \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
EXPORTS = mozStorageCID.h
|
EXPORTS = mozStorageCID.h
|
||||||
|
|
|
@ -51,8 +51,6 @@ GRE_MODULE = 1
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
intl \
|
|
||||||
necko \
|
|
||||||
string \
|
string \
|
||||||
sqlite3 \
|
sqlite3 \
|
||||||
js \
|
js \
|
||||||
|
|
|
@ -56,7 +56,6 @@ REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
storage \
|
storage \
|
||||||
storagecomps \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
LIBS = \
|
LIBS = \
|
||||||
|
|
|
@ -50,7 +50,6 @@ REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
necko \
|
necko \
|
||||||
xulapp \
|
|
||||||
intl \
|
intl \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -61,21 +61,15 @@ REQUIRES = \
|
||||||
widget \
|
widget \
|
||||||
layout \
|
layout \
|
||||||
dom \
|
dom \
|
||||||
pref \
|
|
||||||
rdf \
|
|
||||||
intl \
|
intl \
|
||||||
docshell \
|
docshell \
|
||||||
autocomplete \
|
|
||||||
appcomps \
|
appcomps \
|
||||||
downloads \
|
downloads \
|
||||||
fastfind \
|
fastfind \
|
||||||
mimetype \
|
mimetype \
|
||||||
webbrowserpersist \
|
webbrowserpersist \
|
||||||
progressDlg \
|
|
||||||
necko \
|
necko \
|
||||||
windowwatcher \
|
|
||||||
uriloader \
|
uriloader \
|
||||||
xpinstall \
|
|
||||||
xulapp \
|
xulapp \
|
||||||
embed_base \
|
embed_base \
|
||||||
content \
|
content \
|
||||||
|
@ -85,12 +79,14 @@ REQUIRES = \
|
||||||
locale \
|
locale \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
alerts \
|
|
||||||
url-classifier \
|
|
||||||
feeds \
|
feeds \
|
||||||
storage \
|
storage \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
ifdef ALERTS_SERVICE
|
||||||
|
REQUIRES += alerts
|
||||||
|
endif
|
||||||
|
|
||||||
EXPORTS = nsToolkitCompsCID.h
|
EXPORTS = nsToolkitCompsCID.h
|
||||||
|
|
||||||
CPPSRCS = nsToolkitCompsModule.cpp
|
CPPSRCS = nsToolkitCompsModule.cpp
|
||||||
|
@ -131,6 +127,7 @@ endif
|
||||||
ifdef MOZ_URL_CLASSIFIER
|
ifdef MOZ_URL_CLASSIFIER
|
||||||
SHARED_LIBRARY_LIBS += ../url-classifier/src/$(LIB_PREFIX)urlclassifier_s.$(LIB_SUFFIX)
|
SHARED_LIBRARY_LIBS += ../url-classifier/src/$(LIB_PREFIX)urlclassifier_s.$(LIB_SUFFIX)
|
||||||
EXTRA_DSO_LDOPTS += $(ZLIB_LIBS)
|
EXTRA_DSO_LDOPTS += $(ZLIB_LIBS)
|
||||||
|
REQUIRES += url-classifier
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifdef MOZ_FEEDS
|
ifdef MOZ_FEEDS
|
||||||
|
|
|
@ -56,7 +56,6 @@ REQUIRES = xpcom \
|
||||||
mimetype \
|
mimetype \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
progressDlg \
|
|
||||||
intl \
|
intl \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
webbrowserpersist \
|
webbrowserpersist \
|
||||||
|
@ -65,7 +64,6 @@ REQUIRES = xpcom \
|
||||||
embed_base \
|
embed_base \
|
||||||
alerts \
|
alerts \
|
||||||
storage \
|
storage \
|
||||||
xulapp \
|
|
||||||
exthandler \
|
exthandler \
|
||||||
docshell \
|
docshell \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
@ -77,6 +75,7 @@ CPPSRCS = \
|
||||||
ifndef GNU_CXX
|
ifndef GNU_CXX
|
||||||
ifeq ($(OS_ARCH),WINNT)
|
ifeq ($(OS_ARCH),WINNT)
|
||||||
CPPSRCS += nsDownloadScanner.cpp
|
CPPSRCS += nsDownloadScanner.cpp
|
||||||
|
REQUIRES += xulapp
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -53,7 +53,6 @@ REQUIRES = \
|
||||||
necko \
|
necko \
|
||||||
string \
|
string \
|
||||||
widget \
|
widget \
|
||||||
js \
|
|
||||||
dom \
|
dom \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
content \
|
content \
|
||||||
|
|
|
@ -52,9 +52,7 @@ IS_COMPONENT = 1
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
history \
|
|
||||||
docshell \
|
docshell \
|
||||||
rdf \
|
|
||||||
dom \
|
dom \
|
||||||
morkreader \
|
morkreader \
|
||||||
pref \
|
pref \
|
||||||
|
@ -67,17 +65,9 @@ REQUIRES = xpcom \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
autocomplete \
|
autocomplete \
|
||||||
storage \
|
storage \
|
||||||
uconv \
|
|
||||||
htmlparser \
|
|
||||||
content \
|
|
||||||
txmgr \
|
txmgr \
|
||||||
caps \
|
|
||||||
xpconnect \
|
|
||||||
js \
|
|
||||||
nkcache \
|
nkcache \
|
||||||
widget \
|
widget \
|
||||||
url-classifier \
|
|
||||||
microsummaries \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
|
|
|
@ -54,7 +54,6 @@ REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
autocomplete \
|
autocomplete \
|
||||||
uriloader \
|
|
||||||
dom \
|
dom \
|
||||||
layout \
|
layout \
|
||||||
docshell \
|
docshell \
|
||||||
|
@ -63,13 +62,9 @@ REQUIRES = \
|
||||||
necko \
|
necko \
|
||||||
widget \
|
widget \
|
||||||
content \
|
content \
|
||||||
view \
|
|
||||||
locale \
|
locale \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
intl \
|
|
||||||
pref \
|
pref \
|
||||||
windowwatcher \
|
|
||||||
toolkitcomps \
|
|
||||||
loginmgr \
|
loginmgr \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,6 @@ LIBRARY_NAME = exception_handler_s
|
||||||
REQUIRES = \
|
REQUIRES = \
|
||||||
xpcom \
|
xpcom \
|
||||||
string \
|
string \
|
||||||
xulapp \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
DIRS = \
|
DIRS = \
|
||||||
|
|
|
@ -46,7 +46,8 @@ include $(DEPTH)/config/autoconf.mk
|
||||||
|
|
||||||
PROGRAM = crashreporter$(BIN_SUFFIX)
|
PROGRAM = crashreporter$(BIN_SUFFIX)
|
||||||
DIST_PROGRAM = crashreporter$(BIN_SUFFIX)
|
DIST_PROGRAM = crashreporter$(BIN_SUFFIX)
|
||||||
REQUIRES = sender
|
REQUIRES = \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
LOCAL_INCLUDES = -I$(srcdir)/../google-breakpad/src
|
LOCAL_INCLUDES = -I$(srcdir)/../google-breakpad/src
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,10 @@ CPPSRCS = \
|
||||||
|
|
||||||
PROGRAM = updater$(BIN_SUFFIX)
|
PROGRAM = updater$(BIN_SUFFIX)
|
||||||
|
|
||||||
REQUIRES = libmar libbz2 string
|
REQUIRES = \
|
||||||
|
libmar \
|
||||||
|
libbz2 \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
LIBS += \
|
LIBS += \
|
||||||
$(DEPTH)/modules/libmar/src/$(LIB_PREFIX)mar.$(LIB_SUFFIX) \
|
$(DEPTH)/modules/libmar/src/$(LIB_PREFIX)mar.$(LIB_SUFFIX) \
|
||||||
|
@ -125,4 +128,5 @@ endif
|
||||||
ifeq ($(OS_ARCH),WINNT)
|
ifeq ($(OS_ARCH),WINNT)
|
||||||
# Pick up nsWindowsRestart.cpp
|
# Pick up nsWindowsRestart.cpp
|
||||||
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/xre
|
LOCAL_INCLUDES += -I$(topsrcdir)/toolkit/xre
|
||||||
|
REQUIRES += string
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -51,12 +51,10 @@ REQUIRES = \
|
||||||
appcomps \
|
appcomps \
|
||||||
toolkitcomps \
|
toolkitcomps \
|
||||||
appshell \
|
appshell \
|
||||||
appstartup \
|
|
||||||
chrome \
|
chrome \
|
||||||
content \
|
content \
|
||||||
docshell \
|
docshell \
|
||||||
dom \
|
dom \
|
||||||
layout \
|
|
||||||
embed_base \
|
embed_base \
|
||||||
embedcomponents \
|
embedcomponents \
|
||||||
extensions \
|
extensions \
|
||||||
|
@ -68,13 +66,11 @@ REQUIRES = \
|
||||||
profile \
|
profile \
|
||||||
string \
|
string \
|
||||||
uriloader \
|
uriloader \
|
||||||
layout \
|
|
||||||
widget \
|
widget \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
xpcom \
|
xpcom \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
xpinstall \
|
xpinstall \
|
||||||
xremoteservice \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ifdef MOZ_JPROF
|
ifdef MOZ_JPROF
|
||||||
|
|
|
@ -60,7 +60,6 @@ REQUIRES = xpcom \
|
||||||
content \
|
content \
|
||||||
layout \
|
layout \
|
||||||
view \
|
view \
|
||||||
xul \
|
|
||||||
necko \
|
necko \
|
||||||
locale \
|
locale \
|
||||||
pref \
|
pref \
|
||||||
|
@ -68,7 +67,6 @@ REQUIRES = xpcom \
|
||||||
exthandler \
|
exthandler \
|
||||||
appshell \
|
appshell \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
imglib2 \
|
imglib2 \
|
||||||
|
|
|
@ -46,7 +46,6 @@ MODULE = widget
|
||||||
LIBRARY_NAME = widgetsupport_s
|
LIBRARY_NAME = widgetsupport_s
|
||||||
LIBXUL_LIBRARY = 1
|
LIBXUL_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
|
||||||
gfx \
|
gfx \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,6 @@ REQUIRES = xpcom \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
lcms \
|
lcms \
|
||||||
thebes \
|
thebes \
|
||||||
cairo \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
DEFINES += -D_IMPL_NS_WIDGET -DUSE_TLS_FOR_TOOLKIT
|
DEFINES += -D_IMPL_NS_WIDGET -DUSE_TLS_FOR_TOOLKIT
|
||||||
|
|
|
@ -52,7 +52,6 @@ REQUIRES = xpcom \
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
|
||||||
docshell \
|
docshell \
|
||||||
appshell \
|
appshell \
|
||||||
appcomps \
|
appcomps \
|
||||||
|
|
|
@ -54,12 +54,9 @@ REQUIRES = xpcom \
|
||||||
widget \
|
widget \
|
||||||
gfx \
|
gfx \
|
||||||
docshell \
|
docshell \
|
||||||
appshell \
|
|
||||||
appcomps \
|
appcomps \
|
||||||
dom \
|
dom \
|
||||||
content \
|
content \
|
||||||
layout \
|
|
||||||
js \
|
|
||||||
uriloader \
|
uriloader \
|
||||||
pref \
|
pref \
|
||||||
webbrwsr \
|
webbrwsr \
|
||||||
|
|
|
@ -53,7 +53,6 @@ IS_COMPONENT = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
intl \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = nsAutoComplete.cpp
|
CPPSRCS = nsAutoComplete.cpp
|
||||||
|
|
|
@ -54,28 +54,12 @@ PACKAGE_VARS += MOZ_PHOENIX
|
||||||
|
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
content \
|
|
||||||
rdf \
|
rdf \
|
||||||
necko \
|
necko \
|
||||||
nkcache \
|
|
||||||
intl \
|
|
||||||
locale \
|
|
||||||
mork \
|
|
||||||
widget \
|
|
||||||
dom \
|
|
||||||
uriloader \
|
uriloader \
|
||||||
mimetype \
|
|
||||||
embed_base \
|
|
||||||
webbrowserpersist \
|
|
||||||
progressDlg \
|
|
||||||
pref \
|
|
||||||
docshell \
|
docshell \
|
||||||
webshell \
|
webshell \
|
||||||
appshell \
|
|
||||||
browser \
|
browser \
|
||||||
txmgr \
|
|
||||||
chardet \
|
|
||||||
autocomplete \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS = nsModule.cpp
|
CPPSRCS = nsModule.cpp
|
||||||
|
@ -96,7 +80,14 @@ endif
|
||||||
|
|
||||||
# Suite specific includes
|
# Suite specific includes
|
||||||
ifdef MOZ_SUITE
|
ifdef MOZ_SUITE
|
||||||
REQUIRES += downloadmanager
|
REQUIRES += \
|
||||||
|
downloadmanager \
|
||||||
|
intl \
|
||||||
|
mork \
|
||||||
|
widget \
|
||||||
|
mimetype \
|
||||||
|
autocomplete \
|
||||||
|
$(NULL)
|
||||||
|
|
||||||
SHARED_LIBRARY_LIBS += \
|
SHARED_LIBRARY_LIBS += \
|
||||||
../download-manager/src/$(LIB_PREFIX)downloadmanager_s.$(LIB_SUFFIX) \
|
../download-manager/src/$(LIB_PREFIX)downloadmanager_s.$(LIB_SUFFIX) \
|
||||||
|
|
|
@ -62,7 +62,6 @@ REQUIRES = xpcom \
|
||||||
webshell \
|
webshell \
|
||||||
uconv \
|
uconv \
|
||||||
pref \
|
pref \
|
||||||
uriloader \
|
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,6 @@ REQUIRES = xpcom \
|
||||||
uriloader \
|
uriloader \
|
||||||
mimetype \
|
mimetype \
|
||||||
necko \
|
necko \
|
||||||
progressDlg \
|
|
||||||
intl \
|
intl \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
webbrowserpersist \
|
webbrowserpersist \
|
||||||
|
@ -63,7 +62,6 @@ REQUIRES = xpcom \
|
||||||
profile \
|
profile \
|
||||||
widget \
|
widget \
|
||||||
pref \
|
pref \
|
||||||
appcomps \
|
|
||||||
embed_base \
|
embed_base \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -52,15 +52,10 @@ IS_COMPONENT = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
uconv \
|
uconv \
|
||||||
unicharutil \
|
|
||||||
locale \
|
locale \
|
||||||
intl \
|
|
||||||
rdf \
|
rdf \
|
||||||
pref \
|
pref \
|
||||||
necko \
|
necko \
|
||||||
dom \
|
|
||||||
windowwatcher \
|
|
||||||
appshell \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CPPSRCS= \
|
CPPSRCS= \
|
||||||
|
|
Загрузка…
Ссылка в новой задаче