diff options
author | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-27 00:20:51 +0000 |
---|---|---|
committer | initial.commit <initial.commit@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-07-27 00:20:51 +0000 |
commit | f5b16fed647e941aa66933178da85db2860d639b (patch) | |
tree | f00e9856c04aad3b558a140955e7674add33f051 /webkit/build/WebCore | |
parent | 920c091ac3ee15079194c82ae8a7a18215f3f23c (diff) | |
download | chromium_src-f5b16fed647e941aa66933178da85db2860d639b.zip chromium_src-f5b16fed647e941aa66933178da85db2860d639b.tar.gz chromium_src-f5b16fed647e941aa66933178da85db2860d639b.tar.bz2 |
Add webkit to the repository.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/WebCore')
-rw-r--r-- | webkit/build/WebCore/DerivedSources.make | 180 | ||||
-rw-r--r-- | webkit/build/WebCore/SConscript | 704 | ||||
-rw-r--r-- | webkit/build/WebCore/WebCore.vcproj | 5759 | ||||
-rw-r--r-- | webkit/build/WebCore/generate_entitycodes.pl | 79 | ||||
-rw-r--r-- | webkit/build/WebCore/webcore.vsprops | 13 |
5 files changed, 6735 insertions, 0 deletions
diff --git a/webkit/build/WebCore/DerivedSources.make b/webkit/build/WebCore/DerivedSources.make new file mode 100644 index 0000000..ffb8b7a --- /dev/null +++ b/webkit/build/WebCore/DerivedSources.make @@ -0,0 +1,180 @@ +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)/../../../webkit/pending/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)/../../../webkit/pending/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 + +HTMLNames.cpp : dom/make_names.pl html/HTMLTagNames.in html/HTMLAttributeNames.in + perl $< --tags $(WebCore)/html/HTMLTagNames.in --attrs $(WebCore)/html/HTMLAttributeNames.in \ + --namespace HTML --namespacePrefix xhtml --cppNamespace WebCore --namespaceURI "http://www.w3.org/1999/xhtml" --attrsNullNamespace --output . + +XMLNames.cpp : dom/make_names.pl xml/xmlattrs.in + perl $< --attrs $(WebCore)/xml/xmlattrs.in \ + --namespace XML --cppNamespace WebCore --namespaceURI "http://www.w3.org/XML/1998/namespace" --output . + +ifeq ($(findstring ENABLE_SVG,$(FEATURE_DEFINES)), ENABLE_SVG) + +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 +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 + endif + +ifeq ($(findstring ENABLE_SVG_FOREIGN_OBJECT,$(FEATURE_DEFINES)), ENABLE_SVG_FOREIGN_OBJECT) + SVG_FLAGS := $(SVG_FLAGS) ENABLE_SVG_FOREIGN_OBJECT=1 +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 $< --tags $(WebCore)/svg/svgtags.in --attrs $(WebCore)/svg/svgattrs.in --extraDefines "$(SVG_FLAGS)" \ + --namespace SVG --cppNamespace WebCore --namespaceURI "http://www.w3.org/2000/svg" --factory --attrsNullNamespace --output . +else +SVGElementFactory.cpp SVGNames.cpp : dom/make_names.pl svg/svgtags.in svg/svgattrs.in + perl $< --tags $(WebCore)/svg/svgtags.in --attrs $(WebCore)/svg/svgattrs.in \ + --namespace SVG --cppNamespace WebCore --namespaceURI "http://www.w3.org/2000/svg" --factory --attrsNullNamespace --output . + +endif + +XLinkNames.cpp : dom/make_names.pl svg/xlinkattrs.in + perl $< --attrs $(WebCore)/svg/xlinkattrs.in \ + --namespace XLink --cppNamespace WebCore --namespaceURI "http://www.w3.org/1999/xlink" --output . + +# SVG CSS property names and value keywords + +else + +SVGElementFactory.cpp : + echo > SVGElementFactory.cpp + +SVGNames.cpp : + echo > SVGNames.cpp + +XLinkNames.cpp : + echo > XLinkNames.cpp + +ksvgcssproperties.h : + echo > ksvgcssproperties.h + +ksvgcssvalues.h : + echo > ksvgcssvalues.h + +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 . $< diff --git a/webkit/build/WebCore/SConscript b/webkit/build/WebCore/SConscript new file mode 100644 index 0000000..33ed052 --- /dev/null +++ b/webkit/build/WebCore/SConscript @@ -0,0 +1,704 @@ +# Copyright 2008, Google Inc.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are
+# met:
+#
+# * Redistributions of source code must retain the above copyright
+# notice, this list of conditions and the following disclaimer.
+# * 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.
+# * Neither the name of Google Inc. 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 THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT
+# OWNER OR 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.
+
+Import('env')
+
+env = env.Clone()
+
+env.Append(
+ CCFLAGS = [
+ '/TP',
+
+ '/wd4138',
+ '/wd4244',
+ '/wd4291',
+ '/wd4305',
+ '/wd4521',
+ '/wd4099',
+ '/wd4800',
+ '/wd4503',
+ '/wd4819',
+ ],
+)
+
+
+env_p = env.Clone()
+env_p.Append(CCFLAGS='/Ylwebcore')
+pch, obj = env_p.PCH('../precompiled_webkit.cc')
+env['PCH'] = pch
+env['PCHSTOP'] = 'precompiled_webkit.h'
+env.Append(CCPCHFLAGS = ['/FIprecompiled_webkit.h'])
+
+
+input_files = [
+ '$PENDING_DIR/JSSVGLazyEventListener.cpp',
+
+ '$WEBCORE_DIR/css/CSSBorderImageValue.cpp',
+ '$WEBCORE_DIR/css/CSSCharsetRule.cpp',
+ '$WEBCORE_DIR/css/CSSComputedStyleDeclaration.cpp',
+ '$WEBCORE_DIR/css/CSSCursorImageValue.cpp',
+ '$WEBCORE_DIR/css/CSSFontFace.cpp',
+ '$WEBCORE_DIR/css/CSSFontFaceRule.cpp',
+ '$WEBCORE_DIR/css/CSSFontFaceSource.cpp',
+ '$WEBCORE_DIR/css/CSSFontFaceSrcValue.cpp',
+ '$PENDING_DIR/CSSFontSelector.cpp',
+ '$WEBCORE_DIR/css/CSSHelper.cpp',
+ '$WEBCORE_DIR/css/CSSImageValue.cpp',
+ '$WEBCORE_DIR/css/CSSImportRule.cpp',
+ '$WEBCORE_DIR/css/CSSInheritedValue.cpp',
+ '$WEBCORE_DIR/css/CSSInitialValue.cpp',
+ '$WEBCORE_DIR/css/CSSMediaRule.cpp',
+ '$WEBCORE_DIR/css/CSSMutableStyleDeclaration.cpp',
+ '$WEBCORE_DIR/css/CSSPageRule.cpp',
+ '$PENDING_DIR/CSSParser.cpp',
+ '$WEBCORE_DIR/css/CSSPrimitiveValue.cpp',
+ '$WEBCORE_DIR/css/CSSProperty.cpp',
+ '$WEBCORE_DIR/css/CSSRule.cpp',
+ '$WEBCORE_DIR/css/CSSRuleList.cpp',
+ '$WEBCORE_DIR/css/CSSSegmentedFontFace.cpp',
+ '$WEBCORE_DIR/css/CSSSelector.cpp',
+ '$WEBCORE_DIR/css/CSSStyleDeclaration.cpp',
+ '$WEBCORE_DIR/css/CSSStyleRule.cpp',
+ '$PENDING_DIR/CSSStyleSelector.cpp',
+ '$WEBCORE_DIR/css/CSSStyleSheet.cpp',
+ '$WEBCORE_DIR/css/CSSTimingFunctionValue.cpp',
+ '$WEBCORE_DIR/css/CSSTransformValue.cpp',
+ '$WEBCORE_DIR/css/CSSUnicodeRangeValue.cpp',
+ '$WEBCORE_DIR/css/CSSValueList.cpp',
+ '$WEBCORE_DIR/css/FontFamilyValue.cpp',
+ '$WEBCORE_DIR/css/FontValue.cpp',
+ '$WEBCORE_DIR/css/MediaFeatureNames.cpp',
+ '$WEBCORE_DIR/css/MediaList.cpp',
+ '$WEBCORE_DIR/css/MediaQuery.cpp',
+ '$WEBCORE_DIR/css/MediaQueryEvaluator.cpp',
+ '$WEBCORE_DIR/css/MediaQueryExp.cpp',
+ '$WEBCORE_DIR/css/ShadowValue.cpp',
+ '$WEBCORE_DIR/css/StyleBase.cpp',
+ '$WEBCORE_DIR/css/StyleList.cpp',
+ '$WEBCORE_DIR/css/StyleSheet.cpp',
+ '$WEBCORE_DIR/css/StyleSheetList.cpp',
+ '$WEBCORE_DIR/css/SVGCSSComputedStyleDeclaration.cpp',
+ '$WEBCORE_DIR/css/SVGCSSParser.cpp',
+ '$WEBCORE_DIR/css/SVGCSSStyleSelector.cpp',
+
+ '$WEBCORE_DIR/dom/Attr.cpp',
+ '$WEBCORE_DIR/dom/Attribute.cpp',
+ '$WEBCORE_DIR/dom/BeforeTextInsertedEvent.cpp',
+ '$WEBCORE_DIR/dom/BeforeUnloadEvent.cpp',
+ '$WEBCORE_DIR/dom/CDATASection.cpp',
+ '$PENDING_DIR/CharacterData.cpp',
+ '$WEBCORE_DIR/dom/ChildNodeList.cpp',
+ '$WEBCORE_DIR/dom/ClassNames.cpp',
+ '$WEBCORE_DIR/dom/ClassNodeList.cpp',
+ '$WEBCORE_DIR/dom/Clipboard.cpp',
+ '$WEBCORE_DIR/dom/ClipboardEvent.cpp',
+ '$WEBCORE_DIR/dom/Comment.cpp',
+ '$PENDING_DIR/ContainerNode.cpp',
+ '$WEBCORE_DIR/dom/CSSMappedAttributeDeclaration.cpp',
+ '$PENDING_DIR/Document.cpp',
+ '$WEBCORE_DIR/dom/DocumentFragment.cpp',
+ '$WEBCORE_DIR/dom/DocumentType.cpp',
+ '$WEBCORE_DIR/dom/DOMImplementation.cpp',
+ '$WEBCORE_DIR/dom/DynamicNodeList.cpp',
+ '$WEBCORE_DIR/dom/EditingText.cpp',
+ '$WEBCORE_DIR/dom/Element.cpp',
+ '$WEBCORE_DIR/dom/Entity.cpp',
+ '$WEBCORE_DIR/dom/EntityReference.cpp',
+ '$WEBCORE_DIR/dom/Event.cpp',
+ '$WEBCORE_DIR/dom/EventNames.cpp',
+ '$PENDING_DIR/EventTarget.cpp',
+ '$PENDING_DIR/EventTargetNode.cpp',
+ '$WEBCORE_DIR/dom/ExceptionBase.cpp',
+ '$WEBCORE_DIR/dom/ExceptionCode.cpp',
+ '$WEBCORE_DIR/dom/KeyboardEvent.cpp',
+ '$WEBCORE_DIR/dom/MappedAttribute.cpp',
+ '$WEBCORE_DIR/dom/MessageEvent.cpp',
+ '$WEBCORE_DIR/dom/MouseEvent.cpp',
+ '$WEBCORE_DIR/dom/MouseRelatedEvent.cpp',
+ '$WEBCORE_DIR/dom/MutationEvent.cpp',
+ '$PENDING_DIR/NamedAttrMap.cpp',
+ '$WEBCORE_DIR/dom/NamedMappedAttrMap.cpp',
+ '$WEBCORE_DIR/dom/NameNodeList.cpp',
+ '$PENDING_DIR/Node.cpp',
+ '$WEBCORE_DIR/dom/NodeFilter.cpp',
+ '$WEBCORE_DIR/dom/NodeFilterCondition.cpp',
+ '$WEBCORE_DIR/dom/NodeIterator.cpp',
+ '$WEBCORE_DIR/dom/Notation.cpp',
+ '$WEBCORE_DIR/dom/OverflowEvent.cpp',
+ '$WEBCORE_DIR/dom/Position.cpp',
+ '$WEBCORE_DIR/dom/PositionIterator.cpp',
+ '$WEBCORE_DIR/dom/ProcessingInstruction.cpp',
+ '$WEBCORE_DIR/dom/ProgressEvent.cpp',
+ '$WEBCORE_DIR/dom/QualifiedName.cpp',
+ '$WEBCORE_DIR/dom/Range.cpp',
+ '$WEBCORE_DIR/dom/RegisteredEventListener.cpp',
+ '$WEBCORE_DIR/dom/SelectorNodeList.cpp',
+ '$WEBCORE_DIR/dom/StaticNodeList.cpp',
+ '$WEBCORE_DIR/dom/StyledElement.cpp',
+ '$WEBCORE_DIR/dom/StyleElement.cpp',
+ '$WEBCORE_DIR/dom/TagNodeList.cpp',
+ '$WEBCORE_DIR/dom/Text.cpp',
+ '$WEBCORE_DIR/dom/TextEvent.cpp',
+ '$WEBCORE_DIR/dom/Traversal.cpp',
+ '$WEBCORE_DIR/dom/TreeWalker.cpp',
+ '$WEBCORE_DIR/dom/UIEvent.cpp',
+ '$WEBCORE_DIR/dom/UIEventWithKeyState.cpp',
+ '$WEBCORE_DIR/dom/WheelEvent.cpp',
+ '$PENDING_DIR/XMLTokenizer.cpp',
+
+ '$WEBCORE_DIR/editing/AppendNodeCommand.cpp',
+ '$WEBCORE_DIR/editing/ApplyStyleCommand.cpp',
+ '$WEBCORE_DIR/editing/BreakBlockquoteCommand.cpp',
+ '$WEBCORE_DIR/editing/CompositeEditCommand.cpp',
+ '$WEBCORE_DIR/editing/CreateLinkCommand.cpp',
+ '$WEBCORE_DIR/editing/DeleteButton.cpp',
+ '$WEBCORE_DIR/editing/DeleteButtonController.cpp',
+ '$WEBCORE_DIR/editing/DeleteFromTextNodeCommand.cpp',
+ '$PENDING_DIR/DeleteSelectionCommand.cpp',
+ '$WEBCORE_DIR/editing/EditCommand.cpp',
+ '$WEBCORE_DIR/editing/Editor.cpp',
+ '$WEBCORE_DIR/editing/EditorCommand.cpp',
+ '$WEBCORE_DIR/editing/FormatBlockCommand.cpp',
+ '$WEBCORE_DIR/editing/htmlediting.cpp',
+ '$WEBCORE_DIR/editing/HTMLInterchange.cpp',
+ '$PENDING_DIR/IndentOutdentCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertIntoTextNodeCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertLineBreakCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertListCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertNodeBeforeCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertParagraphSeparatorCommand.cpp',
+ '$WEBCORE_DIR/editing/InsertTextCommand.cpp',
+ '$WEBCORE_DIR/editing/JoinTextNodesCommand.cpp',
+ '$PENDING_DIR/markup.cpp',
+ '$WEBCORE_DIR/editing/MergeIdenticalElementsCommand.cpp',
+ '$WEBCORE_DIR/editing/ModifySelectionListLevel.cpp',
+ '$WEBCORE_DIR/editing/MoveSelectionCommand.cpp',
+ '$WEBCORE_DIR/editing/RemoveCSSPropertyCommand.cpp',
+ '$PENDING_DIR/RemoveFormatCommand.cpp',
+ '$WEBCORE_DIR/editing/RemoveNodeAttributeCommand.cpp',
+ '$WEBCORE_DIR/editing/RemoveNodeCommand.cpp',
+ '$WEBCORE_DIR/editing/RemoveNodePreservingChildrenCommand.cpp',
+ '$PENDING_DIR/ReplaceSelectionCommand.cpp',
+ '$PENDING_DIR/Selection.cpp',
+ '$WEBCORE_DIR/editing/SelectionController.cpp',
+ '$WEBCORE_DIR/editing/SetNodeAttributeCommand.cpp',
+ '$WEBCORE_DIR/editing/SmartReplaceICU.cpp',
+ '$WEBCORE_DIR/editing/SmartReplace.cpp',
+ '$WEBCORE_DIR/editing/SplitElementCommand.cpp',
+ '$WEBCORE_DIR/editing/SplitTextNodeCommand.cpp',
+ '$WEBCORE_DIR/editing/SplitTextNodeContainingElementCommand.cpp',
+ '$WEBCORE_DIR/editing/TextIterator.cpp',
+ '$WEBCORE_DIR/editing/TypingCommand.cpp',
+ '$WEBCORE_DIR/editing/UnlinkCommand.cpp',
+ '$WEBCORE_DIR/editing/visible_units.cpp',
+ '$WEBCORE_DIR/editing/VisiblePosition.cpp',
+ '$WEBCORE_DIR/editing/WrapContentsInDummySpanCommand.cpp',
+
+ '$WEBCORE_DIR/history/PageCache.cpp',
+ '$WEBCORE_DIR/history/HistoryItem.cpp',
+
+ '$PENDING_DIR/CanvasGradient.cpp',
+ '$PENDING_DIR/CanvasPattern.cpp',
+ '$PENDING_DIR/CanvasRenderingContext2D.cpp',
+ '$PENDING_DIR/CanvasStyle.cpp',
+ '$WEBCORE_DIR/html/FormDataList.cpp',
+ '$PENDING_DIR/HTMLAnchorElement.cpp',
+ '$PENDING_DIR/HTMLAppletElement.cpp',
+ '$PENDING_DIR/HTMLAreaElement.cpp',
+ '$WEBCORE_DIR/html/HTMLAudioElement.cpp',
+ '$WEBCORE_DIR/html/HTMLBaseElement.cpp',
+ '$WEBCORE_DIR/html/HTMLBaseFontElement.cpp',
+ '$WEBCORE_DIR/html/HTMLBlockquoteElement.cpp',
+ '$WEBCORE_DIR/html/HTMLBodyElement.cpp',
+ '$WEBCORE_DIR/html/HTMLBRElement.cpp',
+ '$WEBCORE_DIR/html/HTMLButtonElement.cpp',
+ '$PENDING_DIR/HTMLCanvasElement.cpp',
+ '$WEBCORE_DIR/html/HTMLCollection.cpp',
+ '$WEBCORE_DIR/html/HTMLDirectoryElement.cpp',
+ '$WEBCORE_DIR/html/HTMLDivElement.cpp',
+ '$WEBCORE_DIR/html/HTMLDListElement.cpp',
+ '$WEBCORE_DIR/html/HTMLDocument.cpp',
+ '$PENDING_DIR/HTMLElement.cpp',
+ '$WEBCORE_DIR/html/HTMLElementFactory.cpp',
+ '$PENDING_DIR/HTMLEmbedElement.cpp',
+ '$PENDING_DIR/HTMLFieldSetElement.cpp',
+ '$WEBCORE_DIR/html/HTMLFontElement.cpp',
+ '$WEBCORE_DIR/html/HTMLFormCollection.cpp',
+ '$WEBCORE_DIR/html/HTMLFormElement.cpp',
+ '$WEBCORE_DIR/html/HTMLFrameElement.cpp',
+ '$WEBCORE_DIR/html/HTMLFrameElementBase.cpp',
+ '$WEBCORE_DIR/html/HTMLFrameOwnerElement.cpp',
+ '$WEBCORE_DIR/html/HTMLFrameSetElement.cpp',
+ '$PENDING_DIR/HTMLGenericFormElement.cpp',
+ '$WEBCORE_DIR/html/HTMLHeadElement.cpp',
+ '$WEBCORE_DIR/html/HTMLHeadingElement.cpp',
+ '$WEBCORE_DIR/html/HTMLHRElement.cpp',
+ '$WEBCORE_DIR/html/HTMLHtmlElement.cpp',
+ '$WEBCORE_DIR/html/HTMLIFrameElement.cpp',
+ '$WEBCORE_DIR/html/HTMLImageElement.cpp',
+ '$WEBCORE_DIR/html/HTMLImageLoader.cpp',
+ '$PENDING_DIR/HTMLInputElement.cpp',
+ '$WEBCORE_DIR/html/HTMLIsIndexElement.cpp',
+ '$WEBCORE_DIR/html/HTMLKeygenElement.cpp',
+ '$WEBCORE_DIR/html/HTMLLabelElement.cpp',
+ '$PENDING_DIR/HTMLLegendElement.cpp',
+ '$WEBCORE_DIR/html/HTMLLIElement.cpp',
+ '$PENDING_DIR/HTMLLinkElement.cpp',
+ '$WEBCORE_DIR/html/HTMLMapElement.cpp',
+ '$WEBCORE_DIR/html/HTMLMarqueeElement.cpp',
+ '$WEBCORE_DIR/html/HTMLMediaElement.cpp',
+ '$WEBCORE_DIR/html/HTMLMenuElement.cpp',
+ '$WEBCORE_DIR/html/HTMLMetaElement.cpp',
+ '$WEBCORE_DIR/html/HTMLModElement.cpp',
+ '$WEBCORE_DIR/html/HTMLNameCollection.cpp',
+ '$PENDING_DIR/HTMLObjectElement.cpp',
+ '$WEBCORE_DIR/html/HTMLOListElement.cpp',
+ '$PENDING_DIR/HTMLOptGroupElement.cpp',
+ '$PENDING_DIR/HTMLOptionElement.cpp',
+ '$WEBCORE_DIR/html/HTMLOptionsCollection.cpp',
+ '$WEBCORE_DIR/html/HTMLParagraphElement.cpp',
+ '$WEBCORE_DIR/html/HTMLParamElement.cpp',
+ '$PENDING_DIR/HTMLParser.cpp',
+ '$WEBCORE_DIR/html/HTMLParserErrorCodes.cpp',
+ '$PENDING_DIR/HTMLPlugInElement.cpp',
+ '$WEBCORE_DIR/html/HTMLPreElement.cpp',
+ '$WEBCORE_DIR/html/HTMLQuoteElement.cpp',
+ '$PENDING_DIR/HTMLScriptElement.cpp',
+ '$WEBCORE_DIR/html/HTMLSelectElement.cpp',
+ '$WEBCORE_DIR/html/HTMLStyleElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableCaptionElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableCellElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableColElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTablePartElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableRowElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTableRowsCollection.cpp',
+ '$WEBCORE_DIR/html/HTMLTableSectionElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTextAreaElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTextFieldInnerElement.cpp',
+ '$WEBCORE_DIR/html/HTMLTitleElement.cpp',
+ '$PENDING_DIR/HTMLTokenizer.cpp',
+ '$WEBCORE_DIR/html/HTMLUListElement.cpp',
+ '$WEBCORE_DIR/html/HTMLVideoElement.cpp',
+ '$WEBCORE_DIR/html/HTMLViewSourceDocument.cpp',
+
+ '$WEBCORE_DIR/loader/Cache.cpp',
+ '$WEBCORE_DIR/loader/CachedCSSStyleSheet.cpp',
+ '$WEBCORE_DIR/loader/CachedFont.cpp',
+ '$WEBCORE_DIR/loader/CachedImage.cpp',
+ '$WEBCORE_DIR/loader/CachedResource.cpp',
+ '$WEBCORE_DIR/loader/CachedResourceClientWalker.cpp',
+ '$WEBCORE_DIR/loader/CachedScript.cpp',
+ '$WEBCORE_DIR/loader/CachedXBLDocument.cpp',
+ '$WEBCORE_DIR/loader/CachedXSLStyleSheet.cpp',
+ '$PENDING_DIR/DocLoader.cpp',
+ '$WEBCORE_DIR/loader/DocumentLoader.cpp',
+ '$WEBCORE_DIR/loader/FormState.cpp',
+ '$PENDING_DIR/FrameLoader.cpp',
+ '$WEBCORE_DIR/loader/FTPDirectoryDocument.cpp',
+ '$WEBCORE_DIR/loader/ImageDocument.cpp',
+ '$WEBCORE_DIR/loader/loader.cpp',
+ '$WEBCORE_DIR/loader/MainResourceLoader.cpp',
+ '$WEBCORE_DIR/loader/NavigationAction.cpp',
+ '$WEBCORE_DIR/loader/NetscapePlugInStreamLoader.cpp',
+ '$WEBCORE_DIR/loader/PluginDocument.cpp',
+ '$WEBCORE_DIR/loader/ProgressTracker.cpp',
+ '$WEBCORE_DIR/loader/Request.cpp',
+ '$WEBCORE_DIR/loader/ResourceLoader.cpp',
+ '$WEBCORE_DIR/loader/SubresourceLoader.cpp',
+ '$WEBCORE_DIR/loader/TextDocument.cpp',
+ '$PENDING_DIR/TextResourceDecoder.cpp',
+
+ '$WEBCORE_DIR/page/AnimationController.cpp',
+ '$WEBCORE_DIR/page/BarInfo.cpp',
+ '$PENDING_DIR/AXObjectCache.cpp',
+ '$WEBCORE_DIR/page/AnimationController.cpp',
+ '$PENDING_DIR/AccessibilityObject.cpp',
+ '$WEBCORE_DIR/page/BarInfo.cpp',
+ '$PENDING_DIR/Chrome.cpp',
+ '$WEBCORE_DIR/page/Console.cpp',
+ '$WEBCORE_DIR/page/ContextMenuController.cpp',
+ '$WEBCORE_DIR/page/DOMSelection.cpp',
+ '$PENDING_DIR/DOMWindow.cpp',
+ '$PENDING_DIR/DragController.cpp',
+ '$PENDING_DIR/EventHandler.cpp',
+ '$WEBCORE_DIR/page/FocusController.cpp',
+ '$PENDING_DIR/Frame.cpp',
+ '$WEBCORE_DIR/page/FrameTree.cpp',
+ '$PENDING_DIR/FrameView.cpp',
+ '$WEBCORE_DIR/page/History.cpp',
+ '$WEBCORE_DIR/page/MouseEventWithHitTestResults.cpp',
+ '$PENDING_DIR/Page.cpp',
+ '$WEBCORE_DIR/page/Screen.cpp',
+ '$PENDING_DIR/Settings.cpp',
+ '$WEBCORE_DIR/page/WindowFeatures.cpp',
+
+ '$WEBCORE_DIR/platform/Arena.cpp',
+ '$WEBCORE_DIR/platform/ArrayImpl.cpp',
+ '$WEBCORE_DIR/platform/ContextMenu.cpp',
+ '$WEBCORE_DIR/platform/DeprecatedCString.cpp',
+ '$WEBCORE_DIR/platform/DeprecatedPtrListImpl.cpp',
+ '$PENDING_DIR/DeprecatedString.cpp',
+ '$WEBCORE_DIR/platform/DeprecatedStringList.cpp',
+ '$WEBCORE_DIR/platform/DeprecatedValueListImpl.cpp',
+ '$WEBCORE_DIR/platform/DragData.cpp',
+ '$WEBCORE_DIR/platform/DragImage.cpp',
+ '$WEBCORE_DIR/platform/FileChooser.cpp',
+ '$PENDING_DIR/Font.cpp',
+ '$PENDING_DIR/FontCache.cpp',
+ '$WEBCORE_DIR/platform/graphics/FontFallbackList.cpp',
+ '$WEBCORE_DIR/platform/graphics/FontFamily.cpp',
+ '$WEBCORE_DIR/platform/graphics/GlyphPageTreeNode.cpp',
+ '$PENDING_DIR/GlyphWidthMap.cpp',
+ '$PENDING_DIR/KURL.cpp',
+ '$WEBCORE_DIR/platform/Logging.cpp',
+ '$PORT_DIR/platform/MIMETypeRegistry.cpp',
+ '$WEBCORE_DIR/platform/ScrollBar.cpp',
+ '$PENDING_DIR/SecurityOrigin.cpp',
+ '$WEBCORE_DIR/platform/SharedBuffer.cpp',
+ '$WEBCORE_DIR/platform/Timer.cpp',
+ '$WEBCORE_DIR/platform/Widget.cpp',
+ '$WEBCORE_DIR/platform/graphics/AffineTransform.cpp',
+ '$PENDING_DIR/BitmapImage.cpp',
+ '$WEBCORE_DIR/platform/graphics/Color.cpp',
+ '$WEBCORE_DIR/platform/graphics/FloatPoint.cpp',
+ '$WEBCORE_DIR/platform/graphics/FloatPoint3D.cpp',
+ '$WEBCORE_DIR/platform/graphics/FloatRect.cpp',
+ '$WEBCORE_DIR/platform/graphics/FloatSize.cpp',
+ '$WEBCORE_DIR/platform/graphics/FontData.cpp',
+ '$WEBCORE_DIR/platform/graphics/GraphicsContext.cpp',
+ '$WEBCORE_DIR/platform/graphics/GraphicsTypes.cpp',
+ '$WEBCORE_DIR/platform/graphics/Image.cpp',
+ '$WEBCORE_DIR/platform/graphics/IntRect.cpp',
+ '$WEBCORE_DIR/platform/graphics/Path.cpp',
+ '$WEBCORE_DIR/platform/graphics/PathTraversalState.cpp',
+ '$WEBCORE_DIR/platform/graphics/Pen.cpp',
+ '$WEBCORE_DIR/platform/graphics/SegmentedFontData.cpp',
+ '$PENDING_DIR/SimpleFontData.cpp',
+ '$WEBCORE_DIR/platform/network/AuthenticationChallenge.cpp',
+ '$WEBCORE_DIR/platform/network/Credential.cpp',
+ '$WEBCORE_DIR/platform/network/FormData.cpp',
+ '$WEBCORE_DIR/platform/network/HTTPParsers.cpp',
+ '$WEBCORE_DIR/platform/network/ProtectionSpace.cpp',
+ '$WEBCORE_DIR/platform/network/ResourceError.cpp',
+ '$WEBCORE_DIR/platform/network/ResourceRequestBase.cpp',
+ '$WEBCORE_DIR/platform/network/ResourceResponseBase.cpp',
+ '$PENDING_DIR/FileSystemWin.cpp',
+ '$PENDING_DIR/AtomicString.cpp',
+ '$WEBCORE_DIR/platform/text/Base64.cpp',
+ '$WEBCORE_DIR/platform/text/BidiContext.cpp',
+ '$WEBCORE_DIR/platform/text/CString.cpp',
+ '$WEBCORE_DIR/platform/text/RegularExpression.cpp',
+ '$WEBCORE_DIR/platform/text/SegmentedString.cpp',
+ '$PENDING_DIR/String.cpp',
+ '$PENDING_DIR/StringImpl.cpp',
+ '$WEBCORE_DIR/platform/graphics/StringTruncator.cpp',
+ '$WEBCORE_DIR/platform/text/TextBoundariesICU.cpp',
+ '$WEBCORE_DIR/platform/text/TextBreakIteratorICU.cpp',
+ '$PENDING_DIR/TextCodec.cpp',
+ '$PENDING_DIR/TextCodecICU.cpp',
+ '$WEBCORE_DIR/platform/text/TextCodecLatin1.cpp',
+ '$WEBCORE_DIR/platform/text/TextCodecUserDefined.cpp',
+ '$PENDING_DIR/TextCodecUTF16.cpp',
+ '$PENDING_DIR/TextDecoder.cpp',
+ '$WEBCORE_DIR/platform/text/TextEncoding.cpp',
+ '$WEBCORE_DIR/platform/text/TextEncodingRegistry.cpp',
+ '$WEBCORE_DIR/platform/text/TextStream.cpp',
+ '$WEBCORE_DIR/platform/text/UnicodeRange.cpp',
+
+ '$WEBCORE_DIR/rendering/AutoTableLayout.cpp',
+ '$PENDING_DIR/bidi.cpp',
+ '$WEBCORE_DIR/rendering/break_lines.cpp',
+ '$WEBCORE_DIR/rendering/CounterNode.cpp',
+ '$WEBCORE_DIR/rendering/EllipsisBox.cpp',
+ '$WEBCORE_DIR/rendering/FixedTableLayout.cpp',
+ '$WEBCORE_DIR/rendering/HitTestResult.cpp',
+ '$WEBCORE_DIR/rendering/InlineBox.cpp',
+ '$WEBCORE_DIR/rendering/InlineFlowBox.cpp',
+ '$WEBCORE_DIR/rendering/InlineTextBox.cpp',
+ '$WEBCORE_DIR/rendering/LayoutState.cpp',
+ '$WEBCORE_DIR/rendering/ListMarkerBox.cpp',
+ '$WEBCORE_DIR/rendering/MediaControlElements.cpp',
+ '$WEBCORE_DIR/rendering/PointerEventsHitRules.cpp',
+ '$WEBCORE_DIR/rendering/RenderApplet.cpp',
+ '$WEBCORE_DIR/rendering/RenderArena.cpp',
+ '$PENDING_DIR/RenderBlock.cpp',
+ '$WEBCORE_DIR/rendering/RenderBox.cpp',
+ '$WEBCORE_DIR/rendering/RenderBR.cpp',
+ '$PENDING_DIR/RenderButton.cpp',
+ '$WEBCORE_DIR/rendering/RenderContainer.cpp',
+ '$WEBCORE_DIR/rendering/RenderCounter.cpp',
+ '$WEBCORE_DIR/rendering/RenderFieldset.cpp',
+ '$WEBCORE_DIR/rendering/RenderFileUploadControl.cpp',
+ '$WEBCORE_DIR/rendering/RenderFlexibleBox.cpp',
+ '$WEBCORE_DIR/rendering/RenderFlow.cpp',
+ '$WEBCORE_DIR/rendering/RenderForeignObject.cpp',
+ '$WEBCORE_DIR/rendering/RenderFrame.cpp',
+ '$WEBCORE_DIR/rendering/RenderFrameSet.cpp',
+ '$WEBCORE_DIR/rendering/RenderHTMLCanvas.cpp',
+ '$WEBCORE_DIR/rendering/RenderImage.cpp',
+ '$WEBCORE_DIR/rendering/RenderInline.cpp',
+ '$WEBCORE_DIR/rendering/RenderLayer.cpp',
+ '$WEBCORE_DIR/rendering/RenderLegend.cpp',
+ '$WEBCORE_DIR/rendering/RenderListBox.cpp',
+ '$WEBCORE_DIR/rendering/RenderListItem.cpp',
+ '$WEBCORE_DIR/rendering/RenderListMarker.cpp',
+ '$PENDING_DIR/RenderMenuList.cpp',
+ '$PENDING_DIR/RenderObject.cpp',
+ '$WEBCORE_DIR/rendering/RenderPart.cpp',
+ '$PENDING_DIR/RenderPartObject.cpp',
+ '$WEBCORE_DIR/rendering/RenderPath.cpp',
+ '$WEBCORE_DIR/rendering/RenderReplaced.cpp',
+ '$WEBCORE_DIR/rendering/RenderSlider.cpp',
+ '$WEBCORE_DIR/rendering/RenderStyle.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGBlock.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGContainer.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGGradientStop.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGHiddenContainer.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGImage.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGInline.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGInlineText.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGRoot.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGText.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGTextPath.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGTransformableContainer.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGTSpan.cpp',
+ '$WEBCORE_DIR/rendering/RenderSVGViewportContainer.cpp',
+ '$PENDING_DIR/RenderTable.cpp',
+ '$WEBCORE_DIR/rendering/RenderTableCell.cpp',
+ '$WEBCORE_DIR/rendering/RenderTableCol.cpp',
+ '$WEBCORE_DIR/rendering/RenderTableRow.cpp',
+ '$WEBCORE_DIR/rendering/RenderTableSection.cpp',
+ '$PENDING_DIR/RenderText.cpp',
+ '$PENDING_DIR/RenderTextControl.cpp',
+ '$WEBCORE_DIR/rendering/RenderTextFragment.cpp',
+ '$WEBCORE_DIR/rendering/RenderTheme.cpp',
+ '$WEBCORE_DIR/rendering/RenderTreeAsText.cpp',
+ '$WEBCORE_DIR/rendering/RenderVideo.cpp',
+ '$WEBCORE_DIR/rendering/RenderView.cpp',
+ '$WEBCORE_DIR/rendering/RenderWidget.cpp',
+ '$PENDING_DIR/RenderWordBreak.cpp',
+ '$WEBCORE_DIR/rendering/RootInlineBox.cpp',
+ '$WEBCORE_DIR/rendering/SVGCharacterLayoutInfo.cpp',
+ '$WEBCORE_DIR/rendering/SVGInlineFlowBox.cpp',
+ '$WEBCORE_DIR/rendering/SVGInlineTextBox.cpp',
+ '$WEBCORE_DIR/rendering/SVGRenderStyle.cpp',
+ '$WEBCORE_DIR/rendering/SVGRenderStyleDefs.cpp',
+ '$WEBCORE_DIR/rendering/SVGRenderSupport.cpp',
+ '$WEBCORE_DIR/rendering/SVGRenderTreeAsText.cpp',
+ '$PENDING_DIR/SVGRootInlineBox.cpp',
+
+ '$WEBCORE_DIR/svg/ColorDistance.cpp',
+ '$WEBCORE_DIR/svg/SVGAElement.cpp',
+ '$WEBCORE_DIR/svg/SVGAngle.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimateColorElement.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimatedPathData.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimatedPoints.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimateElement.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimateMotionElement.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimateTransformElement.cpp',
+ '$WEBCORE_DIR/svg/SVGAnimationElement.cpp',
+ '$WEBCORE_DIR/svg/SVGCircleElement.cpp',
+ '$WEBCORE_DIR/svg/SVGClipPathElement.cpp',
+ '$WEBCORE_DIR/svg/SVGColor.cpp',
+ '$WEBCORE_DIR/svg/SVGComponentTransferFunctionElement.cpp',
+ '$WEBCORE_DIR/svg/SVGCursorElement.cpp',
+ '$WEBCORE_DIR/svg/SVGDefinitionSrcElement.cpp',
+ '$WEBCORE_DIR/svg/SVGDefsElement.cpp',
+ '$WEBCORE_DIR/svg/SVGDescElement.cpp',
+ '$WEBCORE_DIR/svg/SVGDocument.cpp',
+ '$PENDING_DIR/SVGDocumentExtensions.cpp',
+ '$WEBCORE_DIR/svg/SVGElement.cpp',
+ '$WEBCORE_DIR/svg/SVGElementInstance.cpp',
+ '$WEBCORE_DIR/svg/SVGElementInstanceList.cpp',
+ '$WEBCORE_DIR/svg/SVGEllipseElement.cpp',
+ '$WEBCORE_DIR/svg/SVGExternalResourcesRequired.cpp',
+ '$WEBCORE_DIR/svg/SVGFEBlendElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEColorMatrixElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEComponentTransferElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFECompositeElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEDiffuseLightingElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEDisplacementMapElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEDistantLightElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEFloodElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEFuncAElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEFuncBElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEFuncGElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEFuncRElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEGaussianBlurElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEImageElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFELightElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEMergeElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEMergeNodeElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEOffsetElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFEPointLightElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFESpecularLightingElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFESpotLightElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFETileElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFETurbulenceElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFilterElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFilterPrimitiveStandardAttributes.cpp',
+ '$WEBCORE_DIR/svg/SVGFitToViewBox.cpp',
+ '$WEBCORE_DIR/svg/SVGFont.cpp',
+ '$WEBCORE_DIR/svg/SVGFontData.cpp',
+ '$WEBCORE_DIR/svg/SVGFontElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFontFaceElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFontFaceFormatElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFontFaceNameElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFontFaceSrcElement.cpp',
+ '$WEBCORE_DIR/svg/SVGFontFaceUriElement.cpp',
+ '$WEBCORE_DIR/svg/SVGForeignObjectElement.cpp',
+ '$WEBCORE_DIR/svg/SVGGElement.cpp',
+ '$WEBCORE_DIR/svg/SVGGlyphElement.cpp',
+ '$WEBCORE_DIR/svg/SVGGradientElement.cpp',
+ '$WEBCORE_DIR/svg/SVGImageElement.cpp',
+ '$WEBCORE_DIR/svg/SVGImageLoader.cpp',
+ '$WEBCORE_DIR/svg/SVGLangSpace.cpp',
+ '$WEBCORE_DIR/svg/SVGLength.cpp',
+ '$WEBCORE_DIR/svg/SVGLengthList.cpp',
+ '$WEBCORE_DIR/svg/SVGLinearGradientElement.cpp',
+ '$WEBCORE_DIR/svg/SVGLineElement.cpp',
+ '$WEBCORE_DIR/svg/SVGLocatable.cpp',
+ '$WEBCORE_DIR/svg/SVGMarkerElement.cpp',
+ '$WEBCORE_DIR/svg/SVGMaskElement.cpp',
+ '$WEBCORE_DIR/svg/SVGMetadataElement.cpp',
+ '$WEBCORE_DIR/svg/SVGMissingGlyphElement.cpp',
+ '$WEBCORE_DIR/svg/SVGMPathElement.cpp',
+ '$WEBCORE_DIR/svg/SVGNumberList.cpp',
+ '$WEBCORE_DIR/svg/SVGPaint.cpp',
+ '$WEBCORE_DIR/svg/SVGParserUtilities.cpp',
+ '$WEBCORE_DIR/svg/SVGPathElement.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegArc.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegClosePath.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegCurvetoCubic.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegCurvetoCubicSmooth.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegCurvetoQuadratic.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegCurvetoQuadraticSmooth.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegLineto.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegLinetoHorizontal.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegLinetoVertical.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegList.cpp',
+ '$WEBCORE_DIR/svg/SVGPathSegMoveto.cpp',
+ '$WEBCORE_DIR/svg/SVGPatternElement.cpp',
+ '$WEBCORE_DIR/svg/SVGPointList.cpp',
+ '$WEBCORE_DIR/svg/SVGPolyElement.cpp',
+ '$WEBCORE_DIR/svg/SVGPolygonElement.cpp',
+ '$WEBCORE_DIR/svg/SVGPolylineElement.cpp',
+ '$WEBCORE_DIR/svg/SVGPreserveAspectRatio.cpp',
+ '$WEBCORE_DIR/svg/SVGRadialGradientElement.cpp',
+ '$WEBCORE_DIR/svg/SVGRectElement.cpp',
+ '$WEBCORE_DIR/svg/SVGScriptElement.cpp',
+ '$WEBCORE_DIR/svg/SVGSetElement.cpp',
+ '$WEBCORE_DIR/svg/SVGStopElement.cpp',
+ '$WEBCORE_DIR/svg/SVGStringList.cpp',
+ '$WEBCORE_DIR/svg/SVGStylable.cpp',
+ '$WEBCORE_DIR/svg/SVGStyledElement.cpp',
+ '$WEBCORE_DIR/svg/SVGStyledLocatableElement.cpp',
+ '$WEBCORE_DIR/svg/SVGStyledTransformableElement.cpp',
+ '$WEBCORE_DIR/svg/SVGStyleElement.cpp',
+ '$WEBCORE_DIR/svg/SVGSVGElement.cpp',
+ '$WEBCORE_DIR/svg/SVGSwitchElement.cpp',
+ '$WEBCORE_DIR/svg/SVGSymbolElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTests.cpp',
+ '$WEBCORE_DIR/svg/SVGTextContentElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTextElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTextPathElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTextPositioningElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTimer.cpp',
+ '$WEBCORE_DIR/svg/SVGTitleElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTransform.cpp',
+ '$WEBCORE_DIR/svg/SVGTransformable.cpp',
+ '$WEBCORE_DIR/svg/SVGTransformDistance.cpp',
+ '$WEBCORE_DIR/svg/SVGTransformList.cpp',
+ '$WEBCORE_DIR/svg/SVGTRefElement.cpp',
+ '$WEBCORE_DIR/svg/SVGTSpanElement.cpp',
+ '$WEBCORE_DIR/svg/SVGURIReference.cpp',
+ '$WEBCORE_DIR/svg/SVGUseElement.cpp',
+ '$WEBCORE_DIR/svg/SVGViewElement.cpp',
+ '$WEBCORE_DIR/svg/SVGViewSpec.cpp',
+ '$WEBCORE_DIR/svg/SVGZoomAndPan.cpp',
+ '$WEBCORE_DIR/svg/SVGZoomEvent.cpp',
+ '$WEBCORE_DIR/svg/TimeScheduler.cpp',
+ '$PENDING_DIR/SVGImage.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServer.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServerGradient.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServerLinearGradient.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServerPattern.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServerRadialGradient.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGPaintServerSolid.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGResource.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGResourceClipper.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGResourceFilter.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGResourceMarker.cpp',
+ '$WEBCORE_DIR/svg/graphics/SVGResourceMasker.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEBlend.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEColorMatrix.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEComponentTransfer.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEComposite.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEConvolveMatrix.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEDiffuseLighting.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEDisplacementMap.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEFlood.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEGaussianBlur.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEImage.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEMerge.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEMorphology.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFEOffset.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFESpecularLighting.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFETurbulence.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGFilterEffect.cpp',
+ '$WEBCORE_DIR/svg/graphics/filters/SVGLightSource.cpp',
+
+ '$WEBCORE_DIR/xml/DOMParser.cpp',
+ '$WEBCORE_DIR/xml/NativeXPathNSResolver.cpp',
+ '$PENDING_DIR/XMLHttpRequest.cpp',
+ '$WEBCORE_DIR/xml/XMLSerializer.cpp',
+ '$WEBCORE_DIR/xml/XPathEvaluator.cpp',
+ '$WEBCORE_DIR/xml/XPathExpression.cpp',
+ '$WEBCORE_DIR/xml/XPathExpressionNode.cpp',
+ '$WEBCORE_DIR/xml/XPathFunctions.cpp',
+ '$WEBCORE_DIR/xml/XPathNamespace.cpp',
+ '$WEBCORE_DIR/xml/XPathNodeSet.cpp',
+ '$WEBCORE_DIR/xml/XPathNSResolver.cpp',
+ '$WEBCORE_DIR/xml/XPathParser.cpp',
+ '$WEBCORE_DIR/xml/XPathPath.cpp',
+ '$WEBCORE_DIR/xml/XPathPredicate.cpp',
+ '$WEBCORE_DIR/xml/XPathResult.cpp',
+ '$WEBCORE_DIR/xml/XPathStep.cpp',
+ '$WEBCORE_DIR/xml/XPathUtil.cpp',
+ '$WEBCORE_DIR/xml/XPathValue.cpp',
+ '$WEBCORE_DIR/xml/XPathVariableReference.cpp',
+ '$PENDING_DIR/XSLImportRule.cpp',
+ '$PENDING_DIR/XSLStyleSheet.cpp',
+ '$WEBCORE_DIR/xml/XSLTExtensions.cpp',
+ '$PENDING_DIR/XSLTProcessor.cpp',
+ '$WEBCORE_DIR/xml/XSLTUnicodeSort.cpp',
+]
+
+env.StaticLibrary('WebCore', input_files + [obj])
diff --git a/webkit/build/WebCore/WebCore.vcproj b/webkit/build/WebCore/WebCore.vcproj new file mode 100644 index 0000000..0484a7a --- /dev/null +++ b/webkit/build/WebCore/WebCore.vcproj @@ -0,0 +1,5759 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioProject + ProjectType="Visual C++" + Version="8.00" + Name="WebCore" + ProjectGUID="{1C16337B-ACF3-4D03-AA90-851C5B5EADA6}" + RootNamespace="WebCore" + Keyword="Win32Proj" + > + <Platforms> + <Platform + Name="Win32" + /> + </Platforms> + <ToolFiles> + </ToolFiles> + <Configurations> + <Configuration + Name="Debug|Win32" + ConfigurationType="4" + InheritedPropertySheets="$(SolutionDir)..\build\debug.vsprops;..\precompiled_webkit.vsprops;.\webcore.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + <Configuration + Name="Release|Win32" + ConfigurationType="4" + InheritedPropertySheets="$(SolutionDir)..\build\release.vsprops;.\webcore.vsprops" + > + <Tool + Name="VCPreBuildEventTool" + /> + <Tool + Name="VCCustomBuildTool" + /> + <Tool + Name="VCXMLDataGeneratorTool" + /> + <Tool + Name="VCWebServiceProxyGeneratorTool" + /> + <Tool + Name="VCMIDLTool" + /> + <Tool + Name="VCCLCompilerTool" + /> + <Tool + Name="VCManagedResourceCompilerTool" + /> + <Tool + Name="VCResourceCompilerTool" + /> + <Tool + Name="VCPreLinkEventTool" + /> + <Tool + Name="VCLibrarianTool" + /> + <Tool + Name="VCALinkTool" + /> + <Tool + Name="VCXDCMakeTool" + /> + <Tool + Name="VCBscMakeTool" + /> + <Tool + Name="VCFxCopTool" + /> + <Tool + Name="VCPostBuildEventTool" + /> + </Configuration> + </Configurations> + <References> + </References> + <Files> + <Filter + Name="page" + > + <File + RelativePath="..\..\pending\AccessibilityObject.cpp" + > + </File> + <File + RelativePath="..\..\pending\AccessibilityObject.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\AnimationController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\AnimationController.h" + > + </File> + <File + RelativePath="..\..\pending\AXObjectCache.cpp" + > + </File> + <File + RelativePath="..\..\pending\AXObjectCache.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\BarInfo.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\BarInfo.h" + > + </File> + <File + RelativePath="..\..\pending\Chrome.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Chrome.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\ChromeClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Console.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Console.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\ContextMenuClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\ContextMenuController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\ContextMenuController.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\DOMSelection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\DOMSelection.h" + > + </File> + <File + RelativePath="..\..\pending\DOMWindow.cpp" + > + </File> + <File + RelativePath="..\..\pending\DOMWindow.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\DragActions.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\DragClient.h" + > + </File> + <File + RelativePath="..\..\pending\DragController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\DragController.h" + > + </File> + <File + RelativePath="..\..\pending\EventHandler.cpp" + > + </File> + <File + RelativePath="..\..\pending\EventHandler.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FocusController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FocusController.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FocusDirection.h" + > + </File> + <File + RelativePath="..\..\pending\Frame.cpp" + > + </File> + <File + RelativePath="..\..\pending\Frame.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FrameLoadRequest.h" + > + </File> + <File + RelativePath="..\..\pending\FramePrivate.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FrameTree.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\FrameTree.h" + > + </File> + <File + RelativePath="..\..\pending\FrameView.cpp" + > + </File> + <File + RelativePath="..\..\pending\FrameView.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\History.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\History.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\InspectorClient.h" + > + </File> + <File + RelativePath="..\..\pending\InspectorController.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\MouseEventWithHitTestResults.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\MouseEventWithHitTestResults.h" + > + </File> + <File + RelativePath="..\..\pending\Page.cpp" + > + </File> + <File + RelativePath="..\..\pending\Page.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Plugin.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Screen.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\Screen.h" + > + </File> + <File + RelativePath="..\..\pending\Settings.cpp" + > + </File> + <File + RelativePath="..\..\pending\Settings.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\WindowFeatures.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\page\WindowFeatures.h" + > + </File> + </Filter> + <Filter + Name="loader" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\Cache.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\Cache.h" + > + </File> + <File + RelativePath="..\..\pending\CachedCSSStyleSheet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedCSSStyleSheet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedFont.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedFont.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedResource.cpp" + > + </File> + <File + RelativePath="..\..\pending\CachedResource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedResourceClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedResourceClientWalker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedResourceClientWalker.h" + > + </File> + <File + RelativePath="..\..\pending\CachedScript.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedScript.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedXBLDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedXBLDocument.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedXSLStyleSheet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachedXSLStyleSheet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\CachePolicy.h" + > + </File> + <File + RelativePath="..\..\pending\DocLoader.cpp" + > + </File> + <File + RelativePath="..\..\pending\DocLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\DocumentLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\DocumentLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\FormState.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\FormState.h" + > + </File> + <File + RelativePath="..\..\pending\FrameLoader.cpp" + > + </File> + <File + RelativePath="..\..\pending\FrameLoader.h" + > + </File> + <File + RelativePath="..\..\pending\FrameLoaderClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\FrameLoaderTypes.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\FTPDirectoryDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\FTPDirectoryDocument.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ImageDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ImageDocument.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\loader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\loader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\MainResourceLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\MainResourceLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\NavigationAction.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\NavigationAction.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\NetscapePlugInStreamLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\NetscapePlugInStreamLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\PluginDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\PluginDocument.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ProgressTracker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ProgressTracker.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\Request.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\Request.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ResourceLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\ResourceLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\SubresourceLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\SubresourceLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\SubresourceLoaderClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\SubstituteData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\TextDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\loader\TextDocument.h" + > + </File> + <File + RelativePath="..\..\pending\TextResourceDecoder.cpp" + > + </File> + <File + RelativePath="..\..\pending\TextResourceDecoder.h" + > + </File> + </Filter> + <Filter + Name="platform" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Arena.cpp" + > + </File> + <File + RelativePath="..\..\pending\Arena.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ArrayImpl.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ArrayImpl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\AutodrainedPool.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ContextMenu.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ContextMenu.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ContextMenuItem.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\CookieJar.h" + > + </File> + <File + RelativePath="..\..\port\platform\Cursor.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedArray.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedCString.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedCString.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedPtrList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedPtrListImpl.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedPtrListImpl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedPtrQueue.h" + > + </File> + <File + RelativePath="..\..\pending\DeprecatedString.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedString.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedStringList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedStringList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedValueList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedValueListImpl.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DeprecatedValueListImpl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DragData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DragData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DragImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\DragImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\FileChooser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\FileChooser.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\FileSystem.h" + > + </File> + <File + RelativePath="..\..\pending\FloatConversion.h" + > + </File> + <File + RelativePath="..\..\pending\Font.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Font.h" + > + </File> + <File + RelativePath="..\..\pending\FontCache.cpp" + > + </File> + <File + RelativePath="..\..\pending\FontCache.h" + > + </File> + <File + RelativePath="..\..\pending\FontDescription.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontFallbackList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontFallbackList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontFamily.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontFamily.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontSelector.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GlyphBuffer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GlyphPageTreeNode.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GlyphPageTreeNode.h" + > + </File> + <File + RelativePath="..\..\pending\KURL.cpp" + > + </File> + <File + RelativePath="..\..\pending\KURL.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Language.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\LocalizedStrings.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Logging.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Logging.h" + > + </File> + <File + RelativePath="..\..\port\platform\MIMETypeRegistry.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\MIMETypeRegistry.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\NotImplemented.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Pasteboard.h" + > + </File> + <File + RelativePath="..\..\pending\PlatformKeyboardEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PlatformMenuDescription.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PlatformMouseEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PlatformScreen.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PlatformWheelEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PopupMenu.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\PopupMenuClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ScrollBar.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ScrollBar.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ScrollTypes.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\ScrollView.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SearchPopupMenu.h" + > + </File> + <File + RelativePath="..\..\pending\SecurityOrigin.cpp" + > + </File> + <File + RelativePath="..\..\pending\SecurityOrigin.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SharedBuffer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SharedBuffer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SharedTimer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Sound.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SSLKeyGenerator.h" + > + </File> + <File + RelativePath="..\..\pending\StaticConstructors.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\SystemTime.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextStyle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Threading.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Timer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Timer.h" + > + </File> + <File + RelativePath="..\..\pending\TreeShared.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Widget.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\Widget.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\WidgetClient.h" + > + </File> + <Filter + Name="graphics" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\AffineTransform.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\AffineTransform.h" + > + </File> + <File + RelativePath="..\..\pending\BitmapImage.cpp" + > + </File> + <File + RelativePath="..\..\pending\BitmapImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Color.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Color.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatPoint.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatPoint.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatPoint3D.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatPoint3D.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatRect.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatRect.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatSize.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FloatSize.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\FontData.h" + > + </File> + <File + RelativePath="..\..\pending\GlyphWidthMap.cpp" + > + </File> + <File + RelativePath="..\..\pending\GlyphWidthMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GraphicsContext.cpp" + > + </File> + <File + RelativePath="..\..\pending\GraphicsContext.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GraphicsTypes.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\GraphicsTypes.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Icon.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Image.cpp" + > + </File> + <File + RelativePath="..\..\pending\Image.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\ImageBuffer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\ImageObserver.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\ImageSource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\IntPoint.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\IntRect.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\IntRect.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\IntSize.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\IntSizeHash.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Path.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Path.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\PathTraversalState.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\PathTraversalState.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Pen.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\Pen.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\SegmentedFontData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\SegmentedFontData.h" + > + </File> + <File + RelativePath="..\..\pending\SimpleFontData.cpp" + > + </File> + <File + RelativePath="..\..\pending\SimpleFontData.h" + > + </File> + </Filter> + <Filter + Name="network" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\AuthenticationChallenge.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\AuthenticationChallenge.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\Credential.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\Credential.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\FormData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\FormData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\HTTPHeaderMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\HTTPParsers.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\HTTPParsers.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ProtectionSpace.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ProtectionSpace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceError.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceError.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceHandle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceHandleClient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceHandleInternal.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceRequestBase.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceRequestBase.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceResponseBase.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\network\ResourceResponseBase.h" + > + </File> + </Filter> + <Filter + Name="win" + > + <File + RelativePath="..\..\pending\FileSystemWin.cpp" + > + </File> + </Filter> + <Filter + Name="text" + > + <File + RelativePath="..\..\pending\AtomicString.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\AtomicString.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\AtomicStringImpl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\Base64.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\Base64.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\BidiContext.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\BidiContext.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\BidiResolver.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\CharacterNames.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\CString.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\CString.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\PlatformString.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\RegularExpression.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\RegularExpression.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\SegmentedString.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\SegmentedString.h" + > + </File> + <File + RelativePath="..\..\pending\String.cpp" + > + </File> + <File + RelativePath="..\..\pending\StringHash.h" + > + </File> + <File + RelativePath="..\..\pending\StringImpl.cpp" + > + </File> + <File + RelativePath="..\..\pending\StringImpl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\StringTruncator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\graphics\StringTruncator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextBoundaries.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextBoundariesICU.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextBreakIterator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextBreakIteratorICU.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextBreakIteratorInternalICU.h" + > + </File> + <File + RelativePath="..\..\pending\TextCodec.cpp" + > + </File> + <File + RelativePath="..\..\pending\TextCodec.h" + > + </File> + <File + RelativePath="..\..\pending\TextCodecICU.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecICU.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecLatin1.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecLatin1.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecUserDefined.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecUserDefined.h" + > + </File> + <File + RelativePath="..\..\pending\TextCodecUTF16.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextCodecUTF16.h" + > + </File> + <File + RelativePath="..\..\pending\TextDecoder.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextDecoder.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextDirection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextEncoding.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextEncoding.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextEncodingRegistry.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextEncodingRegistry.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextStream.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\TextStream.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\UnicodeRange.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\platform\text\UnicodeRange.h" + > + </File> + </Filter> + </Filter> + <Filter + Name="css" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\Counter.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSBorderImageValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSBorderImageValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSCharsetRule.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSCharsetRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSComputedStyleDeclaration.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSComputedStyleDeclaration.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSCursorImageValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSCursorImageValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFace.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFaceRule.cpp" + > + </File> + <File + RelativePath="..\..\pending\CSSFontFaceRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFaceSource.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFaceSource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFaceSrcValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontFaceSrcValue.h" + > + </File> + <File + RelativePath="..\..\pending\CSSFontSelector.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSFontSelector.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSGrammar.y" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSHelper.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSHelper.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSImageValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSImageValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSImportRule.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSImportRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSInheritedValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSInheritedValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSInitialValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSInitialValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSMediaRule.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSMediaRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSMutableStyleDeclaration.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSMutableStyleDeclaration.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSNamespace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSPageRule.cpp" + > + </File> + <File + RelativePath="..\..\pending\CSSPageRule.h" + > + </File> + <File + RelativePath="..\..\pending\CSSParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSParser.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSPrimitiveValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSPrimitiveValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSProperty.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSProperty.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSPropertyNames.in" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSQuirkPrimitiveValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSRule.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSRuleList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSRuleList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSSegmentedFontFace.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSSegmentedFontFace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSSelector.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSSelector.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleDeclaration.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleDeclaration.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleRule.cpp" + > + </File> + <File + RelativePath="..\..\pending\CSSStyleRule.h" + > + </File> + <File + RelativePath="..\..\pending\CSSStyleSelector.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleSelector.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleSheet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSStyleSheet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSTimingFunctionValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSTimingFunctionValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSTransformValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSTransformValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSUnicodeRangeValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSUnicodeRangeValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSUnknownRule.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSValueKeywords.in" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSValueList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\CSSValueList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\DashboardRegion.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\FontFamilyValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\FontFamilyValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\FontValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\FontValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\html4.css" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaFeatureNames.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaFeatureNames.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQuery.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQuery.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQueryEvaluator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQueryEvaluator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQueryExp.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\MediaQueryExp.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\Pair.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\quirks.css" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\Rect.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\ShadowValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\ShadowValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleBase.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleBase.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleSheet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleSheet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleSheetList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\StyleSheetList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\SVGCSSComputedStyleDeclaration.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\SVGCSSParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\SVGCSSParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\SVGCSSStyleSelector.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\css\tokenizer.flex" + > + </File> + </Filter> + <Filter + Name="rendering" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\AutoTableLayout.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\AutoTableLayout.h" + > + </File> + <File + RelativePath="..\..\pending\bidi.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\bidi.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\break_lines.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\break_lines.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\CounterNode.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\CounterNode.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\DataRef.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\EllipsisBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\EllipsisBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\FixedTableLayout.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\FixedTableLayout.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\GapRects.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\HitTestRequest.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\HitTestResult.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\HitTestResult.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineFlowBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineFlowBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineRunBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineTextBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\InlineTextBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\LayoutState.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\LayoutState.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\Length.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\ListMarkerBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\ListMarkerBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\MediaControlElements.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\MediaControlElements.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\PointerEventsHitRules.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\PointerEventsHitRules.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderApplet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderApplet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderArena.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderArena.h" + > + </File> + <File + RelativePath="..\..\pending\RenderBlock.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderBlock.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderBR.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderBR.h" + > + </File> + <File + RelativePath="..\..\pending\RenderButton.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderButton.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderContainer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderContainer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderCounter.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderCounter.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFieldset.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFieldset.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFileUploadControl.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFileUploadControl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFlexibleBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFlexibleBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFlow.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderFlow.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderForeignObject.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderForeignObject.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFrame.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFrame.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFrameSet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderFrameSet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderHTMLCanvas.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderHTMLCanvas.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderInline.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderInline.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderLayer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderLayer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderLegend.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderLegend.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListItem.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListItem.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListMarker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderListMarker.h" + > + </File> + <File + RelativePath="..\..\pending\RenderMenuList.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderMenuList.h" + > + </File> + <File + RelativePath="..\..\pending\RenderObject.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderObject.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderPart.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderPart.h" + > + </File> + <File + RelativePath="..\..\pending\RenderPartObject.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderPartObject.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderPath.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderPath.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderReplaced.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderReplaced.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSlider.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSlider.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderStyle.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderStyle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGBlock.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGBlock.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGContainer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGContainer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGGradientStop.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGGradientStop.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGHiddenContainer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGHiddenContainer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGInline.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGInline.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGInlineText.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGInlineText.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGRoot.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGRoot.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGText.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGText.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTextPath.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTextPath.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTransformableContainer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTransformableContainer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTSpan.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGTSpan.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderSVGViewportContainer.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderTable.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTable.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableCell.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableCell.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableCol.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableCol.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableRow.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableRow.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableSection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTableSection.h" + > + </File> + <File + RelativePath="..\..\pending\RenderText.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderText.h" + > + </File> + <File + RelativePath="..\..\pending\RenderTextControl.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTextControl.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTextFragment.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTextFragment.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTheme.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderTheme.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTreeAsText.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderTreeAsText.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderVideo.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderVideo.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderView.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderView.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderWidget.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RenderWidget.h" + > + </File> + <File + RelativePath="..\..\pending\RenderWordBreak.cpp" + > + </File> + <File + RelativePath="..\..\pending\RenderWordBreak.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RootInlineBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\RootInlineBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGCharacterLayoutInfo.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGCharacterLayoutInfo.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGInlineFlowBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGInlineFlowBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGInlineTextBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGInlineTextBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderStyle.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderStyle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderStyleDefs.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderStyleDefs.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderSupport.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderSupport.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderTreeAsText.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRenderTreeAsText.h" + > + </File> + <File + RelativePath="..\..\pending\SVGRootInlineBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRootInlineBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\TableLayout.h" + > + </File> + </Filter> + <Filter + Name="xml" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\DOMParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\DOMParser.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\NativeXPathNSResolver.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\NativeXPathNSResolver.h" + > + </File> + <File + RelativePath="..\..\pending\XMLHttpRequest.cpp" + > + </File> + <File + RelativePath="..\..\pending\XMLHttpRequest.h" + > + </File> + <File + RelativePath="..\xml\XMLHttpRequestException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XMLSerializer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XMLSerializer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathEvaluator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathEvaluator.h" + > + </File> + <File + RelativePath="..\xml\XPathException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathExpression.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathExpression.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathExpressionNode.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathExpressionNode.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathFunctions.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathFunctions.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNamespace.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNamespace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNodeSet.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNodeSet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNSResolver.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathNSResolver.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathParser.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathPath.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathPath.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathPredicate.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathPredicate.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathResult.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathResult.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathStep.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathStep.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathUtil.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathUtil.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathValue.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathValue.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathVariableReference.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XPathVariableReference.h" + > + </File> + <File + RelativePath="..\..\pending\XSLImportRule.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLImportRule.h" + > + </File> + <File + RelativePath="..\..\pending\XSLStyleSheet.cpp" + > + </File> + <File + RelativePath="..\..\pending\XSLStyleSheet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLTExtensions.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLTExtensions.h" + > + </File> + <File + RelativePath="..\..\pending\XSLTProcessor.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLTProcessor.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLTUnicodeSort.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\xml\XSLTUnicodeSort.h" + > + </File> + </Filter> + <Filter + Name="dom" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\AtomicStringList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Attr.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Attr.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Attribute.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Attribute.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\BeforeTextInsertedEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\BeforeTextInsertedEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\BeforeUnloadEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\BeforeUnloadEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\CDATASection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\CDATASection.h" + > + </File> + <File + RelativePath="..\..\pending\CharacterData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\CharacterData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ChildNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ChildNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClassNames.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClassNames.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClassNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClassNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Clipboard.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Clipboard.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClipboardAccessPolicy.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClipboardEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ClipboardEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Comment.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Comment.h" + > + </File> + <File + RelativePath="..\..\pending\ContainerNode.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ContainerNode.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\CSSMappedAttributeDeclaration.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\CSSMappedAttributeDeclaration.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocPtr.h" + > + </File> + <File + RelativePath="..\..\pending\Document.cpp" + > + </File> + <File + RelativePath="..\..\pending\Document.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocumentFragment.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocumentFragment.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocumentMarker.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocumentType.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DocumentType.h" + > + </File> + <File + RelativePath="..\dom\DOMCoreException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DOMImplementation.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DOMImplementation.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DynamicNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\DynamicNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EditingText.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EditingText.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Element.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Element.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Entity.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Entity.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EntityReference.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EntityReference.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Event.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Event.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EventException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EventListener.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EventNames.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\EventNames.h" + > + </File> + <File + RelativePath="..\..\pending\EventTarget.cpp" + > + </File> + <File + RelativePath="..\..\pending\EventTarget.h" + > + </File> + <File + RelativePath="..\..\pending\EventTargetNode.cpp" + > + </File> + <File + RelativePath="..\..\pending\EventTargetNode.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ExceptionBase.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ExceptionBase.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ExceptionCode.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ExceptionCode.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\KeyboardEvent.cpp" + > + </File> + <File + RelativePath="..\..\pending\KeyboardEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MappedAttribute.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MappedAttribute.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MappedAttributeEntry.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MessageEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MessageEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MouseEvent.cpp" + > + </File> + <File + RelativePath="..\..\pending\MouseEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MouseRelatedEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MouseRelatedEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MutationEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\MutationEvent.h" + > + </File> + <File + RelativePath="..\..\pending\NamedAttrMap.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NamedAttrMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NamedMappedAttrMap.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NamedMappedAttrMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NamedNodeMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NameNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NameNodeList.h" + > + </File> + <File + RelativePath="..\..\pending\Node.cpp" + > + </File> + <File + RelativePath="..\..\pending\Node.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeFilter.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeFilter.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeFilterCondition.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeFilterCondition.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeIterator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\NodeIterator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Notation.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Notation.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\OverflowEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\OverflowEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Position.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Position.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\PositionIterator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\PositionIterator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ProcessingInstruction.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ProcessingInstruction.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ProgressEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\ProgressEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\QualifiedName.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\QualifiedName.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Range.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Range.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\RangeException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\RegisteredEventListener.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\RegisteredEventListener.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\SelectorNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\SelectorNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StaticNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StaticNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StyledElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StyledElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StyleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\StyleElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TagNodeList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TagNodeList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Text.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Text.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TextEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TextEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Tokenizer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Traversal.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\Traversal.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TreeWalker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\TreeWalker.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\UIEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\UIEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\UIEventWithKeyState.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\UIEventWithKeyState.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\WheelEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\WheelEvent.h" + > + </File> + <File + RelativePath="..\..\pending\XMLTokenizer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\dom\XMLTokenizer.h" + > + </File> + </Filter> + <Filter + Name="bridge" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\bridge\EditorClient.h" + > + </File> + <File + RelativePath="..\..\pending\GlobalHistory.h" + > + </File> + </Filter> + <Filter + Name="editing" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\AppendNodeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\AppendNodeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\ApplyStyleCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\ApplyStyleCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\BreakBlockquoteCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\BreakBlockquoteCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\CompositeEditCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\CompositeEditCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\CreateLinkCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\CreateLinkCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteButton.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteButton.h" + > + </File> + <File + RelativePath="..\..\pending\DeleteButtonController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteButtonController.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteFromTextNodeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteFromTextNodeCommand.h" + > + </File> + <File + RelativePath="..\..\pending\DeleteSelectionCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\DeleteSelectionCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditAction.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\Editor.cpp" + > + </File> + <File + RelativePath="..\..\pending\Editor.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditorCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditorDeleteAction.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\EditorInsertAction.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\FormatBlockCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\FormatBlockCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\htmlediting.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\htmlediting.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\HTMLInterchange.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\HTMLInterchange.h" + > + </File> + <File + RelativePath="..\..\pending\IndentOutdentCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\IndentOutdentCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertIntoTextNodeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertIntoTextNodeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertLineBreakCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertLineBreakCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertListCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertListCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertNodeBeforeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertNodeBeforeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertParagraphSeparatorCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertParagraphSeparatorCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertTextCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\InsertTextCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\JoinTextNodesCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\JoinTextNodesCommand.h" + > + </File> + <File + RelativePath="..\..\pending\markup.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\markup.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\MergeIdenticalElementsCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\MergeIdenticalElementsCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\ModifySelectionListLevel.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\ModifySelectionListLevel.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\MoveSelectionCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\MoveSelectionCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveCSSPropertyCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveCSSPropertyCommand.h" + > + </File> + <File + RelativePath="..\..\pending\RemoveFormatCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveFormatCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodeAttributeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodeAttributeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodePreservingChildrenCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\RemoveNodePreservingChildrenCommand.h" + > + </File> + <File + RelativePath="..\..\pending\ReplaceSelectionCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\ReplaceSelectionCommand.h" + > + </File> + <File + RelativePath="..\..\pending\Selection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\Selection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SelectionController.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SelectionController.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SetNodeAttributeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SetNodeAttributeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SmartReplace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SmartReplaceICU.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitElementCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitElementCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitTextNodeCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitTextNodeCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitTextNodeContainingElementCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\SplitTextNodeContainingElementCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TextAffinity.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TextGranularity.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TextIterator.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TextIterator.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TypingCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\TypingCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\UnlinkCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\UnlinkCommand.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\visible_units.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\visible_units.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\VisiblePosition.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\VisiblePosition.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\WrapContentsInDummySpanCommand.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\editing\WrapContentsInDummySpanCommand.h" + > + </File> + </Filter> + <Filter + Name="html" + > + <File + RelativePath="..\..\pending\CanvasGradient.cpp" + > + </File> + <File + RelativePath="..\..\pending\CanvasGradient.h" + > + </File> + <File + RelativePath="..\..\pending\CanvasPattern.cpp" + > + </File> + <File + RelativePath="..\..\pending\CanvasPattern.h" + > + </File> + <File + RelativePath="..\..\pending\CanvasRenderingContext2D.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\CanvasRenderingContext2D.h" + > + </File> + <File + RelativePath="..\..\pending\CanvasStyle.cpp" + > + </File> + <File + RelativePath="..\..\pending\CanvasStyle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\FormDataList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\FormDataList.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLAnchorElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLAnchorElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLAppletElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLAppletElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLAreaElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLAreaElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLAudioElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLAudioElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBaseElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBaseElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBaseFontElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBaseFontElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBlockquoteElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBlockquoteElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBodyElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBodyElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBRElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLBRElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLButtonElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLButtonElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLCanvasElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLCanvasElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLCollection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLCollection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDirectoryElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDirectoryElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDivElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDivElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDListElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDListElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLDocument.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLElementFactory.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLElementFactory.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLEmbedElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLEmbedElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLFieldSetElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFieldSetElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFontElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFontElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFormCollection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFormCollection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFormElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFormElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameElementBase.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameElementBase.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameOwnerElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameOwnerElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameSetElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLFrameSetElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLGenericFormElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLGenericFormElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHeadElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHeadElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHeadingElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHeadingElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHRElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHRElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHtmlElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLHtmlElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLIFrameElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLIFrameElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLImageElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLImageElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLImageLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLImageLoader.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLInputElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLInputElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLIsIndexElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLIsIndexElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLKeygenElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLKeygenElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLLabelElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLLabelElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLLegendElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLLegendElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLLIElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLLIElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLLinkElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLLinkElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMapElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMapElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMarqueeElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMarqueeElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMediaElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMediaElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMenuElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMenuElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMetaElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLMetaElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLModElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLModElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLNameCollection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLNameCollection.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLObjectElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLObjectElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOListElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOListElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLOptGroupElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOptGroupElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLOptionElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOptionElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOptionsCollection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLOptionsCollection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParagraphElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParagraphElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParamElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParamElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLParser.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParser.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParserErrorCodes.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLParserErrorCodes.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLPlugInElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLPlugInElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLPreElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLPreElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLQuoteElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLQuoteElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLScriptElement.cpp" + > + </File> + <File + RelativePath="..\..\pending\HTMLScriptElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLSelectElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLSelectElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLStyleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLStyleElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableCaptionElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableCaptionElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableCellElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableCellElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableColElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableColElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTablePartElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTablePartElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableRowElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableRowElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableRowsCollection.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableRowsCollection.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableSectionElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTableSectionElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTextAreaElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTextAreaElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTextFieldInnerElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTextFieldInnerElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTitleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTitleElement.h" + > + </File> + <File + RelativePath="..\..\pending\HTMLTokenizer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLTokenizer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLUListElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLUListElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLVideoElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLVideoElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLViewSourceDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\html\HTMLViewSourceDocument.h" + > + </File> + </Filter> + <Filter + Name="svg" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\ColorDistance.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\ColorDistance.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAngle.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAngle.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateColorElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateColorElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimatedPathData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimatedPathData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimatedPoints.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimatedPoints.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimatedTemplate.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateMotionElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateMotionElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateTransformElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimateTransformElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimationElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGAnimationElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGCircleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGCircleElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGClipPathElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGClipPathElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGColor.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGColor.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGComponentTransferFunctionElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGComponentTransferFunctionElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGCursorElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGCursorElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDefinitionSrcElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDefinitionSrcElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDefsElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDefsElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDescElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDescElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDocument.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDocument.h" + > + </File> + <File + RelativePath="..\..\pending\SVGDocumentExtensions.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGDocumentExtensions.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElementInstance.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElementInstance.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElementInstanceList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGElementInstanceList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGEllipseElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGEllipseElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGException.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGExternalResourcesRequired.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGExternalResourcesRequired.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEBlendElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEBlendElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEColorMatrixElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEColorMatrixElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEComponentTransferElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEComponentTransferElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFECompositeElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFECompositeElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDiffuseLightingElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDiffuseLightingElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDisplacementMapElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDisplacementMapElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDistantLightElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEDistantLightElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFloodElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFloodElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncAElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncAElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncBElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncBElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncGElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncGElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncRElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEFuncRElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEGaussianBlurElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEGaussianBlurElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEImageElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEImageElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFELightElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFELightElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEMergeElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEMergeElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEMergeNodeElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEMergeNodeElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEOffsetElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEOffsetElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEPointLightElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFEPointLightElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFESpecularLightingElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFESpecularLightingElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFESpotLightElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFESpotLightElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFETileElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFETileElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFETurbulenceElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFETurbulenceElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFilterElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFilterElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFilterPrimitiveStandardAttributes.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFilterPrimitiveStandardAttributes.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFitToViewBox.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFitToViewBox.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFont.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontData.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontData.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceFormatElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceFormatElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceNameElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceNameElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceSrcElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceSrcElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceUriElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGFontFaceUriElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGForeignObjectElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGForeignObjectElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGlyphElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGlyphElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGradientElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGGradientElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGImageElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGImageElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGImageLoader.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGImageLoader.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLangSpace.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLangSpace.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLength.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLength.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLengthList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLengthList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLinearGradientElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLinearGradientElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLineElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLineElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGListTraits.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLocatable.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGLocatable.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMarkerElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMarkerElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMaskElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMaskElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMetadataElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMetadataElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMissingGlyphElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMissingGlyphElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMPathElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGMPathElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGNumberList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGNumberList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPaint.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPaint.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGParserUtilities.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGParserUtilities.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSeg.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegArc.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegArc.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegClosePath.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegClosePath.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoCubic.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoCubic.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoCubicSmooth.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoCubicSmooth.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoQuadratic.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoQuadratic.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoQuadraticSmooth.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegCurvetoQuadraticSmooth.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLineto.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLineto.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLinetoHorizontal.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLinetoHorizontal.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLinetoVertical.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegLinetoVertical.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegMoveto.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPathSegMoveto.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPatternElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPatternElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPointList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPointList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolyElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolyElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolygonElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolygonElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolylineElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPolylineElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPreserveAspectRatio.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGPreserveAspectRatio.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGRadialGradientElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGRadialGradientElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGRectElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGRectElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGRenderingIntent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGScriptElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGScriptElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSetElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSetElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStopElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStopElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStringList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStringList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStylable.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStylable.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledLocatableElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledLocatableElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledTransformableElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyledTransformableElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGStyleElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSVGElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSVGElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSwitchElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSwitchElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSymbolElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGSymbolElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTests.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTests.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextContentElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextContentElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextPathElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextPathElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextPositioningElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTextPositioningElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTimer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTimer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTitleElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTitleElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransform.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransform.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformable.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformable.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformDistance.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformDistance.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformList.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTransformList.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTRefElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTRefElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTSpanElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGTSpanElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGUnitTypes.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGURIReference.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGURIReference.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGUseElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGUseElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGViewElement.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGViewElement.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGViewSpec.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGViewSpec.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGZoomAndPan.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGZoomAndPan.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGZoomEvent.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\SVGZoomEvent.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\TimeScheduler.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\TimeScheduler.h" + > + </File> + <Filter + Name="graphics" + > + <File + RelativePath="..\..\pending\SVGImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGImage.h" + > + </File> + <File + RelativePath="..\..\pending\SVGImageEmptyClients.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServer.cpp" + > + </File> + <File + RelativePath="..\..\pending\SVGPaintServer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerGradient.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerGradient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerLinearGradient.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerLinearGradient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerPattern.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerPattern.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerRadialGradient.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerRadialGradient.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerSolid.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGPaintServerSolid.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResource.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceClipper.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceClipper.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceFilter.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceFilter.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceListener.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceMarker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceMarker.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceMasker.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\SVGResourceMasker.h" + > + </File> + <Filter + Name="filters" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGDistantLightSource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEBlend.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEBlend.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEColorMatrix.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEColorMatrix.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEComponentTransfer.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEComponentTransfer.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEComposite.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEComposite.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEConvolveMatrix.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEConvolveMatrix.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEDiffuseLighting.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEDiffuseLighting.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEDisplacementMap.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEDisplacementMap.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEFlood.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEFlood.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEGaussianBlur.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEGaussianBlur.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEImage.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEImage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEMerge.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEMerge.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEMorphology.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEMorphology.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEOffset.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFEOffset.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFESpecularLighting.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFESpecularLighting.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFETile.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFETurbulence.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFETurbulence.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFilterEffect.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGFilterEffect.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGLightSource.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGLightSource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGPointLightSource.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\svg\graphics\filters\SVGSpotLightSource.h" + > + </File> + </Filter> + </Filter> + <Filter + Name="events" + > + <File + RelativePath="..\..\pending\JSSVGLazyEventListener.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\bindings\js\JSSVGLazyEventListener.h" + > + </File> + </Filter> + </Filter> + <Filter + Name="history" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\history\CachedPage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\history\HistoryItem.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\history\HistoryItem.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\history\PageCache.cpp" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\history\PageCache.h" + > + </File> + </Filter> + <Filter + Name="storage" + > + </Filter> + <Filter + Name="plugins" + > + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\npfunctions.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginDatabase.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginDebug.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginInfoStore.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginPackage.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginQuirkSet.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginStream.h" + > + </File> + <File + RelativePath="..\..\..\third_party\WebKit\WebCore\plugins\PluginView.h" + > + </File> + <File + RelativePath="..\precompiled_webkit.cc" + > + <FileConfiguration + Name="Debug|Win32" + > + <Tool + Name="VCCLCompilerTool" + UsePrecompiledHeader="1" + /> + </FileConfiguration> + <FileConfiguration + Name="Release|Win32" + ExcludedFromBuild="true" + > + <Tool + Name="VCCLCompilerTool" + /> + </FileConfiguration> + </File> + <File + RelativePath="..\precompiled_webkit.h" + > + </File> + </Filter> + </Files> + <Globals> + </Globals> +</VisualStudioProject> diff --git a/webkit/build/WebCore/generate_entitycodes.pl b/webkit/build/WebCore/generate_entitycodes.pl new file mode 100644 index 0000000..8ee0566 --- /dev/null +++ b/webkit/build/WebCore/generate_entitycodes.pl @@ -0,0 +1,79 @@ +#!/usr/bin/perl -w +# Copyright 2008, Google Inc. +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are +# met: +# +# * Redistributions of source code must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# * 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. +# * Neither the name of Google Inc. 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 THE COPYRIGHT HOLDERS AND 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 THE COPYRIGHT +# OWNER OR 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. + +# +# This script is for generating the reverse entity code mapping using +# HTMLEntityNames.gperf as input. + +# Get original file path from agruments. +my $originalFileName = shift; + +# Open file for reading. +open $FILE, "<", $originalFileName or die "Can't open $originalFileName: $!"; + +# status for indicating current parsing status. +# 0 means waiting start, 1 means starting parsing, 2 means stopping parsing. +my $parseStatus = 0; + +# Counter for calculating number of entities. +my $dataCount = 0; + +# print file head comments. +print "// This file is generated from HTMLEntityNames.gperf. DO NOT EDIT IT!\n\n"; + +#print an anonymous namespace to avoid link-time conflicts. +print "namespace {\n\n"; + +# print the strutcure declaration of EntityCode. +print "struct EntityCode {\n wchar_t code;\n const char* name;\n};\n\n"; + +# print the array declaration of entities. +print "static const EntityCode entity_codes[] = {\n"; + +while(<$FILE>) { + chomp; + if (/^\%\%$/i) { + ++$parseStatus; + } elsif (!/^\#/ && $parseStatus == 1) { + my ($name, $code) = split(/,/); + if (defined($name) && defined($code)) { + $name =~ s/\s//g; + $code =~ s/\s//g; + if (length($name) > 0 && length($code) > 0) { + print ",\n" if $dataCount > 0; + print " {$code, \"&$name;\"}"; + ++$dataCount; + } + } + } +} + +# print declaration of entity_codes_length and close anonymous namespace declaration. +print "\n};\n\nstatic int entity_codes_length = sizeof(entity_codes) / sizeof(EntityCode);\n\n}\n"; diff --git a/webkit/build/WebCore/webcore.vsprops b/webkit/build/WebCore/webcore.vsprops new file mode 100644 index 0000000..e0b0446 --- /dev/null +++ b/webkit/build/WebCore/webcore.vsprops @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="Windows-1252"?> +<VisualStudioPropertySheet + ProjectType="Visual C++" + Version="8.00" + Name="webcore" + InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\third_party\libxml\build\using_libxml.vsprops;$(SolutionDir)..\third_party\libxslt\build\using_libxslt.vsprops;..\webkit_common.vsprops" + > + <Tool + Name="VCCLCompilerTool" + PreprocessorDefinitions="__PRETTY_FUNCTION__=__FUNCTION__;DISABLE_ACTIVEX_TYPE_CONVERSION_MPLAYER2" + DisableSpecificWarnings="4138; 4244; 4291; 4305; 4355; 4521; 4099;" + /> +</VisualStudioPropertySheet> |