зеркало из https://github.com/mozilla/pjs.git
Clean up REQUIRES lines.
This commit is contained in:
Родитель
08a3c334bb
Коммит
25694acfa3
|
@ -32,7 +32,6 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
gfx \
|
gfx \
|
||||||
layout \
|
layout \
|
||||||
uriloader \
|
|
||||||
widget \
|
widget \
|
||||||
dom \
|
dom \
|
||||||
js \
|
js \
|
||||||
|
|
|
@ -39,7 +39,6 @@ REQUIRES = xpcom \
|
||||||
caps \
|
caps \
|
||||||
widget \
|
widget \
|
||||||
appshell \
|
appshell \
|
||||||
rdf \
|
|
||||||
xpconnect \
|
xpconnect \
|
||||||
jsconsole \
|
jsconsole \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -1,160 +0,0 @@
|
||||||
#
|
|
||||||
# The contents of this file are subject to the Netscape 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/NPL/
|
|
||||||
#
|
|
||||||
# Software distributed under the License is distributed on an "AS
|
|
||||||
# IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
||||||
# implied. See the License for the specific language governing
|
|
||||||
# rights and limitations under the License.
|
|
||||||
#
|
|
||||||
# The Original Code is mozilla.org code.
|
|
||||||
#
|
|
||||||
# The Initial Developer of the Original Code is Netscape
|
|
||||||
# Communications Corporation. Portions created by Netscape are
|
|
||||||
# Copyright (C) 1998 Netscape Communications Corporation. All
|
|
||||||
# Rights Reserved.
|
|
||||||
#
|
|
||||||
# Contributor(s):
|
|
||||||
#
|
|
||||||
|
|
||||||
DEPTH = ../..
|
|
||||||
topsrcdir = @top_srcdir@
|
|
||||||
srcdir = @srcdir@
|
|
||||||
VPATH = @srcdir@
|
|
||||||
|
|
||||||
include $(DEPTH)/config/autoconf.mk
|
|
||||||
|
|
||||||
MODULE = editor
|
|
||||||
LIBRARY_NAME = editor
|
|
||||||
EXPORT_LIBRARY = 1
|
|
||||||
IS_COMPONENT = 1
|
|
||||||
MODULE_NAME = nsEditorModule
|
|
||||||
REQUIRES = xpcom \
|
|
||||||
string \
|
|
||||||
dom \
|
|
||||||
locale \
|
|
||||||
gfx \
|
|
||||||
layout \
|
|
||||||
content \
|
|
||||||
uriloader \
|
|
||||||
widget \
|
|
||||||
txmgr \
|
|
||||||
htmlparser \
|
|
||||||
necko \
|
|
||||||
pref \
|
|
||||||
view \
|
|
||||||
appshell \
|
|
||||||
rdf \
|
|
||||||
webshell \
|
|
||||||
timer \
|
|
||||||
txtsvc \
|
|
||||||
intl \
|
|
||||||
lwbrk \
|
|
||||||
docshell \
|
|
||||||
chrome \
|
|
||||||
appcomps \
|
|
||||||
xuldoc \
|
|
||||||
windowwatcher \
|
|
||||||
exthandler \
|
|
||||||
mimetype \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
CPPSRCS = \
|
|
||||||
nsAOLCiter.cpp \
|
|
||||||
ChangeAttributeTxn.cpp \
|
|
||||||
CreateElementTxn.cpp \
|
|
||||||
DeleteElementTxn.cpp \
|
|
||||||
DeleteRangeTxn.cpp \
|
|
||||||
DeleteTextTxn.cpp \
|
|
||||||
EditAggregateTxn.cpp \
|
|
||||||
EditTxn.cpp \
|
|
||||||
IMETextTxn.cpp \
|
|
||||||
InsertElementTxn.cpp \
|
|
||||||
InsertTextTxn.cpp \
|
|
||||||
JoinElementTxn.cpp \
|
|
||||||
nsEditorCommands.cpp \
|
|
||||||
nsComposerCommands.cpp \
|
|
||||||
nsEditorController.cpp \
|
|
||||||
nsComposerController.cpp \
|
|
||||||
nsEditor.cpp \
|
|
||||||
nsEditorEventListeners.cpp \
|
|
||||||
nsEditorUtils.cpp \
|
|
||||||
nsEditProperty.cpp \
|
|
||||||
nsTextEditUtils.cpp \
|
|
||||||
nsHTMLEditUtils.cpp \
|
|
||||||
nsInternetCiter.cpp \
|
|
||||||
nsPlaintextDataTransfer.cpp \
|
|
||||||
nsPlaintextEditor.cpp \
|
|
||||||
nsSelectionState.cpp \
|
|
||||||
nsStyleSheetTxns.cpp \
|
|
||||||
nsTextEditRules.cpp \
|
|
||||||
nsWrapUtils.cpp \
|
|
||||||
PlaceholderTxn.cpp \
|
|
||||||
SplitElementTxn.cpp \
|
|
||||||
TransactionFactory.cpp \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
ifdef IBMBIDI
|
|
||||||
CPPSRCS += \
|
|
||||||
nsTextEditRulesBidi.cpp \
|
|
||||||
$(NULL)
|
|
||||||
endif
|
|
||||||
|
|
||||||
# MOZ_BUILD_PLAINTEXT_EDITOR_CORE_ONLY=1
|
|
||||||
|
|
||||||
ifdef MOZ_BUILD_PLAINTEXT_EDITOR_CORE_ONLY
|
|
||||||
|
|
||||||
# We're only building the Core PlainText Editor Source so just include
|
|
||||||
# the plain text registration file.
|
|
||||||
|
|
||||||
CPPSRCS += nsTextEditorReg.cpp
|
|
||||||
|
|
||||||
DEFINES += -DMOZILLA_PLAINTEXT_EDITOR_ONLY
|
|
||||||
|
|
||||||
else
|
|
||||||
|
|
||||||
# Building the full blown HTML Editor so add it's source files and objects:
|
|
||||||
|
|
||||||
CPPSRCS += nsEditorParserObserver.cpp \
|
|
||||||
nsEditorRegistration.cpp \
|
|
||||||
nsEditorShell.cpp \
|
|
||||||
nsEditorShellMouseListener.cpp \
|
|
||||||
nsEditorService.cpp \
|
|
||||||
nsHTMLDataTransfer.cpp \
|
|
||||||
nsHTMLEditor.cpp \
|
|
||||||
nsHTMLEditorStyle.cpp \
|
|
||||||
nsHTMLEditRules.cpp \
|
|
||||||
nsInterfaceState.cpp \
|
|
||||||
nsHTMLURIRefObject.cpp \
|
|
||||||
nsTableEditor.cpp \
|
|
||||||
nsWSRunObject.cpp \
|
|
||||||
TextEditorTest.cpp \
|
|
||||||
TypeInState.cpp \
|
|
||||||
SetDocTitleTxn.cpp \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
# Enable Editor API Logging!
|
|
||||||
ENABLE_EDITOR_API_LOG=1
|
|
||||||
|
|
||||||
ifdef ENABLE_EDITOR_API_LOG
|
|
||||||
|
|
||||||
CPPSRCS += nsHTMLEditorLog.cpp \
|
|
||||||
nsEditorTxnLog.cpp \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
DEFINES += -DENABLE_EDITOR_API_LOG=1
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
endif
|
|
||||||
|
|
||||||
EXTRA_DSO_LDOPTS = \
|
|
||||||
$(MOZ_NECKO_UTIL_LIBS) \
|
|
||||||
$(MOZ_COMPONENT_LIBS) \
|
|
||||||
$(MOZ_JS_LIBS) \
|
|
||||||
$(NULL)
|
|
||||||
|
|
||||||
include $(topsrcdir)/config/rules.mk
|
|
||||||
|
|
|
@ -35,14 +35,12 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
layout \
|
layout \
|
||||||
locale \
|
|
||||||
content \
|
content \
|
||||||
uriloader \
|
uriloader \
|
||||||
txmgr \
|
txmgr \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
view \
|
|
||||||
webshell \
|
webshell \
|
||||||
timer \
|
timer \
|
||||||
intl \
|
intl \
|
||||||
|
|
|
@ -35,19 +35,12 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
layout \
|
layout \
|
||||||
content \
|
content \
|
||||||
uriloader \
|
|
||||||
txmgr \
|
txmgr \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
view \
|
view \
|
||||||
appshell \
|
appshell \
|
||||||
rdf \
|
|
||||||
webshell \
|
|
||||||
timer \
|
|
||||||
txtsvc \
|
|
||||||
intl \
|
|
||||||
docshell \
|
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
|
|
|
@ -40,23 +40,11 @@ REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
dom \
|
dom \
|
||||||
layout \
|
layout \
|
||||||
locale \
|
|
||||||
content \
|
content \
|
||||||
uriloader \
|
|
||||||
txmgr \
|
txmgr \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
|
||||||
pref \
|
|
||||||
view \
|
|
||||||
webshell \
|
|
||||||
timer \
|
|
||||||
intl \
|
|
||||||
docshell \
|
|
||||||
gfx \
|
|
||||||
widget \
|
|
||||||
appshell \
|
appshell \
|
||||||
xuldoc \
|
xuldoc \
|
||||||
txtsvc \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
# MOZ_BUILD_PLAINTEXT_EDITOR_CORE_ONLY=1
|
# MOZ_BUILD_PLAINTEXT_EDITOR_CORE_ONLY=1
|
||||||
|
|
|
@ -35,16 +35,10 @@ REQUIRES = xpcom \
|
||||||
layout \
|
layout \
|
||||||
locale \
|
locale \
|
||||||
content \
|
content \
|
||||||
uriloader \
|
|
||||||
txmgr \
|
txmgr \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
view \
|
|
||||||
webshell \
|
|
||||||
timer \
|
|
||||||
intl \
|
|
||||||
docshell \
|
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -36,18 +36,12 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
layout \
|
layout \
|
||||||
content \
|
content \
|
||||||
uriloader \
|
|
||||||
txmgr \
|
txmgr \
|
||||||
htmlparser \
|
htmlparser \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
pref \
|
||||||
view \
|
view \
|
||||||
webshell \
|
|
||||||
timer \
|
|
||||||
txtsvc \
|
|
||||||
intl \
|
|
||||||
lwbrk \
|
lwbrk \
|
||||||
docshell \
|
|
||||||
gfx \
|
gfx \
|
||||||
widget \
|
widget \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
|
@ -35,11 +35,8 @@ REQUIRES = xpcom \
|
||||||
view \
|
view \
|
||||||
dom \
|
dom \
|
||||||
necko \
|
necko \
|
||||||
rdf \
|
|
||||||
appshell \
|
|
||||||
uriloader \
|
uriloader \
|
||||||
gfx \
|
gfx \
|
||||||
editor \
|
|
||||||
intl \
|
intl \
|
||||||
chrome \
|
chrome \
|
||||||
embedcomponents \
|
embedcomponents \
|
||||||
|
|
|
@ -32,7 +32,6 @@ LIBRARY_NAME = gkgfx
|
||||||
EXPORT_LIBRARY = 1
|
EXPORT_LIBRARY = 1
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
content \
|
|
||||||
widget \
|
widget \
|
||||||
locale \
|
locale \
|
||||||
view \
|
view \
|
||||||
|
|
|
@ -33,7 +33,6 @@ REQUIRES = xpcom \
|
||||||
uconv \
|
uconv \
|
||||||
unicharutil \
|
unicharutil \
|
||||||
necko \
|
necko \
|
||||||
intl \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
|
||||||
|
|
|
@ -40,7 +40,6 @@ REQUIRES = xpcom \
|
||||||
locale \
|
locale \
|
||||||
chardet \
|
chardet \
|
||||||
necko \
|
necko \
|
||||||
pref \
|
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
CSRCS = \
|
CSRCS = \
|
||||||
|
|
|
@ -37,7 +37,6 @@ REQUIRES = xpcom \
|
||||||
js \
|
js \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
widget \
|
widget \
|
||||||
appshell \
|
|
||||||
pref \
|
pref \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -48,7 +48,6 @@ MODULE_NAME = xpconnect
|
||||||
REQUIRES = xpcom \
|
REQUIRES = xpcom \
|
||||||
string \
|
string \
|
||||||
js \
|
js \
|
||||||
dom \
|
|
||||||
caps \
|
caps \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,6 @@ REQUIRES = xpcom \
|
||||||
docshell \
|
docshell \
|
||||||
dom \
|
dom \
|
||||||
necko \
|
necko \
|
||||||
rdf \
|
|
||||||
widget \
|
widget \
|
||||||
webbrwsr \
|
webbrwsr \
|
||||||
uconv \
|
uconv \
|
||||||
|
|
|
@ -45,7 +45,6 @@ REQUIRES = xpcom \
|
||||||
pref \
|
pref \
|
||||||
prefmigr \
|
prefmigr \
|
||||||
appshell \
|
appshell \
|
||||||
rdf \
|
|
||||||
uconv \
|
uconv \
|
||||||
appcomps \
|
appcomps \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
|
|
|
@ -30,7 +30,7 @@ MODULE = xpcom
|
||||||
XPIDL_MODULE = xpcom_glue
|
XPIDL_MODULE = xpcom_glue
|
||||||
LIBRARY_NAME = xpcomglue
|
LIBRARY_NAME = xpcomglue
|
||||||
|
|
||||||
REQUIRES = string
|
REQUIRES = $(NULL)
|
||||||
|
|
||||||
CPPSRCS = \
|
CPPSRCS = \
|
||||||
nsCOMPtr.cpp \
|
nsCOMPtr.cpp \
|
||||||
|
|
|
@ -39,10 +39,8 @@ REQUIRES = xpcom \
|
||||||
appshell \
|
appshell \
|
||||||
gfx \
|
gfx \
|
||||||
chrome \
|
chrome \
|
||||||
rdf \
|
|
||||||
xpinstall \
|
xpinstall \
|
||||||
uriloader \
|
uriloader \
|
||||||
editor \
|
|
||||||
view \
|
view \
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
embed_base \
|
embed_base \
|
||||||
|
|
|
@ -48,7 +48,6 @@ REQUIRES = xpcom \
|
||||||
pref \
|
pref \
|
||||||
editor \
|
editor \
|
||||||
appcomps \
|
appcomps \
|
||||||
rdf \
|
|
||||||
webbrwsr \
|
webbrwsr \
|
||||||
uconv \
|
uconv \
|
||||||
chardet \
|
chardet \
|
||||||
|
|
|
@ -51,7 +51,6 @@ REQUIRES = xpcom \
|
||||||
libreg \
|
libreg \
|
||||||
js \
|
js \
|
||||||
pref \
|
pref \
|
||||||
appshell \
|
|
||||||
widget \
|
widget \
|
||||||
layout \
|
layout \
|
||||||
content \
|
content \
|
||||||
|
@ -59,7 +58,6 @@ REQUIRES = xpcom \
|
||||||
xpconnect \
|
xpconnect \
|
||||||
docshell \
|
docshell \
|
||||||
dom \
|
dom \
|
||||||
mozcomps \
|
|
||||||
windowwatcher \
|
windowwatcher \
|
||||||
$(ZLIB_REQUIRES) \
|
$(ZLIB_REQUIRES) \
|
||||||
$(NULL)
|
$(NULL)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче