summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-09 20:10:06 +0000
committerpkasting@chromium.org <pkasting@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-09 20:10:06 +0000
commit4a3305da6c155d23631c7c8371f7842325b88d17 (patch)
treedc8d86b27f34d6f6dbbfb5ffcd999651bd40b718
parent99e5fddb8c190b868a2d8f2ba459e7cc24814bab (diff)
downloadchromium_src-4a3305da6c155d23631c7c8371f7842325b88d17.zip
chromium_src-4a3305da6c155d23631c7c8371f7842325b88d17.tar.gz
chromium_src-4a3305da6c155d23631c7c8371f7842325b88d17.tar.bz2
Remove this file that the vcprojs don't seem to reference.
Review URL: http://codereview.chromium.org/7028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3122 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--webkit/build/WebCore/DerivedSources.make223
1 files changed, 0 insertions, 223 deletions
diff --git a/webkit/build/WebCore/DerivedSources.make b/webkit/build/WebCore/DerivedSources.make
deleted file mode 100644
index 21d038eb..0000000
--- a/webkit/build/WebCore/DerivedSources.make
+++ /dev/null
@@ -1,223 +0,0 @@
-# Copyright (C) 2006, 2007 Apple Inc. All rights reserved.
-# Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com>
-#
-# Redistribution and use in source and binary forms, with or without
-# modification, are permitted provided that the following conditions
-# are met:
-#
-# 1. Redistributions of source code must retain the above copyright
-# notice, this list of conditions and the following disclaimer.
-# 2. Redistributions in binary form must reproduce the above copyright
-# notice, this list of conditions and the following disclaimer in the
-# documentation and/or other materials provided with the distribution.
-# 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
-# its contributors may be used to endorse or promote products derived
-# from this software without specific prior written permission.
-#
-# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
-# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
-# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
-# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
-# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-VPATH = \
- $(WebCore) \
- $(WebCore)/dom \
-
-.PHONY : all
-
-all : \
- CSSGrammar.cpp \
- CSSPropertyNames.h \
- CSSValueKeywords.h \
- ColorData.c \
- DocTypeStrings.cpp \
- HTMLEntityNames.c \
- HTMLEntityCodes.c \
- SVGNames.cpp \
- HTMLNames.cpp \
- UserAgentStyleSheets.h \
- XLinkNames.cpp \
- XMLNames.cpp \
- XPathGrammar.cpp \
- tokenizer.cpp \
- JSNode.h \
-
-# CSS property names and value keywords
-
-CSSPropertyNames.h : css/CSSPropertyNames.in css/SVGCSSPropertyNames.in
- # if sort $< $(WebCore)/css/SVGCSSPropertyNames.in | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi
- cat $< $(WebCore)/css/SVGCSSPropertyNames.in > CSSPropertyNames.in
- perl "$(WebCore)/css/makeprop.pl"
-
-CSSValueKeywords.h : css/CSSValueKeywords.in css/SVGCSSValueKeywords.in
- # Lower case all the values, as CSS values are case-insensitive
- perl -ne 'print lc' $(WebCore)/css/SVGCSSValueKeywords.in > SVGCSSValueKeywords.in
- # if sort $< SVGCSSValueKeywords.in | uniq -d | grep -E '^[^#]'; then echo 'Duplicate value!'; exit 1; fi
- cat $< SVGCSSValueKeywords.in > CSSValueKeywords.in
- perl "$(WebCore)/css/makevalues.pl"
-
-# DOCTYPE strings
-
-DocTypeStrings.cpp : html/DocTypeStrings.gperf
- gperf -CEot -L ANSI-C -k "*" -N findDoctypeEntry -F ,PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards $< > $@
-
-# HTML entity names
-
-HTMLEntityNames.c : html/HTMLEntityNames.gperf
- gperf -a -L ANSI-C -C -G -c -o -t -k '*' -N findEntity -D -s 2 $< > $@
-
-HTMLEntityCodes.c : html/HTMLEntityNames.gperf
- perl $(WebCore)/../../../webkit/build/WebCore/generate_entitycodes.pl $< > $@
-
-# color names
-
-ColorData.c : platform/ColorData.gperf
- gperf -CDEot -L ANSI-C -k '*' -N findColor -D -s 2 $< > $@
-
-# CSS tokenizer
-
-tokenizer.cpp : css/tokenizer.flex css/maketokenizer
- flex -t $< | perl $(WebCore)/css/maketokenizer > $@
-
-# CSS grammar
-# NOTE: older versions of bison do not inject an inclusion guard, so we do it
-
-CSSGrammar.cpp : css/CSSGrammar.y
- bison -d -p cssyy $< -o $@
- touch CSSGrammar.cpp.h
- touch CSSGrammar.hpp
- echo '#ifndef CSSGrammar_h' > CSSGrammar.h
- echo '#define CSSGrammar_h' >> CSSGrammar.h
- cat CSSGrammar.cpp.h CSSGrammar.hpp >> CSSGrammar.h
- echo '#endif' >> CSSGrammar.h
- rm -f CSSGrammar.cpp.h CSSGrammar.hpp
-
-# XPath grammar
-# NOTE: older versions of bison do not inject an inclusion guard, so we do it
-
-XPathGrammar.cpp : xml/XPathGrammar.y $(PROJECT_FILE)
- bison -d -p xpathyy $< -o $@
- touch XPathGrammar.cpp.h
- touch XPathGrammar.hpp
- echo '#ifndef XPathGrammar_h' > XPathGrammar.h
- echo '#define XPathGrammar_h' >> XPathGrammar.h
- cat XPathGrammar.cpp.h XPathGrammar.hpp >> XPathGrammar.h
- echo '#endif' >> XPathGrammar.h
- rm -f XPathGrammar.cpp.h XPathGrammar.hpp
-
-# user agent style sheets
-
-USER_AGENT_STYLE_SHEETS = $(WebCore)/css/view-source.css $(WebCore)/css/svg.css
-UserAgentStyleSheets.h : css/make-css-file-arrays.pl $(USER_AGENT_STYLE_SHEETS) $(WebCore)/css/html4.css $(PORTROOT)/css/html4-overrides.css $(PORTROOT)/css/quirks-overrides.css
- cat $(WebCore)/css/html4.css $(PORTROOT)/css/html4-overrides.css > $(DerivedSourcesDir)/html4.css
- cat $(WebCore)/css/quirks.css $(PORTROOT)/css/quirks-overrides.css > $(DerivedSourcesDir)/quirks.css
- perl $< $@ UserAgentStyleSheetsData.cpp $(DerivedSourcesDir)/html4.css $(DerivedSourcesDir)/quirks.css $(USER_AGENT_STYLE_SHEETS)
-
-# HTML tag and attribute names
-
-ifeq ($(findstring ENABLE_VIDEO,$(FEATURE_DEFINES)), ENABLE_VIDEO)
- HTML_FLAGS := $(HTML_FLAGS) ENABLE_VIDEO=1
-endif
-
-ifdef HTML_FLAGS
-
-HTMLNames.cpp : dom/make_names.pl html/HTMLTagNames.in html/HTMLAttributeNames.in
- perl -I $(WebCore)/bindings/scripts $< --tags $(WebCore)/html/HTMLTagNames.in --attrs $(WebCore)/html/HTMLAttributeNames.in --extraDefines "$(HTML_FLAGS)"
-
-else
-
-HTMLNames.cpp : dom/make_names.pl html/HTMLTagNames.in html/HTMLAttributeNames.in
- perl -I $(WebCore)/bindings/scripts $< --tags $(WebCore)/html/HTMLTagNames.in --attrs $(WebCore)/html/HTMLAttributeNames.in
-
-endif
-
-XMLNames.cpp : dom/make_names.pl xml/xmlattrs.in
- perl -I $(WebCore)/bindings/scripts $< --attrs $(WebCore)/xml/xmlattrs.in
-
-# --------
-
-ifeq ($(findstring ENABLE_SVG,$(FEATURE_DEFINES)), ENABLE_SVG)
-
-WEBCORE_EXPORT_DEPENDENCIES := $(WEBCORE_EXPORT_DEPENDENCIES) WebCore.SVG.exp
-
-ifeq ($(findstring ENABLE_SVG_USE,$(FEATURE_DEFINES)), ENABLE_SVG_USE)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_USE=1
-endif
-
-ifeq ($(findstring ENABLE_SVG_FONTS,$(FEATURE_DEFINES)), ENABLE_SVG_FONTS)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_FONTS=1
-endif
-
-ifeq ($(findstring ENABLE_SVG_FILTERS,$(FEATURE_DEFINES)), ENABLE_SVG_FILTERS)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_FILTERS=1
- WEBCORE_EXPORT_DEPENDENCIES := $(WEBCORE_EXPORT_DEPENDENCIES) WebCore.SVG.Filters.exp
-endif
-
-ifeq ($(findstring ENABLE_SVG_AS_IMAGE,$(FEATURE_DEFINES)), ENABLE_SVG_AS_IMAGE)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_AS_IMAGE=1
-endif
-
-ifeq ($(findstring ENABLE_SVG_ANIMATION,$(FEATURE_DEFINES)), ENABLE_SVG_ANIMATION)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_ANIMATION=1
- WEBCORE_EXPORT_DEPENDENCIES := $(WEBCORE_EXPORT_DEPENDENCIES) WebCore.SVG.Animation.exp
-endif
-
-ifeq ($(findstring ENABLE_SVG_FOREIGN_OBJECT,$(FEATURE_DEFINES)), ENABLE_SVG_FOREIGN_OBJECT)
- SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_FOREIGN_OBJECT=1
- WEBCORE_EXPORT_DEPENDENCIES := $(WEBCORE_EXPORT_DEPENDENCIES) WebCore.SVG.ForeignObject.exp
-endif
-
-# SVG tag and attribute names (need to pass an extra flag if svg experimental features are enabled)
-
-ifdef SVG_FLAGS
-
-SVGElementFactory.cpp SVGNames.cpp : dom/make_names.pl svg/svgtags.in svg/svgattrs.in
- perl -I $(WebCore)/bindings/scripts $< --tags $(WebCore)/svg/svgtags.in --attrs $(WebCore)/svg/svgattrs.in --extraDefines "$(SVG_FLAGS)"
-else
-
-SVGElementFactory.cpp SVGNames.cpp : dom/make_names.pl svg/svgtags.in svg/svgattrs.in
- perl -I $(WebCore)/bindings/scripts $< --tags $(WebCore)/svg/svgtags.in --attrs $(WebCore)/svg/svgattrs.in
-
-endif
-
-JSSVGElementWrapperFactory.cpp : SVGNames.cpp
-
-XLinkNames.cpp : dom/make_names.pl svg/xlinkattrs.in
- perl -I $(WebCore)/bindings/scripts $< --attrs $(WebCore)/svg/xlinkattrs.in
-
-else
-
-SVGElementFactory.cpp :
- echo > $@
-
-SVGNames.cpp :
- echo > $@
-
-XLinkNames.cpp :
- echo > $@
-
-# This file is autogenerated by make_names.pl when SVG is enabled.
-
-JSSVGElementWrapperFactory.cpp :
- echo > $@
-
-endif
-
-# new-style JavaScript bindings
-
-JS_BINDINGS_SCRIPTS = \
- bindings/scripts/CodeGenerator.pm \
- bindings/scripts/CodeGeneratorJS.pm \
- bindings/scripts/IDLParser.pm \
- bindings/scripts/IDLStructure.pm \
- bindings/scripts/generate-bindings.pl \
-#
-
-JSNode.h : Node.idl $(JS_BINDINGS_SCRIPTS)
- perl -I $(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/generate-bindings.pl --defines "$(FEATURE_DEFINES) LANGUAGE_JAVASCRIPT" --generator JS --include dom --include html --include css --include page --include xml --include svg --include bingings/js --outputdir . $<