Changeset 35658 in webkit


Ignore:
Timestamp:
Aug 10, 2008 11:21:21 AM (16 years ago)
Author:
alp@webkit.org
Message:

2008-08-10 Jan Michael Alonzo <jmalonzo@webkit.org>

Reviewed (and updated) by Alp Toker.

https://bugs.webkit.org/show_bug.cgi?id=16620
[GTK] Autotools make dist and make check support

Get make dist working.

Note that not all possible configurations have been tested yet.

  • GNUmakefile.am:

2008-08-10 Alp Toker <alp@nuanti.com>

Remove leftover qmake/GTK+ build files.

  • DumpRenderTree/gtk/DumpRenderTree.pro: Removed.
  • GtkLauncher/GtkLauncher.pro: Removed.
Location:
trunk
Files:
3 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r35656 r35658  
     12008-08-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed (and updated) by Alp Toker.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=16620
     6        [GTK] Autotools make dist and make check support
     7
     8        Get make dist working.
     9
     10        Note that not all possible configurations have been tested yet.
     11
     12        * GNUmakefile.am:
     13
    1142008-08-09  Marco Barisione  <marco.barisione@collabora.co.uk>
    215
  • trunk/GNUmakefile.am

    r35600 r35658  
    66# _cppflags         = flags that will be passed to the C/CXX Preprocessor
    77# _sources          = sources that will be compiled and included in the distribution
    8 # _headers          = header files that will be part of the distribution
    98# _built_sources    = files that will be autogenerated by the build system and
    109#                     will be part of the _SOURCES primary
     
    4342noinst_PROGRAMS :=
    4443
     44noinst_HEADERS :=
     45
    4546lib_LIBRARIES :=
    4647
    4748IDL_BINDINGS :=
    48 
    49 # Files that will be distributed
    50 EXTRA_DIST :=
    5149
    5250# Global flags to CPP
     
    9795javascriptcore_built_sources :=
    9896javascriptcore_built_nosources :=
     97javascriptcore_dist :=
    9998
    10099javascriptcore_cppflags += \
     
    147146webcore_cppflags :=
    148147webcore_sources :=
    149 webcore_headers :=
    150148webcore_libadd :=
    151149webcore_built_sources :=
    152150webcore_built_nosources :=
     151webcore_dist :=
    153152webcoregtk_cppflags :=
    154153webcoregtk_sources :=
    155 webcoregtk_headers :=
    156154
    157155nodist_libWebCore_la_SOURCES = \
     
    159157
    160158libWebCore_la_SOURCES = \
    161         $(webcore_headers) \
    162159        $(webcore_sources) \
    163         $(webcoregtk_headers) \
    164160        $(webcoregtk_sources)
    165161
     
    225221# WebKit
    226222webkitgtk_h_api :=
    227 webkitgtk_headers :=
    228223webkitgtk_sources :=
    229224webkitgtk_cppflags :=
     
    241236
    242237libwebkit_1_0_la_SOURCES = \
    243         $(webkitgtk_headers) \
    244238        $(webkitgtk_sources)
    245239
     
    323317
    324318webkitgtk_built_sources += \
     319        DerivedSources/webkitenumtypes.cpp \
     320        DerivedSources/webkitmarshal.cpp \
    325321        DerivedSources/webkitmarshal.h \
    326         DerivedSources/webkitmarshal.cpp \
    327         DerivedSources/webkitenumtypes.cpp \
    328322        WebKit/gtk/webkit/webkitenumtypes.h
    329323
    330 webkitgtk_headers += \
    331         WebKit/gtk/webkit/webkitprivate.h \
     324webkitgtk_sources += \
     325        WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
    332326        WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
     327        WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
    333328        WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
     329        WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
    334330        WebKit/gtk/WebCoreSupport/DragClientGtk.h \
     331        WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
    335332        WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
     333        WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
    336334        WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
     335        WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
    337336        WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
    338         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h
    339 
    340 webkitgtk_sources += \
     337        WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \
     338        WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \
    341339        WebKit/gtk/webkit/webkitnetworkrequest.cpp \
    342340        WebKit/gtk/webkit/webkitprivate.cpp \
     341        WebKit/gtk/webkit/webkitprivate.h \
    343342        WebKit/gtk/webkit/webkitversion.cpp \
    344343        WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
     
    346345        WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
    347346        WebKit/gtk/webkit/webkitwebsettings.cpp \
    348         WebKit/gtk/webkit/webkitwebview.cpp \
    349         WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
    350         WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
    351         WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
    352         WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
    353         WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
    354         WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
    355         WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp
     347        WebKit/gtk/webkit/webkitwebview.cpp
    356348
    357349webkitgtk_cppflags += \
     
    452444
    453445# END WEBKIT GTK+
     446#
     447# Files that will be distributed
     448EXTRA_DIST = \
     449        $(javascriptcore_dist) \
     450        $(webcore_dist)
    454451
    455452# Files that will be cleaned
  • trunk/JavaScriptCore/ChangeLog

    r35657 r35658  
     12008-08-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed (and updated) by Alp Toker.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=16620
     6        [GTK] Autotools make dist and make check support
     7
     8        Get make dist working.
     9
     10        Note that not all possible configurations have been tested yet.
     11
     12        * GNUmakefile.am:
     13
    1142008-08-09  Alexey Proskuryakov  <ap@webkit.org>
    215
  • trunk/JavaScriptCore/GNUmakefile.am

    r35531 r35658  
    99
    1010javascriptcore_h_api += \
    11         JavaScriptCore/API/JavaScript.h \
    12         JavaScriptCore/API/JavaScriptCore.h \
    1311        JavaScriptCore/API/JSBase.h \
    1412        JavaScriptCore/API/JSContextRef.h \
    1513        JavaScriptCore/API/JSObjectRef.h \
     14        JavaScriptCore/API/JSStringRef.h \
    1615        JavaScriptCore/API/JSStringRefBSTR.h \
    1716        JavaScriptCore/API/JSStringRefCF.h \
    18         JavaScriptCore/API/JSStringRef.h \
    1917        JavaScriptCore/API/JSValueRef.h \
     18        JavaScriptCore/API/JavaScript.h \
     19        JavaScriptCore/API/JavaScriptCore.h \
    2020        JavaScriptCore/API/WebKitAvailability.h
    2121
    2222javascriptcore_built_nosources += \
     23        DerivedSources/lexer.lut.h \
    2324        JavaScriptCore/kjs/ArrayPrototype.lut.h \
    2425        JavaScriptCore/kjs/DatePrototype.lut.h \
     
    2829        JavaScriptCore/kjs/RegExpObject.lut.h \
    2930        JavaScriptCore/kjs/StringPrototype.lut.h \
    30         JavaScriptCore/pcre/chartables.c \
    31         DerivedSources/lexer.lut.h
     31        JavaScriptCore/pcre/chartables.c
    3232
    3333javascriptcore_sources += \
     34        JavaScriptCore/API/APICast.h \
    3435        JavaScriptCore/API/JSBase.cpp \
    3536        JavaScriptCore/API/JSCallbackConstructor.cpp \
     37        JavaScriptCore/API/JSCallbackConstructor.h \
    3638        JavaScriptCore/API/JSCallbackFunction.cpp \
     39        JavaScriptCore/API/JSCallbackFunction.h \
    3740        JavaScriptCore/API/JSCallbackObject.cpp \
     41        JavaScriptCore/API/JSCallbackObject.h \
     42        JavaScriptCore/API/JSCallbackObjectFunctions.h \
    3843        JavaScriptCore/API/JSClassRef.cpp \
     44        JavaScriptCore/API/JSClassRef.h \
    3945        JavaScriptCore/API/JSContextRef.cpp \
    4046        JavaScriptCore/API/JSObjectRef.cpp \
     47        JavaScriptCore/API/JSRetainPtr.h \
    4148        JavaScriptCore/API/JSStringRef.cpp \
    4249        JavaScriptCore/API/JSValueRef.cpp \
     50        JavaScriptCore/ForwardingHeaders/JavaScriptCore/APICast.h \
     51        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSBase.h \
     52        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSContextRef.h \
     53        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSObjectRef.h \
     54        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSRetainPtr.h \
     55        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSStringRef.h \
     56        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSStringRefCF.h \
     57        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSValueRef.h \
     58        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JavaScript.h \
     59        JavaScriptCore/ForwardingHeaders/JavaScriptCore/JavaScriptCore.h \
     60        JavaScriptCore/ForwardingHeaders/JavaScriptCore/WebKitAvailability.h \
     61        JavaScriptCore/JavaScriptCorePrefix.h \
     62        JavaScriptCore/VM/CodeBlock.cpp \
     63        JavaScriptCore/VM/CodeBlock.h \
     64        JavaScriptCore/VM/CodeGenerator.h \
     65        JavaScriptCore/VM/ExceptionHelpers.cpp \
     66        JavaScriptCore/VM/ExceptionHelpers.h \
     67        JavaScriptCore/VM/Instruction.h \
     68        JavaScriptCore/VM/JSPropertyNameIterator.cpp \
     69        JavaScriptCore/VM/JSPropertyNameIterator.h \
     70        JavaScriptCore/VM/LabelID.h \
     71        JavaScriptCore/VM/Machine.cpp \
     72        JavaScriptCore/VM/Machine.h \
     73        JavaScriptCore/VM/Opcode.cpp \
     74        JavaScriptCore/VM/Opcode.h \
     75        JavaScriptCore/VM/Register.h \
     76        JavaScriptCore/VM/RegisterFile.h \
     77        JavaScriptCore/VM/RegisterID.h \
     78        JavaScriptCore/VM/SamplingTool.cpp \
     79        JavaScriptCore/VM/SamplingTool.h \
     80        JavaScriptCore/VM/SegmentedVector.h \
     81        JavaScriptCore/icu/unicode/parseerr.h \
     82        JavaScriptCore/icu/unicode/platform.h \
     83        JavaScriptCore/icu/unicode/putil.h \
     84        JavaScriptCore/icu/unicode/uchar.h \
     85        JavaScriptCore/icu/unicode/ucnv.h \
     86        JavaScriptCore/icu/unicode/ucnv_err.h \
     87        JavaScriptCore/icu/unicode/ucol.h \
     88        JavaScriptCore/icu/unicode/uconfig.h \
     89        JavaScriptCore/icu/unicode/uenum.h \
     90        JavaScriptCore/icu/unicode/uiter.h \
     91        JavaScriptCore/icu/unicode/uloc.h \
     92        JavaScriptCore/icu/unicode/umachine.h \
     93        JavaScriptCore/icu/unicode/unorm.h \
     94        JavaScriptCore/icu/unicode/urename.h \
     95        JavaScriptCore/icu/unicode/uset.h \
     96        JavaScriptCore/icu/unicode/ustring.h \
     97        JavaScriptCore/icu/unicode/utf.h \
     98        JavaScriptCore/icu/unicode/utf16.h \
     99        JavaScriptCore/icu/unicode/utf8.h \
     100        JavaScriptCore/icu/unicode/utf_old.h \
     101        JavaScriptCore/icu/unicode/utypes.h \
     102        JavaScriptCore/icu/unicode/uversion.h \
     103        JavaScriptCore/kjs/ArgList.h \
     104        JavaScriptCore/kjs/Arguments.h \
     105        JavaScriptCore/kjs/ArrayConstructor.h \
     106        JavaScriptCore/kjs/ArrayPrototype.h \
     107        JavaScriptCore/kjs/BooleanConstructor.h \
     108        JavaScriptCore/kjs/BooleanObject.h \
     109        JavaScriptCore/kjs/BooleanPrototype.h \
     110        JavaScriptCore/kjs/CallData.h \
     111        JavaScriptCore/kjs/ClassInfo.h \
     112        JavaScriptCore/kjs/CommonIdentifiers.h \
     113        JavaScriptCore/kjs/ConstructData.h \
     114        JavaScriptCore/kjs/DateConstructor.h \
     115        JavaScriptCore/kjs/DateInstance.h \
     116        JavaScriptCore/kjs/DateMath.h \
     117        JavaScriptCore/kjs/DatePrototype.h \
    43118        JavaScriptCore/kjs/DebuggerCallFrame.cpp \
     119        JavaScriptCore/kjs/DebuggerCallFrame.h \
     120        JavaScriptCore/kjs/Error.h \
     121        JavaScriptCore/kjs/ErrorConstructor.h \
     122        JavaScriptCore/kjs/ErrorInstance.h \
     123        JavaScriptCore/kjs/ErrorPrototype.h \
    44124        JavaScriptCore/kjs/ExecState.cpp \
     125        JavaScriptCore/kjs/ExecState.h \
     126        JavaScriptCore/kjs/FunctionConstructor.h \
     127        JavaScriptCore/kjs/FunctionPrototype.h \
     128        JavaScriptCore/kjs/GetterSetter.h \
     129        JavaScriptCore/kjs/GlobalEvalFunction.h \
     130        JavaScriptCore/kjs/IndexToNameMap.h \
    45131        JavaScriptCore/kjs/InitializeThreading.cpp \
     132        JavaScriptCore/kjs/InitializeThreading.h \
     133        JavaScriptCore/kjs/InternalFunction.h \
     134        JavaScriptCore/kjs/JSActivation.cpp \
     135        JavaScriptCore/kjs/JSActivation.h \
     136        JavaScriptCore/kjs/JSArray.h \
     137        JavaScriptCore/kjs/JSCell.h \
     138        JavaScriptCore/kjs/JSFunction.h \
    46139        JavaScriptCore/kjs/JSGlobalData.cpp \
    47         JavaScriptCore/kjs/JSActivation.cpp \
     140        JavaScriptCore/kjs/JSGlobalData.h \
     141        JavaScriptCore/kjs/JSGlobalObject.h \
     142        JavaScriptCore/kjs/JSGlobalObjectFunctions.h \
     143        JavaScriptCore/kjs/JSImmediate.h \
    48144        JavaScriptCore/kjs/JSNotAnObject.cpp \
    49         JavaScriptCore/VM/CodeBlock.cpp \
    50         JavaScriptCore/VM/ExceptionHelpers.cpp \
    51         JavaScriptCore/VM/JSPropertyNameIterator.cpp \
    52         JavaScriptCore/VM/Machine.cpp \
    53         JavaScriptCore/VM/Opcode.cpp \
    54         JavaScriptCore/VM/SamplingTool.cpp \
     145        JavaScriptCore/kjs/JSNotAnObject.h \
     146        JavaScriptCore/kjs/JSNumberCell.h \
     147        JavaScriptCore/kjs/JSObject.h \
     148        JavaScriptCore/kjs/JSStaticScopeObject.h \
     149        JavaScriptCore/kjs/JSString.h \
     150        JavaScriptCore/kjs/JSType.h \
     151        JavaScriptCore/kjs/JSValue.h \
     152        JavaScriptCore/kjs/JSVariableObject.h \
     153        JavaScriptCore/kjs/JSWrapperObject.h \
     154        JavaScriptCore/kjs/LabelStack.h \
     155        JavaScriptCore/kjs/MathObject.h \
     156        JavaScriptCore/kjs/NativeErrorConstructor.h \
     157        JavaScriptCore/kjs/NativeErrorPrototype.h \
     158        JavaScriptCore/kjs/NodeInfo.h \
     159        JavaScriptCore/kjs/NumberConstructor.h \
     160        JavaScriptCore/kjs/NumberObject.h \
     161        JavaScriptCore/kjs/NumberPrototype.h \
     162        JavaScriptCore/kjs/ObjectConstructor.h \
     163        JavaScriptCore/kjs/ObjectPrototype.h \
     164        JavaScriptCore/kjs/Parser.h \
     165        JavaScriptCore/kjs/PropertyMap.h \
     166        JavaScriptCore/kjs/PropertyNameArray.h \
     167        JavaScriptCore/kjs/PropertySlot.h \
     168        JavaScriptCore/kjs/PrototypeFunction.h \
     169        JavaScriptCore/kjs/RegExpConstructor.h \
     170        JavaScriptCore/kjs/RegExpObject.h \
     171        JavaScriptCore/kjs/RegExpPrototype.h \
     172        JavaScriptCore/kjs/ScopeChain.h \
     173        JavaScriptCore/kjs/ScopeChainMark.h \
     174        JavaScriptCore/kjs/SourceProvider.h \
     175        JavaScriptCore/kjs/SourceRange.h \
     176        JavaScriptCore/kjs/StringConstructor.h \
     177        JavaScriptCore/kjs/StringObject.h \
     178        JavaScriptCore/kjs/StringObjectThatMasqueradesAsUndefined.h \
     179        JavaScriptCore/kjs/StringPrototype.h \
     180        JavaScriptCore/kjs/SymbolTable.h \
     181        JavaScriptCore/kjs/Tracing.h \
     182        JavaScriptCore/kjs/collector.h \
     183        JavaScriptCore/kjs/completion.h \
     184        JavaScriptCore/kjs/config.h \
     185        JavaScriptCore/kjs/debugger.h \
     186        JavaScriptCore/kjs/dtoa.h \
     187        JavaScriptCore/kjs/identifier.h \
     188        JavaScriptCore/kjs/interpreter.h \
     189        JavaScriptCore/kjs/lexer.h \
     190        JavaScriptCore/kjs/lookup.h \
     191        JavaScriptCore/kjs/nodes.h \
     192        JavaScriptCore/kjs/operations.h \
     193        JavaScriptCore/kjs/protect.h \
     194        JavaScriptCore/kjs/regexp.h \
     195        JavaScriptCore/kjs/ustring.h \
     196        JavaScriptCore/os-win32/stdbool.h \
     197        JavaScriptCore/os-win32/stdint.h \
     198        JavaScriptCore/pcre/pcre.h \
    55199        JavaScriptCore/pcre/pcre_compile.cpp \
    56200        JavaScriptCore/pcre/pcre_exec.cpp \
     201        JavaScriptCore/pcre/pcre_internal.h \
    57202        JavaScriptCore/pcre/pcre_tables.cpp \
    58203        JavaScriptCore/pcre/pcre_ucp_searchfuncs.cpp \
    59204        JavaScriptCore/pcre/pcre_xclass.cpp \
     205        JavaScriptCore/pcre/ucpinternal.h \
     206        JavaScriptCore/profiler/CallIdentifier.h \
    60207        JavaScriptCore/profiler/HeavyProfile.cpp \
     208        JavaScriptCore/profiler/HeavyProfile.h \
     209        JavaScriptCore/profiler/Profile.cpp \
     210        JavaScriptCore/profiler/Profile.h \
    61211        JavaScriptCore/profiler/ProfileGenerator.cpp \
     212        JavaScriptCore/profiler/ProfileGenerator.h \
    62213        JavaScriptCore/profiler/ProfileNode.cpp \
    63         JavaScriptCore/profiler/Profile.cpp \
     214        JavaScriptCore/profiler/ProfileNode.h \
    64215        JavaScriptCore/profiler/Profiler.cpp \
     216        JavaScriptCore/profiler/Profiler.h \
    65217        JavaScriptCore/profiler/TreeProfile.cpp \
     218        JavaScriptCore/profiler/TreeProfile.h \
     219        JavaScriptCore/wtf/ASCIICType.h \
     220        JavaScriptCore/wtf/AVLTree.h \
     221        JavaScriptCore/wtf/AlwaysInline.h \
    66222        JavaScriptCore/wtf/Assertions.cpp \
     223        JavaScriptCore/wtf/Assertions.h \
     224        JavaScriptCore/wtf/Deque.h \
     225        JavaScriptCore/wtf/DisallowCType.h \
     226        JavaScriptCore/wtf/FastMalloc.h \
     227        JavaScriptCore/wtf/Forward.h \
     228        JavaScriptCore/wtf/GetPtr.h \
     229        JavaScriptCore/wtf/HashCountedSet.h \
     230        JavaScriptCore/wtf/HashFunctions.h \
     231        JavaScriptCore/wtf/HashIterators.h \
     232        JavaScriptCore/wtf/HashMap.h \
     233        JavaScriptCore/wtf/HashSet.h \
    67234        JavaScriptCore/wtf/HashTable.cpp \
     235        JavaScriptCore/wtf/HashTable.h \
     236        JavaScriptCore/wtf/HashTraits.h \
     237        JavaScriptCore/wtf/ListHashSet.h \
     238        JavaScriptCore/wtf/ListRefPtr.h \
     239        JavaScriptCore/wtf/Locker.h \
    68240        JavaScriptCore/wtf/MainThread.cpp \
     241        JavaScriptCore/wtf/MainThread.h \
     242        JavaScriptCore/wtf/MallocZoneSupport.h \
     243        JavaScriptCore/wtf/MathExtras.h \
     244        JavaScriptCore/wtf/MessageQueue.h \
     245        JavaScriptCore/wtf/Noncopyable.h \
     246        JavaScriptCore/wtf/OwnArrayPtr.h \
     247        JavaScriptCore/wtf/OwnPtr.h \
     248        JavaScriptCore/wtf/PassRefPtr.h \
     249        JavaScriptCore/wtf/Platform.h \
     250        JavaScriptCore/wtf/RefCounted.h \
    69251        JavaScriptCore/wtf/RefCountedLeakCounter.cpp \
     252        JavaScriptCore/wtf/RefCountedLeakCounter.h \
     253        JavaScriptCore/wtf/RefPtr.h \
     254        JavaScriptCore/wtf/RefPtrHashMap.h \
     255        JavaScriptCore/wtf/RetainPtr.h \
     256        JavaScriptCore/wtf/StringExtras.h \
     257        JavaScriptCore/wtf/TCPackedCache.h \
     258        JavaScriptCore/wtf/TCPageMap.h \
     259        JavaScriptCore/wtf/TCSpinLock.h \
     260        JavaScriptCore/wtf/TCSystemAlloc.h \
     261        JavaScriptCore/wtf/ThreadSpecific.h \
     262        JavaScriptCore/wtf/Threading.h \
    70263        JavaScriptCore/wtf/ThreadingGtk.cpp \
     264        JavaScriptCore/wtf/UnusedParam.h \
     265        JavaScriptCore/wtf/Vector.h \
     266        JavaScriptCore/wtf/VectorTraits.h \
    71267        JavaScriptCore/wtf/gtk/MainThreadGtk.cpp \
     268        JavaScriptCore/wtf/unicode/Collator.h \
    72269        JavaScriptCore/wtf/unicode/CollatorDefault.cpp \
     270        JavaScriptCore/wtf/unicode/UTF8.cpp \
     271        JavaScriptCore/wtf/unicode/UTF8.h \
     272        JavaScriptCore/wtf/unicode/Unicode.h \
    73273        JavaScriptCore/wtf/unicode/icu/CollatorICU.cpp \
    74         JavaScriptCore/wtf/unicode/UTF8.cpp
     274        JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h
    75275
    76276# Debug build
    77277if ENABLE_DEBUG
    78278javascriptcore_built_sources += \
    79         DerivedSources/grammar.h \
    80         DerivedSources/grammar.cpp
     279        DerivedSources/grammar.cpp \
     280        DerivedSources/grammar.h
    81281
    82282javascriptcore_sources += \
     283        JavaScriptCore/VM/CodeGenerator.cpp \
     284        JavaScriptCore/VM/RegisterFile.cpp \
    83285        JavaScriptCore/kjs/ArgList.cpp \
    84286        JavaScriptCore/kjs/Arguments.cpp \
     
    89291        JavaScriptCore/kjs/BooleanPrototype.cpp \
    90292        JavaScriptCore/kjs/CallData.cpp \
    91         JavaScriptCore/kjs/collector.cpp \
    92293        JavaScriptCore/kjs/CommonIdentifiers.cpp \
    93294        JavaScriptCore/kjs/ConstructData.cpp \
     
    96297        JavaScriptCore/kjs/DateMath.cpp \
    97298        JavaScriptCore/kjs/DatePrototype.cpp \
    98         JavaScriptCore/kjs/debugger.cpp \
    99         JavaScriptCore/kjs/dtoa.cpp \
    100299        JavaScriptCore/kjs/Error.cpp \
    101300        JavaScriptCore/kjs/ErrorConstructor.cpp \
     
    106305        JavaScriptCore/kjs/GetterSetter.cpp \
    107306        JavaScriptCore/kjs/GlobalEvalFunction.cpp \
    108         JavaScriptCore/kjs/identifier.cpp \
    109307        JavaScriptCore/kjs/IndexToNameMap.cpp \
    110308        JavaScriptCore/kjs/InternalFunction.cpp \
    111         JavaScriptCore/kjs/interpreter.cpp \
    112309        JavaScriptCore/kjs/JSArray.cpp \
    113310        JavaScriptCore/kjs/JSCell.cpp \
     
    124321        JavaScriptCore/kjs/JSWrapperObject.cpp \
    125322        JavaScriptCore/kjs/LabelStack.cpp \
    126         JavaScriptCore/kjs/lexer.cpp \
    127         JavaScriptCore/kjs/lookup.cpp \
    128323        JavaScriptCore/kjs/MathObject.cpp \
    129324        JavaScriptCore/kjs/NativeErrorConstructor.cpp \
    130325        JavaScriptCore/kjs/NativeErrorPrototype.cpp \
    131         JavaScriptCore/kjs/nodes.cpp \
    132         JavaScriptCore/kjs/nodes2string.cpp \
    133326        JavaScriptCore/kjs/NumberConstructor.cpp \
    134327        JavaScriptCore/kjs/NumberObject.cpp \
     
    136329        JavaScriptCore/kjs/ObjectConstructor.cpp \
    137330        JavaScriptCore/kjs/ObjectPrototype.cpp \
    138         JavaScriptCore/kjs/operations.cpp \
    139331        JavaScriptCore/kjs/Parser.cpp \
    140332        JavaScriptCore/kjs/PropertyMap.cpp \
     
    142334        JavaScriptCore/kjs/PropertySlot.cpp \
    143335        JavaScriptCore/kjs/PrototypeFunction.cpp \
    144         JavaScriptCore/kjs/regexp.cpp \
    145336        JavaScriptCore/kjs/RegExpConstructor.cpp \
    146337        JavaScriptCore/kjs/RegExpObject.cpp \
     
    150341        JavaScriptCore/kjs/StringObject.cpp \
    151342        JavaScriptCore/kjs/StringPrototype.cpp \
     343        JavaScriptCore/kjs/collector.cpp \
     344        JavaScriptCore/kjs/debugger.cpp \
     345        JavaScriptCore/kjs/dtoa.cpp \
     346        JavaScriptCore/kjs/identifier.cpp \
     347        JavaScriptCore/kjs/interpreter.cpp \
     348        JavaScriptCore/kjs/lexer.cpp \
     349        JavaScriptCore/kjs/lookup.cpp \
     350        JavaScriptCore/kjs/nodes.cpp \
     351        JavaScriptCore/kjs/nodes2string.cpp \
     352        JavaScriptCore/kjs/operations.cpp \
     353        JavaScriptCore/kjs/regexp.cpp \
    152354        JavaScriptCore/kjs/ustring.cpp \
    153355        JavaScriptCore/wtf/FastMalloc.cpp \
    154         JavaScriptCore/wtf/TCSystemAlloc.cpp \
    155         JavaScriptCore/VM/CodeGenerator.cpp \
    156         JavaScriptCore/VM/RegisterFile.cpp
     356        JavaScriptCore/wtf/TCSystemAlloc.cpp
    157357
    158358else
    159359javascriptcore_built_nosources += \
    160         DerivedSources/grammar.h \
    161         DerivedSources/grammar.cpp
     360        DerivedSources/grammar.cpp \
     361        DerivedSources/grammar.h
    162362
    163363javascriptcore_sources += \
     
    191391Programs_minidom_SOURCES = \
    192392        JavaScriptCore/API/tests/JSNode.c \
     393        JavaScriptCore/API/tests/JSNode.h \
    193394        JavaScriptCore/API/tests/JSNodeList.c \
     395        JavaScriptCore/API/tests/JSNodeList.h \
    194396        JavaScriptCore/API/tests/Node.c \
     397        JavaScriptCore/API/tests/Node.h \
    195398        JavaScriptCore/API/tests/NodeList.c \
     399        JavaScriptCore/API/tests/NodeList.h \
    196400        JavaScriptCore/API/tests/minidom.c
    197401
     
    218422
    219423# jsc
    220 Programs_jsc_SOURCES = JavaScriptCore/kjs/Shell.cpp
     424Programs_jsc_SOURCES = \
     425        JavaScriptCore/kjs/Shell.cpp
    221426
    222427Programs_jsc_CPPFLAGS = \
     
    234439Programs_jsc_LDADD = \
    235440        libJavaScriptCore.la
     441
     442javascriptcore_dist += \
     443        $(CREATE_HASH_TABLE) \
     444        JavaScriptCore/AUTHORS \
     445        JavaScriptCore/ChangeLog \
     446        JavaScriptCore/THANKS \
     447        JavaScriptCore/icu/LICENSE \
     448        JavaScriptCore/icu/README \
     449        JavaScriptCore/pcre/COPYING \
     450        JavaScriptCore/pcre/AUTHORS \
     451        JavaScriptCore/pcre/dftables \
     452        JavaScriptCore/pcre/ucptable.cpp \
     453        JavaScriptCore/kjs/grammar.y \
     454        JavaScriptCore/kjs/keywords.table
    236455
    237456# Clean rules for JavaScriptCore
  • trunk/WebCore/ChangeLog

    r35649 r35658  
     12008-08-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed (and updated) by Alp Toker.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=16620
     6        [GTK] Autotools make dist and make check support
     7
     8        Get make dist working.
     9
     10        Note that not all possible configurations have been tested yet.
     11
     12        * GNUmakefile.am:
     13
    1142008-08-08  Beth Dakin  <bdakin@apple.com>
    215
  • trunk/WebCore/GNUmakefile.am

    r35627 r35658  
    416416        WebCore/html/CanvasGradient.idl \
    417417        WebCore/html/CanvasPattern.idl \
     418        WebCore/html/CanvasPixelArray.idl \
    418419        WebCore/html/CanvasRenderingContext2D.idl \
    419420        WebCore/html/HTMLAnchorElement.idl \
     
    482483        WebCore/page/DOMWindow.idl \
    483484        WebCore/page/History.idl \
     485        WebCore/html/File.idl \
     486        WebCore/html/FileList.idl \
     487        WebCore/html/ImageData.idl \
    484488        WebCore/page/JavaScriptCallFrame.idl \
    485489        WebCore/page/Location.idl \
     
    498502        WebCore/xml/XSLTProcessor.idl
    499503
    500 webcore_headers += \
    501         WebCore/loader/icon/IconDatabase.h
    502 
    503504webcore_sources += \
     505        WebCore/ForwardingHeaders/kjs/Activation.h \
     506        WebCore/ForwardingHeaders/kjs/ArgList.h \
     507        WebCore/ForwardingHeaders/kjs/ArrayPrototype.h \
     508        WebCore/ForwardingHeaders/kjs/BooleanObject.h \
     509        WebCore/ForwardingHeaders/kjs/CallData.h \
     510        WebCore/ForwardingHeaders/kjs/ConstructData.h \
     511        WebCore/ForwardingHeaders/kjs/DateInstance.h \
     512        WebCore/ForwardingHeaders/kjs/DebuggerCallFrame.h \
     513        WebCore/ForwardingHeaders/kjs/Error.h \
     514        WebCore/ForwardingHeaders/kjs/ExecState.h \
     515        WebCore/ForwardingHeaders/kjs/FunctionCallProfile.h \
     516        WebCore/ForwardingHeaders/kjs/FunctionConstructor.h \
     517        WebCore/ForwardingHeaders/kjs/FunctionPrototype.h \
     518        WebCore/ForwardingHeaders/kjs/InitializeThreading.h \
     519        WebCore/ForwardingHeaders/kjs/InternalFunction.h \
     520        WebCore/ForwardingHeaders/kjs/JSArray.h \
     521        WebCore/ForwardingHeaders/kjs/JSFunction.h \
     522        WebCore/ForwardingHeaders/kjs/JSGlobalData.h \
     523        WebCore/ForwardingHeaders/kjs/JSGlobalObject.h \
     524        WebCore/ForwardingHeaders/kjs/JSNumberCell.h \
     525        WebCore/ForwardingHeaders/kjs/JSObject.h \
     526        WebCore/ForwardingHeaders/kjs/JSString.h \
     527        WebCore/ForwardingHeaders/kjs/JSValue.h \
     528        WebCore/ForwardingHeaders/kjs/ObjectPrototype.h \
     529        WebCore/ForwardingHeaders/kjs/PropertyMap.h \
     530        WebCore/ForwardingHeaders/kjs/PropertyNameArray.h \
     531        WebCore/ForwardingHeaders/kjs/PrototypeFunction.h \
     532        WebCore/ForwardingHeaders/kjs/Register.h \
     533        WebCore/ForwardingHeaders/kjs/RegisterID.h \
     534        WebCore/ForwardingHeaders/kjs/SavedBuiltins.h \
     535        WebCore/ForwardingHeaders/kjs/SourceProvider.h \
     536        WebCore/ForwardingHeaders/kjs/StringObject.h \
     537        WebCore/ForwardingHeaders/kjs/StringObjectThatMasqueradesAsUndefined.h \
     538        WebCore/ForwardingHeaders/kjs/StringPrototype.h \
     539        WebCore/ForwardingHeaders/kjs/SymbolTable.h \
     540        WebCore/ForwardingHeaders/kjs/collector.h \
     541        WebCore/ForwardingHeaders/kjs/completion.h \
     542        WebCore/ForwardingHeaders/kjs/debugger.h \
     543        WebCore/ForwardingHeaders/kjs/dtoa.h \
     544        WebCore/ForwardingHeaders/kjs/identifier.h \
     545        WebCore/ForwardingHeaders/kjs/interpreter.h \
     546        WebCore/ForwardingHeaders/kjs/lookup.h \
     547        WebCore/ForwardingHeaders/kjs/operations.h \
     548        WebCore/ForwardingHeaders/kjs/protect.h \
     549        WebCore/ForwardingHeaders/kjs/ustring.h \
     550        WebCore/ForwardingHeaders/pcre/pcre.h \
     551        WebCore/ForwardingHeaders/profiler/Profile.h \
     552        WebCore/ForwardingHeaders/profiler/ProfileNode.h \
     553        WebCore/ForwardingHeaders/profiler/Profiler.h \
     554        WebCore/ForwardingHeaders/wtf/ASCIICType.h \
     555        WebCore/ForwardingHeaders/wtf/AlwaysInline.h \
     556        WebCore/ForwardingHeaders/wtf/Assertions.h \
     557        WebCore/ForwardingHeaders/wtf/Deque.h \
     558        WebCore/ForwardingHeaders/wtf/DisallowCType.h \
     559        WebCore/ForwardingHeaders/wtf/FastMalloc.h \
     560        WebCore/ForwardingHeaders/wtf/Forward.h \
     561        WebCore/ForwardingHeaders/wtf/GetPtr.h \
     562        WebCore/ForwardingHeaders/wtf/HashCountedSet.h \
     563        WebCore/ForwardingHeaders/wtf/HashMap.h \
     564        WebCore/ForwardingHeaders/wtf/HashSet.h \
     565        WebCore/ForwardingHeaders/wtf/HashTable.h \
     566        WebCore/ForwardingHeaders/wtf/HashTraits.h \
     567        WebCore/ForwardingHeaders/wtf/ListHashSet.h \
     568        WebCore/ForwardingHeaders/wtf/ListRefPtr.h \
     569        WebCore/ForwardingHeaders/wtf/Locker.h \
     570        WebCore/ForwardingHeaders/wtf/MainThread.h \
     571        WebCore/ForwardingHeaders/wtf/MathExtras.h \
     572        WebCore/ForwardingHeaders/wtf/MessageQueue.h \
     573        WebCore/ForwardingHeaders/wtf/Noncopyable.h \
     574        WebCore/ForwardingHeaders/wtf/OwnArrayPtr.h \
     575        WebCore/ForwardingHeaders/wtf/OwnPtr.h \
     576        WebCore/ForwardingHeaders/wtf/PassRefPtr.h \
     577        WebCore/ForwardingHeaders/wtf/Platform.h \
     578        WebCore/ForwardingHeaders/wtf/RefCounted.h \
     579        WebCore/ForwardingHeaders/wtf/RefCountedLeakCounter.h \
     580        WebCore/ForwardingHeaders/wtf/RefPtr.h \
     581        WebCore/ForwardingHeaders/wtf/RetainPtr.h \
     582        WebCore/ForwardingHeaders/wtf/StringExtras.h \
     583        WebCore/ForwardingHeaders/wtf/ThreadSpecific.h \
     584        WebCore/ForwardingHeaders/wtf/Threading.h \
     585        WebCore/ForwardingHeaders/wtf/UnusedParam.h \
     586        WebCore/ForwardingHeaders/wtf/Vector.h \
     587        WebCore/ForwardingHeaders/wtf/VectorTraits.h \
     588        WebCore/ForwardingHeaders/wtf/unicode/Collator.h \
     589        WebCore/ForwardingHeaders/wtf/unicode/UTF8.h \
     590        WebCore/ForwardingHeaders/wtf/unicode/Unicode.h \
     591        WebCore/ForwardingHeaders/wtf/unicode/icu/UnicodeIcu.h \
     592        WebCore/WebCorePrefix.h \
    504593        WebCore/bindings/js/GCController.cpp \
     594        WebCore/bindings/js/GCController.h \
    505595        WebCore/bindings/js/JSAttrCustom.cpp \
     596        WebCore/bindings/js/JSCSSRuleCustom.cpp \
     597        WebCore/bindings/js/JSCSSStyleDeclarationCustom.cpp \
     598        WebCore/bindings/js/JSCSSStyleDeclarationCustom.h \
     599        WebCore/bindings/js/JSCSSValueCustom.cpp \
    506600        WebCore/bindings/js/JSCanvasPixelArrayCustom.cpp \
    507601        WebCore/bindings/js/JSCanvasRenderingContext2DCustom.cpp \
    508602        WebCore/bindings/js/JSClipboardCustom.cpp \
    509603        WebCore/bindings/js/JSConsoleCustom.cpp \
    510         WebCore/bindings/js/JSCSSRuleCustom.cpp \
    511         WebCore/bindings/js/JSCSSStyleDeclarationCustom.cpp \
    512         WebCore/bindings/js/JSCSSValueCustom.cpp \
    513604        WebCore/bindings/js/JSCustomVoidCallback.cpp \
     605        WebCore/bindings/js/JSCustomVoidCallback.h \
    514606        WebCore/bindings/js/JSCustomXPathNSResolver.cpp \
     607        WebCore/bindings/js/JSCustomXPathNSResolver.h \
     608        WebCore/bindings/js/JSDOMBinding.cpp \
     609        WebCore/bindings/js/JSDOMBinding.h \
     610        WebCore/bindings/js/JSDOMWindowBase.cpp \
     611        WebCore/bindings/js/JSDOMWindowBase.h \
     612        WebCore/bindings/js/JSDOMWindowCustom.cpp \
     613        WebCore/bindings/js/JSDOMWindowCustom.h \
     614        WebCore/bindings/js/JSDOMWindowShell.cpp \
     615        WebCore/bindings/js/JSDOMWindowShell.h \
    515616        WebCore/bindings/js/JSDocumentCustom.cpp \
    516617        WebCore/bindings/js/JSDocumentFragmentCustom.cpp \
    517         WebCore/bindings/js/JSDOMWindowBase.cpp \
    518         WebCore/bindings/js/JSDOMWindowCustom.cpp \
    519         WebCore/bindings/js/JSDOMWindowShell.cpp \
    520618        WebCore/bindings/js/JSElementCustom.cpp \
    521619        WebCore/bindings/js/JSEventCustom.cpp \
     620        WebCore/bindings/js/JSEventListener.cpp \
     621        WebCore/bindings/js/JSEventListener.h \
    522622        WebCore/bindings/js/JSEventTargetBase.cpp \
    523         WebCore/bindings/js/JSHistoryCustom.cpp \
    524         WebCore/bindings/js/JSImageConstructor.cpp \
    525         WebCore/bindings/js/JSInspectedObjectWrapper.cpp \
    526         WebCore/bindings/js/JSInspectorCallbackWrapper.cpp \
    527         WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp \
    528         WebCore/bindings/js/JSLocationCustom.cpp \
     623        WebCore/bindings/js/JSEventTargetBase.h \
    529624        WebCore/bindings/js/JSEventTargetNode.cpp \
     625        WebCore/bindings/js/JSEventTargetNode.h \
     626        WebCore/bindings/js/JSHTMLAllCollection.h \
    530627        WebCore/bindings/js/JSHTMLAppletElementCustom.cpp \
     628        WebCore/bindings/js/JSHTMLAppletElementCustom.h \
    531629        WebCore/bindings/js/JSHTMLCollectionCustom.cpp \
    532630        WebCore/bindings/js/JSHTMLDocumentCustom.cpp \
    533631        WebCore/bindings/js/JSHTMLElementCustom.cpp \
    534632        WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp \
     633        WebCore/bindings/js/JSHTMLEmbedElementCustom.h \
    535634        WebCore/bindings/js/JSHTMLFormElementCustom.cpp \
    536635        WebCore/bindings/js/JSHTMLFrameElementCustom.cpp \
     
    538637        WebCore/bindings/js/JSHTMLIFrameElementCustom.cpp \
    539638        WebCore/bindings/js/JSHTMLInputElementBase.cpp \
     639        WebCore/bindings/js/JSHTMLInputElementBase.h \
    540640        WebCore/bindings/js/JSHTMLObjectElementCustom.cpp \
     641        WebCore/bindings/js/JSHTMLObjectElementCustom.h \
    541642        WebCore/bindings/js/JSHTMLOptionElementConstructor.cpp \
     643        WebCore/bindings/js/JSHTMLOptionElementConstructor.h \
    542644        WebCore/bindings/js/JSHTMLOptionsCollectionCustom.cpp \
    543645        WebCore/bindings/js/JSHTMLSelectElementCustom.cpp \
     646        WebCore/bindings/js/JSHTMLSelectElementCustom.h \
     647        WebCore/bindings/js/JSHistoryCustom.cpp \
     648        WebCore/bindings/js/JSHistoryCustom.h \
     649        WebCore/bindings/js/JSImageConstructor.cpp \
     650        WebCore/bindings/js/JSImageConstructor.h \
     651        WebCore/bindings/js/JSInspectedObjectWrapper.cpp \
     652        WebCore/bindings/js/JSInspectedObjectWrapper.h \
     653        WebCore/bindings/js/JSInspectorCallbackWrapper.cpp \
     654        WebCore/bindings/js/JSInspectorCallbackWrapper.h \
     655        WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp \
     656        WebCore/bindings/js/JSLocationCustom.cpp \
     657        WebCore/bindings/js/JSLocationCustom.h \
    544658        WebCore/bindings/js/JSMimeTypeArrayCustom.cpp \
     659        WebCore/bindings/js/JSNSResolver.cpp \
     660        WebCore/bindings/js/JSNSResolver.h \
    545661        WebCore/bindings/js/JSNamedNodeMapCustom.cpp \
    546         WebCore/bindings/js/JSNamedNodesCollection.cpp  \
    547         WebCore/bindings/js/JSNavigatorCustom.cpp  \
     662        WebCore/bindings/js/JSNamedNodesCollection.cpp \
     663        WebCore/bindings/js/JSNamedNodesCollection.h \
     664        WebCore/bindings/js/JSNavigatorCustom.cpp \
    548665        WebCore/bindings/js/JSNodeCustom.cpp \
    549666        WebCore/bindings/js/JSNodeFilterCondition.cpp \
     667        WebCore/bindings/js/JSNodeFilterCondition.h \
    550668        WebCore/bindings/js/JSNodeFilterCustom.cpp \
    551669        WebCore/bindings/js/JSNodeIteratorCustom.cpp \
    552670        WebCore/bindings/js/JSNodeListCustom.cpp \
    553         WebCore/bindings/js/JSNSResolver.cpp \
    554         WebCore/bindings/js/JSQuarantinedObjectWrapper.cpp \
    555         WebCore/bindings/js/JSRGBColor.cpp \
    556671        WebCore/bindings/js/JSPluginArrayCustom.cpp \
    557672        WebCore/bindings/js/JSPluginCustom.cpp \
     673        WebCore/bindings/js/JSPluginElementFunctions.cpp \
     674        WebCore/bindings/js/JSPluginElementFunctions.h \
     675        WebCore/bindings/js/JSQuarantinedObjectWrapper.cpp \
     676        WebCore/bindings/js/JSQuarantinedObjectWrapper.h \
     677        WebCore/bindings/js/JSRGBColor.cpp \
     678        WebCore/bindings/js/JSRGBColor.h \
     679        WebCore/bindings/js/JSStorageCustom.h \
    558680        WebCore/bindings/js/JSStyleSheetCustom.cpp \
    559681        WebCore/bindings/js/JSStyleSheetListCustom.cpp \
    560682        WebCore/bindings/js/JSTextCustom.cpp \
    561683        WebCore/bindings/js/JSTreeWalkerCustom.cpp \
     684        WebCore/bindings/js/JSXMLHttpRequestConstructor.cpp \
     685        WebCore/bindings/js/JSXMLHttpRequestConstructor.h \
    562686        WebCore/bindings/js/JSXMLHttpRequestCustom.cpp \
    563687        WebCore/bindings/js/JSXMLHttpRequestUploadCustom.cpp \
    564         WebCore/bindings/js/JSXMLHttpRequestConstructor.cpp \
     688        WebCore/bindings/js/JSXSLTProcessorConstructor.cpp \
     689        WebCore/bindings/js/JSXSLTProcessorConstructor.h \
    565690        WebCore/bindings/js/JSXSLTProcessorCustom.cpp \
    566         WebCore/bindings/js/JSXSLTProcessorConstructor.cpp \
    567         WebCore/bindings/js/JSDOMBinding.cpp \
    568         WebCore/bindings/js/JSEventListener.cpp \
    569         WebCore/bindings/js/JSPluginElementFunctions.cpp \
     691        WebCore/bindings/js/PausedTimeouts.cpp \
     692        WebCore/bindings/js/PausedTimeouts.h \
     693        WebCore/bindings/js/ScheduledAction.cpp \
     694        WebCore/bindings/js/ScheduledAction.h \
    570695        WebCore/bindings/js/ScriptController.cpp \
    571         WebCore/bindings/js/PausedTimeouts.cpp \
    572         WebCore/bindings/js/ScheduledAction.cpp \
     696        WebCore/bindings/js/ScriptController.h \
     697        WebCore/bindings/js/StringSourceProvider.h \
    573698        WebCore/bridge/NP_jsobject.cpp \
     699        WebCore/bridge/NP_jsobject.h \
    574700        WebCore/bridge/c/c_class.cpp \
     701        WebCore/bridge/c/c_class.h \
    575702        WebCore/bridge/c/c_instance.cpp \
     703        WebCore/bridge/c/c_instance.h \
    576704        WebCore/bridge/c/c_runtime.cpp \
     705        WebCore/bridge/c/c_runtime.h \
    577706        WebCore/bridge/c/c_utility.cpp \
     707        WebCore/bridge/c/c_utility.h \
     708        WebCore/bridge/jni/jni_class.h \
     709        WebCore/bridge/jni/jni_instance.h \
     710        WebCore/bridge/jni/jni_jsobject.h \
     711        WebCore/bridge/jni/jni_runtime.h \
     712        WebCore/bridge/jni/jni_utility.h \
     713        WebCore/bridge/npapi.h \
    578714        WebCore/bridge/npruntime.cpp \
     715        WebCore/bridge/npruntime.h \
     716        WebCore/bridge/npruntime_impl.h \
     717        WebCore/bridge/npruntime_internal.h \
     718        WebCore/bridge/npruntime_priv.h \
    579719        WebCore/bridge/runtime.cpp \
     720        WebCore/bridge/runtime.h \
    580721        WebCore/bridge/runtime_array.cpp \
     722        WebCore/bridge/runtime_array.h \
    581723        WebCore/bridge/runtime_method.cpp \
     724        WebCore/bridge/runtime_method.h \
    582725        WebCore/bridge/runtime_object.cpp \
     726        WebCore/bridge/runtime_object.h \
    583727        WebCore/bridge/runtime_root.cpp \
     728        WebCore/bridge/runtime_root.h \
     729        WebCore/config.h \
    584730        WebCore/css/CSSBorderImageValue.cpp \
     731        WebCore/css/CSSBorderImageValue.h \
    585732        WebCore/css/CSSCanvasValue.cpp \
     733        WebCore/css/CSSCanvasValue.h \
    586734        WebCore/css/CSSCharsetRule.cpp \
     735        WebCore/css/CSSCharsetRule.h \
    587736        WebCore/css/CSSComputedStyleDeclaration.cpp \
     737        WebCore/css/CSSComputedStyleDeclaration.h \
    588738        WebCore/css/CSSCursorImageValue.cpp \
     739        WebCore/css/CSSCursorImageValue.h \
    589740        WebCore/css/CSSFontFace.cpp \
     741        WebCore/css/CSSFontFace.h \
    590742        WebCore/css/CSSFontFaceRule.cpp \
     743        WebCore/css/CSSFontFaceRule.h \
     744        WebCore/css/CSSFontFaceSource.cpp \
     745        WebCore/css/CSSFontFaceSource.h \
    591746        WebCore/css/CSSFontFaceSrcValue.cpp \
     747        WebCore/css/CSSFontFaceSrcValue.h \
    592748        WebCore/css/CSSFontSelector.cpp \
    593         WebCore/css/CSSFontFaceSource.cpp \
     749        WebCore/css/CSSFontSelector.h \
    594750        WebCore/css/CSSFunctionValue.cpp \
     751        WebCore/css/CSSFunctionValue.h \
    595752        WebCore/css/CSSGradientValue.cpp \
     753        WebCore/css/CSSGradientValue.h \
    596754        WebCore/css/CSSHelper.cpp \
     755        WebCore/css/CSSHelper.h \
    597756        WebCore/css/CSSImageGeneratorValue.cpp \
     757        WebCore/css/CSSImageGeneratorValue.h \
    598758        WebCore/css/CSSImageValue.cpp \
     759        WebCore/css/CSSImageValue.h \
    599760        WebCore/css/CSSImportRule.cpp \
     761        WebCore/css/CSSImportRule.h \
    600762        WebCore/css/CSSInheritedValue.cpp \
     763        WebCore/css/CSSInheritedValue.h \
    601764        WebCore/css/CSSInitialValue.cpp \
     765        WebCore/css/CSSInitialValue.h \
    602766        WebCore/css/CSSMediaRule.cpp \
     767        WebCore/css/CSSMediaRule.h \
    603768        WebCore/css/CSSMutableStyleDeclaration.cpp \
     769        WebCore/css/CSSMutableStyleDeclaration.h \
     770        WebCore/css/CSSNamespace.h \
    604771        WebCore/css/CSSPageRule.cpp \
     772        WebCore/css/CSSPageRule.h \
    605773        WebCore/css/CSSParser.cpp \
     774        WebCore/css/CSSParser.h \
    606775        WebCore/css/CSSParserValues.cpp \
     776        WebCore/css/CSSParserValues.h \
    607777        WebCore/css/CSSPrimitiveValue.cpp \
     778        WebCore/css/CSSPrimitiveValue.h \
     779        WebCore/css/CSSPrimitiveValueMappings.h \
    608780        WebCore/css/CSSProperty.cpp \
     781        WebCore/css/CSSProperty.h \
     782        WebCore/css/CSSQuirkPrimitiveValue.h \
    609783        WebCore/css/CSSReflectValue.cpp \
     784        WebCore/css/CSSReflectValue.h \
     785        WebCore/css/CSSReflectionDirection.h \
    610786        WebCore/css/CSSRule.cpp \
     787        WebCore/css/CSSRule.h \
    611788        WebCore/css/CSSRuleList.cpp \
     789        WebCore/css/CSSRuleList.h \
     790        WebCore/css/CSSSegmentedFontFace.cpp \
     791        WebCore/css/CSSSegmentedFontFace.h \
    612792        WebCore/css/CSSSelector.cpp \
    613         WebCore/css/CSSSegmentedFontFace.cpp \
     793        WebCore/css/CSSSelector.h \
    614794        WebCore/css/CSSStyleDeclaration.cpp \
     795        WebCore/css/CSSStyleDeclaration.h \
    615796        WebCore/css/CSSStyleRule.cpp \
     797        WebCore/css/CSSStyleRule.h \
    616798        WebCore/css/CSSStyleSelector.cpp \
     799        WebCore/css/CSSStyleSelector.h \
    617800        WebCore/css/CSSStyleSheet.cpp \
     801        WebCore/css/CSSStyleSheet.h \
    618802        WebCore/css/CSSTimingFunctionValue.cpp \
     803        WebCore/css/CSSTimingFunctionValue.h \
    619804        WebCore/css/CSSUnicodeRangeValue.cpp \
     805        WebCore/css/CSSUnicodeRangeValue.h \
     806        WebCore/css/CSSUnknownRule.h \
     807        WebCore/css/CSSValue.h \
    620808        WebCore/css/CSSValueList.cpp \
     809        WebCore/css/CSSValueList.h \
    621810        WebCore/css/CSSVariableDependentValue.cpp \
     811        WebCore/css/CSSVariableDependentValue.h \
    622812        WebCore/css/CSSVariablesDeclaration.cpp \
     813        WebCore/css/CSSVariablesDeclaration.h \
    623814        WebCore/css/CSSVariablesRule.cpp \
     815        WebCore/css/CSSVariablesRule.h \
     816        WebCore/css/Counter.h \
     817        WebCore/css/DashboardRegion.h \
    624818        WebCore/css/FontFamilyValue.cpp \
     819        WebCore/css/FontFamilyValue.h \
    625820        WebCore/css/FontValue.cpp \
     821        WebCore/css/FontValue.h \
    626822        WebCore/css/MediaFeatureNames.cpp \
     823        WebCore/css/MediaFeatureNames.h \
    627824        WebCore/css/MediaList.cpp \
     825        WebCore/css/MediaList.h \
    628826        WebCore/css/MediaQuery.cpp \
     827        WebCore/css/MediaQuery.h \
    629828        WebCore/css/MediaQueryEvaluator.cpp \
     829        WebCore/css/MediaQueryEvaluator.h \
    630830        WebCore/css/MediaQueryExp.cpp \
     831        WebCore/css/MediaQueryExp.h \
     832        WebCore/css/Pair.h \
     833        WebCore/css/Rect.h \
    631834        WebCore/css/ShadowValue.cpp \
     835        WebCore/css/ShadowValue.h \
    632836        WebCore/css/StyleBase.cpp \
     837        WebCore/css/StyleBase.h \
    633838        WebCore/css/StyleList.cpp \
     839        WebCore/css/StyleList.h \
    634840        WebCore/css/StyleSheet.cpp \
     841        WebCore/css/StyleSheet.h \
    635842        WebCore/css/StyleSheetList.cpp \
     843        WebCore/css/StyleSheetList.h \
    636844        WebCore/css/WebKitCSSKeyframeRule.cpp \
     845        WebCore/css/WebKitCSSKeyframeRule.h \
    637846        WebCore/css/WebKitCSSKeyframesRule.cpp \
     847        WebCore/css/WebKitCSSKeyframesRule.h \
    638848        WebCore/css/WebKitCSSTransformValue.cpp \
     849        WebCore/css/WebKitCSSTransformValue.h \
    639850        WebCore/dom/Attr.cpp \
     851        WebCore/dom/Attr.h \
    640852        WebCore/dom/Attribute.cpp \
     853        WebCore/dom/Attribute.h \
    641854        WebCore/dom/BeforeTextInsertedEvent.cpp \
     855        WebCore/dom/BeforeTextInsertedEvent.h \
    642856        WebCore/dom/BeforeUnloadEvent.cpp \
     857        WebCore/dom/BeforeUnloadEvent.h \
    643858        WebCore/dom/CDATASection.cpp \
     859        WebCore/dom/CDATASection.h \
     860        WebCore/dom/CSSMappedAttributeDeclaration.cpp \
     861        WebCore/dom/CSSMappedAttributeDeclaration.h \
    644862        WebCore/dom/CharacterData.cpp \
     863        WebCore/dom/CharacterData.h \
    645864        WebCore/dom/ChildNodeList.cpp \
     865        WebCore/dom/ChildNodeList.h \
    646866        WebCore/dom/ClassNames.cpp \
     867        WebCore/dom/ClassNames.h \
    647868        WebCore/dom/ClassNodeList.cpp \
     869        WebCore/dom/ClassNodeList.h \
    648870        WebCore/dom/Clipboard.cpp \
     871        WebCore/dom/Clipboard.h \
     872        WebCore/dom/ClipboardAccessPolicy.h \
    649873        WebCore/dom/ClipboardEvent.cpp \
     874        WebCore/dom/ClipboardEvent.h \
    650875        WebCore/dom/Comment.cpp \
     876        WebCore/dom/Comment.h \
    651877        WebCore/dom/ContainerNode.cpp \
    652         WebCore/dom/CSSMappedAttributeDeclaration.cpp \
     878        WebCore/dom/ContainerNode.h \
     879        WebCore/dom/DOMCoreException.h \
     880        WebCore/dom/DOMImplementation.cpp \
     881        WebCore/dom/DOMImplementation.h \
     882        WebCore/dom/DocPtr.h \
    653883        WebCore/dom/Document.cpp \
     884        WebCore/dom/Document.h \
    654885        WebCore/dom/DocumentFragment.cpp \
     886        WebCore/dom/DocumentFragment.h \
     887        WebCore/dom/DocumentMarker.h \
    655888        WebCore/dom/DocumentType.cpp \
    656         WebCore/dom/DOMImplementation.cpp \
     889        WebCore/dom/DocumentType.h \
    657890        WebCore/dom/DynamicNodeList.cpp \
     891        WebCore/dom/DynamicNodeList.h \
    658892        WebCore/dom/EditingText.cpp \
     893        WebCore/dom/EditingText.h \
    659894        WebCore/dom/Element.cpp \
     895        WebCore/dom/Element.h \
    660896        WebCore/dom/Entity.cpp \
     897        WebCore/dom/Entity.h \
    661898        WebCore/dom/EntityReference.cpp \
     899        WebCore/dom/EntityReference.h \
    662900        WebCore/dom/Event.cpp \
     901        WebCore/dom/Event.h \
     902        WebCore/dom/EventException.h \
     903        WebCore/dom/EventListener.h \
    663904        WebCore/dom/EventNames.cpp \
     905        WebCore/dom/EventNames.h \
    664906        WebCore/dom/EventTarget.cpp \
     907        WebCore/dom/EventTarget.h \
    665908        WebCore/dom/EventTargetNode.cpp \
     909        WebCore/dom/EventTargetNode.h \
    666910        WebCore/dom/ExceptionBase.cpp \
     911        WebCore/dom/ExceptionBase.h \
    667912        WebCore/dom/ExceptionCode.cpp \
     913        WebCore/dom/ExceptionCode.h \
    668914        WebCore/dom/KeyboardEvent.cpp \
     915        WebCore/dom/KeyboardEvent.h \
    669916        WebCore/dom/MappedAttribute.cpp \
     917        WebCore/dom/MappedAttribute.h \
     918        WebCore/dom/MappedAttributeEntry.h \
    670919        WebCore/dom/MessageEvent.cpp \
     920        WebCore/dom/MessageEvent.h \
    671921        WebCore/dom/MouseEvent.cpp \
     922        WebCore/dom/MouseEvent.h \
    672923        WebCore/dom/MouseRelatedEvent.cpp \
     924        WebCore/dom/MouseRelatedEvent.h \
    673925        WebCore/dom/MutationEvent.cpp \
     926        WebCore/dom/MutationEvent.h \
     927        WebCore/dom/NSResolver.h \
     928        WebCore/dom/NameNodeList.cpp \
     929        WebCore/dom/NameNodeList.h \
    674930        WebCore/dom/NamedAttrMap.cpp \
     931        WebCore/dom/NamedAttrMap.h \
    675932        WebCore/dom/NamedMappedAttrMap.cpp \
    676         WebCore/dom/NameNodeList.cpp \
     933        WebCore/dom/NamedMappedAttrMap.h \
     934        WebCore/dom/NamedNodeMap.h \
    677935        WebCore/dom/Node.cpp \
     936        WebCore/dom/Node.h \
     937        WebCore/dom/NodeFilter.cpp \
     938        WebCore/dom/NodeFilter.h \
    678939        WebCore/dom/NodeFilterCondition.cpp \
    679         WebCore/dom/NodeFilter.cpp \
     940        WebCore/dom/NodeFilterCondition.h \
    680941        WebCore/dom/NodeIterator.cpp \
     942        WebCore/dom/NodeIterator.h \
     943        WebCore/dom/NodeList.h \
     944        WebCore/dom/NodeWithIndex.h \
    681945        WebCore/dom/Notation.cpp \
     946        WebCore/dom/Notation.h \
    682947        WebCore/dom/OverflowEvent.cpp \
     948        WebCore/dom/OverflowEvent.h \
    683949        WebCore/dom/Position.cpp \
     950        WebCore/dom/Position.h \
    684951        WebCore/dom/PositionIterator.cpp \
     952        WebCore/dom/PositionIterator.h \
    685953        WebCore/dom/ProcessingInstruction.cpp \
     954        WebCore/dom/ProcessingInstruction.h \
    686955        WebCore/dom/ProgressEvent.cpp \
     956        WebCore/dom/ProgressEvent.h \
    687957        WebCore/dom/QualifiedName.cpp \
     958        WebCore/dom/QualifiedName.h \
    688959        WebCore/dom/Range.cpp \
     960        WebCore/dom/Range.h \
     961        WebCore/dom/RangeBoundaryPoint.h \
     962        WebCore/dom/RangeException.h \
    689963        WebCore/dom/RegisteredEventListener.cpp \
     964        WebCore/dom/RegisteredEventListener.h \
    690965        WebCore/dom/SelectorNodeList.cpp \
     966        WebCore/dom/SelectorNodeList.h \
    691967        WebCore/dom/StaticNodeList.cpp \
     968        WebCore/dom/StaticNodeList.h \
     969        WebCore/dom/StyleElement.cpp \
     970        WebCore/dom/StyleElement.h \
    692971        WebCore/dom/StyledElement.cpp \
    693         WebCore/dom/StyleElement.cpp \
     972        WebCore/dom/StyledElement.h \
    694973        WebCore/dom/TagNodeList.cpp \
     974        WebCore/dom/TagNodeList.h \
    695975        WebCore/dom/Text.cpp \
     976        WebCore/dom/Text.h \
    696977        WebCore/dom/TextEvent.cpp \
     978        WebCore/dom/TextEvent.h \
     979        WebCore/dom/Tokenizer.h \
    697980        WebCore/dom/Traversal.cpp \
     981        WebCore/dom/Traversal.h \
    698982        WebCore/dom/TreeWalker.cpp \
     983        WebCore/dom/TreeWalker.h \
    699984        WebCore/dom/UIEvent.cpp \
     985        WebCore/dom/UIEvent.h \
    700986        WebCore/dom/UIEventWithKeyState.cpp \
     987        WebCore/dom/UIEventWithKeyState.h \
    701988        WebCore/dom/WheelEvent.cpp \
     989        WebCore/dom/WheelEvent.h \
    702990        WebCore/dom/XMLTokenizer.cpp \
     991        WebCore/dom/XMLTokenizer.h \
    703992        WebCore/editing/AppendNodeCommand.cpp \
     993        WebCore/editing/AppendNodeCommand.h \
    704994        WebCore/editing/ApplyStyleCommand.cpp \
     995        WebCore/editing/ApplyStyleCommand.h \
    705996        WebCore/editing/BreakBlockquoteCommand.cpp \
     997        WebCore/editing/BreakBlockquoteCommand.h \
    706998        WebCore/editing/CompositeEditCommand.cpp \
     999        WebCore/editing/CompositeEditCommand.h \
    7071000        WebCore/editing/CreateLinkCommand.cpp \
     1001        WebCore/editing/CreateLinkCommand.h \
     1002        WebCore/editing/DeleteButton.cpp \
     1003        WebCore/editing/DeleteButton.h \
    7081004        WebCore/editing/DeleteButtonController.cpp \
    709         WebCore/editing/DeleteButton.cpp \
     1005        WebCore/editing/DeleteButtonController.h \
    7101006        WebCore/editing/DeleteFromTextNodeCommand.cpp \
     1007        WebCore/editing/DeleteFromTextNodeCommand.h \
    7111008        WebCore/editing/DeleteSelectionCommand.cpp \
     1009        WebCore/editing/DeleteSelectionCommand.h \
     1010        WebCore/editing/EditAction.h \
    7121011        WebCore/editing/EditCommand.cpp \
     1012        WebCore/editing/EditCommand.h \
    7131013        WebCore/editing/Editor.cpp \
     1014        WebCore/editing/Editor.h \
    7141015        WebCore/editing/EditorCommand.cpp \
     1016        WebCore/editing/EditorDeleteAction.h \
     1017        WebCore/editing/EditorInsertAction.h \
    7151018        WebCore/editing/FormatBlockCommand.cpp \
    716         WebCore/editing/htmlediting.cpp \
     1019        WebCore/editing/FormatBlockCommand.h \
    7171020        WebCore/editing/HTMLInterchange.cpp \
     1021        WebCore/editing/HTMLInterchange.h \
    7181022        WebCore/editing/IndentOutdentCommand.cpp \
     1023        WebCore/editing/IndentOutdentCommand.h \
    7191024        WebCore/editing/InsertIntoTextNodeCommand.cpp \
     1025        WebCore/editing/InsertIntoTextNodeCommand.h \
    7201026        WebCore/editing/InsertLineBreakCommand.cpp \
     1027        WebCore/editing/InsertLineBreakCommand.h \
    7211028        WebCore/editing/InsertListCommand.cpp \
     1029        WebCore/editing/InsertListCommand.h \
    7221030        WebCore/editing/InsertNodeBeforeCommand.cpp \
     1031        WebCore/editing/InsertNodeBeforeCommand.h \
    7231032        WebCore/editing/InsertParagraphSeparatorCommand.cpp \
     1033        WebCore/editing/InsertParagraphSeparatorCommand.h \
    7241034        WebCore/editing/InsertTextCommand.cpp \
     1035        WebCore/editing/InsertTextCommand.h \
    7251036        WebCore/editing/JoinTextNodesCommand.cpp \
    726         WebCore/editing/markup.cpp \
     1037        WebCore/editing/JoinTextNodesCommand.h \
    7271038        WebCore/editing/MergeIdenticalElementsCommand.cpp \
     1039        WebCore/editing/MergeIdenticalElementsCommand.h \
    7281040        WebCore/editing/ModifySelectionListLevel.cpp \
     1041        WebCore/editing/ModifySelectionListLevel.h \
    7291042        WebCore/editing/MoveSelectionCommand.cpp \
     1043        WebCore/editing/MoveSelectionCommand.h \
    7301044        WebCore/editing/RemoveCSSPropertyCommand.cpp \
     1045        WebCore/editing/RemoveCSSPropertyCommand.h \
    7311046        WebCore/editing/RemoveFormatCommand.cpp \
     1047        WebCore/editing/RemoveFormatCommand.h \
    7321048        WebCore/editing/RemoveNodeAttributeCommand.cpp \
     1049        WebCore/editing/RemoveNodeAttributeCommand.h \
    7331050        WebCore/editing/RemoveNodeCommand.cpp \
     1051        WebCore/editing/RemoveNodeCommand.h \
    7341052        WebCore/editing/RemoveNodePreservingChildrenCommand.cpp \
     1053        WebCore/editing/RemoveNodePreservingChildrenCommand.h \
    7351054        WebCore/editing/ReplaceSelectionCommand.cpp \
     1055        WebCore/editing/ReplaceSelectionCommand.h \
     1056        WebCore/editing/Selection.cpp \
     1057        WebCore/editing/Selection.h \
    7361058        WebCore/editing/SelectionController.cpp \
    737         WebCore/editing/Selection.cpp \
     1059        WebCore/editing/SelectionController.h \
    7381060        WebCore/editing/SetNodeAttributeCommand.cpp \
     1061        WebCore/editing/SetNodeAttributeCommand.h \
    7391062        WebCore/editing/SmartReplace.cpp \
     1063        WebCore/editing/SmartReplace.h \
    7401064        WebCore/editing/SmartReplaceICU.cpp \
    7411065        WebCore/editing/SplitElementCommand.cpp \
     1066        WebCore/editing/SplitElementCommand.h \
    7421067        WebCore/editing/SplitTextNodeCommand.cpp \
     1068        WebCore/editing/SplitTextNodeCommand.h \
    7431069        WebCore/editing/SplitTextNodeContainingElementCommand.cpp \
     1070        WebCore/editing/SplitTextNodeContainingElementCommand.h \
     1071        WebCore/editing/TextAffinity.h \
     1072        WebCore/editing/TextGranularity.h \
    7441073        WebCore/editing/TextIterator.cpp \
     1074        WebCore/editing/TextIterator.h \
    7451075        WebCore/editing/TypingCommand.cpp \
     1076        WebCore/editing/TypingCommand.h \
    7461077        WebCore/editing/UnlinkCommand.cpp \
     1078        WebCore/editing/UnlinkCommand.h \
    7471079        WebCore/editing/VisiblePosition.cpp \
     1080        WebCore/editing/VisiblePosition.h \
     1081        WebCore/editing/WrapContentsInDummySpanCommand.cpp \
     1082        WebCore/editing/WrapContentsInDummySpanCommand.h \
     1083        WebCore/editing/htmlediting.cpp \
     1084        WebCore/editing/htmlediting.h \
     1085        WebCore/editing/markup.cpp \
     1086        WebCore/editing/markup.h \
    7481087        WebCore/editing/visible_units.cpp \
    749         WebCore/editing/WrapContentsInDummySpanCommand.cpp \
     1088        WebCore/editing/visible_units.h \
    7501089        WebCore/history/BackForwardList.cpp \
     1090        WebCore/history/BackForwardList.h \
    7511091        WebCore/history/CachedPage.cpp \
     1092        WebCore/history/CachedPage.h \
     1093        WebCore/history/CachedPagePlatformData.h \
    7521094        WebCore/history/HistoryItem.cpp \
     1095        WebCore/history/HistoryItem.h \
    7531096        WebCore/history/PageCache.cpp \
     1097        WebCore/history/PageCache.h \
    7541098        WebCore/html/CanvasGradient.cpp \
     1099        WebCore/html/CanvasGradient.h \
    7551100        WebCore/html/CanvasPattern.cpp \
     1101        WebCore/html/CanvasPattern.h \
    7561102        WebCore/html/CanvasPixelArray.cpp \
     1103        WebCore/html/CanvasPixelArray.h \
    7571104        WebCore/html/CanvasRenderingContext2D.cpp \
     1105        WebCore/html/CanvasRenderingContext2D.h \
    7581106        WebCore/html/CanvasStyle.cpp \
     1107        WebCore/html/CanvasStyle.h \
    7591108        WebCore/html/File.cpp \
     1109        WebCore/html/File.h \
    7601110        WebCore/html/FileList.cpp \
     1111        WebCore/html/FileList.h \
    7611112        WebCore/html/FormDataList.cpp \
     1113        WebCore/html/FormDataList.h \
    7621114        WebCore/html/HTMLAnchorElement.cpp \
     1115        WebCore/html/HTMLAnchorElement.h \
    7631116        WebCore/html/HTMLAppletElement.cpp \
     1117        WebCore/html/HTMLAppletElement.h \
    7641118        WebCore/html/HTMLAreaElement.cpp \
     1119        WebCore/html/HTMLAreaElement.h \
     1120        WebCore/html/HTMLBRElement.cpp \
     1121        WebCore/html/HTMLBRElement.h \
    7651122        WebCore/html/HTMLBaseElement.cpp \
     1123        WebCore/html/HTMLBaseElement.h \
    7661124        WebCore/html/HTMLBaseFontElement.cpp \
     1125        WebCore/html/HTMLBaseFontElement.h \
    7671126        WebCore/html/HTMLBlockquoteElement.cpp \
     1127        WebCore/html/HTMLBlockquoteElement.h \
    7681128        WebCore/html/HTMLBodyElement.cpp \
    769         WebCore/html/HTMLBRElement.cpp \
     1129        WebCore/html/HTMLBodyElement.h \
    7701130        WebCore/html/HTMLButtonElement.cpp \
     1131        WebCore/html/HTMLButtonElement.h \
    7711132        WebCore/html/HTMLCanvasElement.cpp \
     1133        WebCore/html/HTMLCanvasElement.h \
    7721134        WebCore/html/HTMLCollection.cpp \
     1135        WebCore/html/HTMLCollection.h \
     1136        WebCore/html/HTMLDListElement.cpp \
     1137        WebCore/html/HTMLDListElement.h \
    7731138        WebCore/html/HTMLDirectoryElement.cpp \
     1139        WebCore/html/HTMLDirectoryElement.h \
    7741140        WebCore/html/HTMLDivElement.cpp \
    775         WebCore/html/HTMLDListElement.cpp \
     1141        WebCore/html/HTMLDivElement.h \
    7761142        WebCore/html/HTMLDocument.cpp \
     1143        WebCore/html/HTMLDocument.h \
    7771144        WebCore/html/HTMLElement.cpp \
     1145        WebCore/html/HTMLElement.h \
    7781146        WebCore/html/HTMLElementFactory.cpp \
     1147        WebCore/html/HTMLElementFactory.h \
    7791148        WebCore/html/HTMLEmbedElement.cpp \
     1149        WebCore/html/HTMLEmbedElement.h \
    7801150        WebCore/html/HTMLFieldSetElement.cpp \
     1151        WebCore/html/HTMLFieldSetElement.h \
    7811152        WebCore/html/HTMLFontElement.cpp \
     1153        WebCore/html/HTMLFontElement.h \
    7821154        WebCore/html/HTMLFormCollection.cpp \
     1155        WebCore/html/HTMLFormCollection.h \
     1156        WebCore/html/HTMLFormControlElement.cpp \
     1157        WebCore/html/HTMLFormControlElement.h \
    7831158        WebCore/html/HTMLFormElement.cpp \
     1159        WebCore/html/HTMLFormElement.h \
     1160        WebCore/html/HTMLFrameElement.cpp \
     1161        WebCore/html/HTMLFrameElement.h \
    7841162        WebCore/html/HTMLFrameElementBase.cpp \
    785         WebCore/html/HTMLFrameElement.cpp \
     1163        WebCore/html/HTMLFrameElementBase.h \
    7861164        WebCore/html/HTMLFrameOwnerElement.cpp \
     1165        WebCore/html/HTMLFrameOwnerElement.h \
    7871166        WebCore/html/HTMLFrameSetElement.cpp \
    788         WebCore/html/HTMLFormControlElement.cpp \
     1167        WebCore/html/HTMLFrameSetElement.h \
     1168        WebCore/html/HTMLHRElement.cpp \
     1169        WebCore/html/HTMLHRElement.h \
    7891170        WebCore/html/HTMLHeadElement.cpp \
     1171        WebCore/html/HTMLHeadElement.h \
    7901172        WebCore/html/HTMLHeadingElement.cpp \
    791         WebCore/html/HTMLHRElement.cpp \
     1173        WebCore/html/HTMLHeadingElement.h \
    7921174        WebCore/html/HTMLHtmlElement.cpp \
     1175        WebCore/html/HTMLHtmlElement.h \
    7931176        WebCore/html/HTMLIFrameElement.cpp \
     1177        WebCore/html/HTMLIFrameElement.h \
    7941178        WebCore/html/HTMLImageElement.cpp \
     1179        WebCore/html/HTMLImageElement.h \
    7951180        WebCore/html/HTMLImageLoader.cpp \
     1181        WebCore/html/HTMLImageLoader.h \
    7961182        WebCore/html/HTMLInputElement.cpp \
     1183        WebCore/html/HTMLInputElement.h \
    7971184        WebCore/html/HTMLIsIndexElement.cpp \
     1185        WebCore/html/HTMLIsIndexElement.h \
    7981186        WebCore/html/HTMLKeygenElement.cpp \
     1187        WebCore/html/HTMLKeygenElement.h \
     1188        WebCore/html/HTMLLIElement.cpp \
     1189        WebCore/html/HTMLLIElement.h \
    7991190        WebCore/html/HTMLLabelElement.cpp \
     1191        WebCore/html/HTMLLabelElement.h \
    8001192        WebCore/html/HTMLLegendElement.cpp \
    801         WebCore/html/HTMLLIElement.cpp \
     1193        WebCore/html/HTMLLegendElement.h \
    8021194        WebCore/html/HTMLLinkElement.cpp \
     1195        WebCore/html/HTMLLinkElement.h \
    8031196        WebCore/html/HTMLMapElement.cpp \
     1197        WebCore/html/HTMLMapElement.h \
    8041198        WebCore/html/HTMLMarqueeElement.cpp \
     1199        WebCore/html/HTMLMarqueeElement.h \
    8051200        WebCore/html/HTMLMenuElement.cpp \
     1201        WebCore/html/HTMLMenuElement.h \
    8061202        WebCore/html/HTMLMetaElement.cpp \
     1203        WebCore/html/HTMLMetaElement.h \
    8071204        WebCore/html/HTMLModElement.cpp \
     1205        WebCore/html/HTMLModElement.h \
    8081206        WebCore/html/HTMLNameCollection.cpp \
     1207        WebCore/html/HTMLNameCollection.h \
     1208        WebCore/html/HTMLOListElement.cpp \
     1209        WebCore/html/HTMLOListElement.h \
    8091210        WebCore/html/HTMLObjectElement.cpp \
    810         WebCore/html/HTMLOListElement.cpp \
     1211        WebCore/html/HTMLObjectElement.h \
    8111212        WebCore/html/HTMLOptGroupElement.cpp \
     1213        WebCore/html/HTMLOptGroupElement.h \
    8121214        WebCore/html/HTMLOptionElement.cpp \
     1215        WebCore/html/HTMLOptionElement.h \
    8131216        WebCore/html/HTMLOptionsCollection.cpp \
     1217        WebCore/html/HTMLOptionsCollection.h \
    8141218        WebCore/html/HTMLParagraphElement.cpp \
     1219        WebCore/html/HTMLParagraphElement.h \
    8151220        WebCore/html/HTMLParamElement.cpp \
     1221        WebCore/html/HTMLParamElement.h \
    8161222        WebCore/html/HTMLParser.cpp \
     1223        WebCore/html/HTMLParser.h \
    8171224        WebCore/html/HTMLParserErrorCodes.cpp \
     1225        WebCore/html/HTMLParserErrorCodes.h \
    8181226        WebCore/html/HTMLPlugInElement.cpp \
     1227        WebCore/html/HTMLPlugInElement.h \
    8191228        WebCore/html/HTMLPlugInImageElement.cpp \
     1229        WebCore/html/HTMLPlugInImageElement.h \
    8201230        WebCore/html/HTMLPreElement.cpp \
     1231        WebCore/html/HTMLPreElement.h \
    8211232        WebCore/html/HTMLQuoteElement.cpp \
     1233        WebCore/html/HTMLQuoteElement.h \
    8221234        WebCore/html/HTMLScriptElement.cpp \
     1235        WebCore/html/HTMLScriptElement.h \
    8231236        WebCore/html/HTMLSelectElement.cpp \
     1237        WebCore/html/HTMLSelectElement.h \
    8241238        WebCore/html/HTMLStyleElement.cpp \
     1239        WebCore/html/HTMLStyleElement.h \
    8251240        WebCore/html/HTMLTableCaptionElement.cpp \
     1241        WebCore/html/HTMLTableCaptionElement.h \
    8261242        WebCore/html/HTMLTableCellElement.cpp \
     1243        WebCore/html/HTMLTableCellElement.h \
    8271244        WebCore/html/HTMLTableColElement.cpp \
     1245        WebCore/html/HTMLTableColElement.h \
    8281246        WebCore/html/HTMLTableElement.cpp \
     1247        WebCore/html/HTMLTableElement.h \
    8291248        WebCore/html/HTMLTablePartElement.cpp \
     1249        WebCore/html/HTMLTablePartElement.h \
    8301250        WebCore/html/HTMLTableRowElement.cpp \
     1251        WebCore/html/HTMLTableRowElement.h \
    8311252        WebCore/html/HTMLTableRowsCollection.cpp \
     1253        WebCore/html/HTMLTableRowsCollection.h \
    8321254        WebCore/html/HTMLTableSectionElement.cpp \
     1255        WebCore/html/HTMLTableSectionElement.h \
    8331256        WebCore/html/HTMLTextAreaElement.cpp \
     1257        WebCore/html/HTMLTextAreaElement.h \
    8341258        WebCore/html/HTMLTextFieldInnerElement.cpp \
     1259        WebCore/html/HTMLTextFieldInnerElement.h \
    8351260        WebCore/html/HTMLTitleElement.cpp \
     1261        WebCore/html/HTMLTitleElement.h \
    8361262        WebCore/html/HTMLTokenizer.cpp \
     1263        WebCore/html/HTMLTokenizer.h \
    8371264        WebCore/html/HTMLUListElement.cpp \
     1265        WebCore/html/HTMLUListElement.h \
    8381266        WebCore/html/HTMLViewSourceDocument.cpp \
     1267        WebCore/html/HTMLViewSourceDocument.h \
    8391268        WebCore/html/ImageData.cpp \
     1269        WebCore/html/ImageData.h \
     1270        WebCore/html/MediaError.h \
    8401271        WebCore/html/PreloadScanner.cpp \
     1272        WebCore/html/PreloadScanner.h \
     1273        WebCore/html/VoidCallback.h \
     1274        WebCore/icu/unicode/parseerr.h \
     1275        WebCore/icu/unicode/platform.h \
     1276        WebCore/icu/unicode/putil.h \
     1277        WebCore/icu/unicode/ubrk.h \
     1278        WebCore/icu/unicode/uchar.h \
     1279        WebCore/icu/unicode/ucnv.h \
     1280        WebCore/icu/unicode/ucnv_cb.h \
     1281        WebCore/icu/unicode/ucnv_err.h \
     1282        WebCore/icu/unicode/ucol.h \
     1283        WebCore/icu/unicode/uconfig.h \
     1284        WebCore/icu/unicode/uenum.h \
     1285        WebCore/icu/unicode/uidna.h \
     1286        WebCore/icu/unicode/uiter.h \
     1287        WebCore/icu/unicode/uloc.h \
     1288        WebCore/icu/unicode/umachine.h \
     1289        WebCore/icu/unicode/unorm.h \
     1290        WebCore/icu/unicode/urename.h \
     1291        WebCore/icu/unicode/uscript.h \
     1292        WebCore/icu/unicode/uset.h \
     1293        WebCore/icu/unicode/ushape.h \
     1294        WebCore/icu/unicode/ustring.h \
     1295        WebCore/icu/unicode/utf.h \
     1296        WebCore/icu/unicode/utf16.h \
     1297        WebCore/icu/unicode/utf8.h \
     1298        WebCore/icu/unicode/utf_old.h \
     1299        WebCore/icu/unicode/utypes.h \
     1300        WebCore/icu/unicode/uversion.h \
     1301        WebCore/loader/Cache.cpp \
     1302        WebCore/loader/Cache.h \
     1303        WebCore/loader/CachePolicy.h \
     1304        WebCore/loader/CachedCSSStyleSheet.cpp \
     1305        WebCore/loader/CachedCSSStyleSheet.h \
     1306        WebCore/loader/CachedFont.cpp \
     1307        WebCore/loader/CachedFont.h \
     1308        WebCore/loader/CachedImage.cpp \
     1309        WebCore/loader/CachedImage.h \
     1310        WebCore/loader/CachedResource.cpp \
     1311        WebCore/loader/CachedResource.h \
     1312        WebCore/loader/CachedResourceClient.h \
     1313        WebCore/loader/CachedResourceClientWalker.cpp \
     1314        WebCore/loader/CachedResourceClientWalker.h \
     1315        WebCore/loader/CachedScript.cpp \
     1316        WebCore/loader/CachedScript.h \
     1317        WebCore/loader/CachedXBLDocument.h \
     1318        WebCore/loader/CachedXSLStyleSheet.cpp \
     1319        WebCore/loader/CachedXSLStyleSheet.h \
     1320        WebCore/loader/DocLoader.cpp \
     1321        WebCore/loader/DocLoader.h \
     1322        WebCore/loader/DocumentLoader.cpp \
     1323        WebCore/loader/DocumentLoader.h \
     1324        WebCore/loader/EmptyClients.h \
     1325        WebCore/loader/FTPDirectoryDocument.cpp \
     1326        WebCore/loader/FTPDirectoryDocument.h \
     1327        WebCore/loader/FTPDirectoryParser.cpp \
     1328        WebCore/loader/FTPDirectoryParser.h \
     1329        WebCore/loader/FormState.cpp \
     1330        WebCore/loader/FormState.h \
     1331        WebCore/loader/FrameLoader.cpp \
     1332        WebCore/loader/FrameLoader.h \
     1333        WebCore/loader/FrameLoaderClient.h \
     1334        WebCore/loader/FrameLoaderTypes.h \
     1335        WebCore/loader/ImageDocument.cpp \
     1336        WebCore/loader/ImageDocument.h \
     1337        WebCore/loader/MainResourceLoader.cpp \
     1338        WebCore/loader/MainResourceLoader.h \
     1339        WebCore/loader/MediaDocument.cpp \
     1340        WebCore/loader/MediaDocument.h \
     1341        WebCore/loader/NavigationAction.cpp \
     1342        WebCore/loader/NavigationAction.h \
     1343        WebCore/loader/NetscapePlugInStreamLoader.cpp \
     1344        WebCore/loader/NetscapePlugInStreamLoader.h \
     1345        WebCore/loader/PluginDocument.cpp \
     1346        WebCore/loader/PluginDocument.h \
     1347        WebCore/loader/ProgressTracker.cpp \
     1348        WebCore/loader/ProgressTracker.h \
     1349        WebCore/loader/Request.cpp \
     1350        WebCore/loader/Request.h \
     1351        WebCore/loader/ResourceLoader.cpp \
     1352        WebCore/loader/ResourceLoader.h \
     1353        WebCore/loader/SubresourceLoader.cpp \
     1354        WebCore/loader/SubresourceLoader.h \
     1355        WebCore/loader/SubresourceLoaderClient.h \
     1356        WebCore/loader/SubstituteData.h \
     1357        WebCore/loader/SubstituteResource.h \
     1358        WebCore/loader/TextDocument.cpp \
     1359        WebCore/loader/TextDocument.h \
     1360        WebCore/loader/TextResourceDecoder.cpp \
     1361        WebCore/loader/TextResourceDecoder.h \
     1362        WebCore/loader/archive/Archive.h \
    8411363        WebCore/loader/archive/ArchiveFactory.cpp \
     1364        WebCore/loader/archive/ArchiveFactory.h \
    8421365        WebCore/loader/archive/ArchiveResource.cpp \
     1366        WebCore/loader/archive/ArchiveResource.h \
    8431367        WebCore/loader/archive/ArchiveResourceCollection.cpp \
    844         WebCore/loader/Cache.cpp \
    845         WebCore/loader/CachedCSSStyleSheet.cpp \
    846         WebCore/loader/CachedFont.cpp \
    847         WebCore/loader/CachedImage.cpp \
    848         WebCore/loader/CachedResourceClientWalker.cpp \
    849         WebCore/loader/CachedResource.cpp \
    850         WebCore/loader/CachedScript.cpp \
    851         WebCore/loader/CachedXSLStyleSheet.cpp \
    852         WebCore/loader/DocLoader.cpp \
    853         WebCore/loader/DocumentLoader.cpp \
    854         WebCore/loader/FormState.cpp \
    855         WebCore/loader/FrameLoader.cpp \
    856         WebCore/loader/FTPDirectoryDocument.cpp \
    857         WebCore/loader/FTPDirectoryParser.cpp \
     1368        WebCore/loader/archive/ArchiveResourceCollection.h \
     1369        WebCore/loader/icon/IconFetcher.h \
    8581370        WebCore/loader/icon/IconLoader.cpp \
    859         WebCore/loader/ImageDocument.cpp \
     1371        WebCore/loader/icon/IconLoader.h \
    8601372        WebCore/loader/loader.cpp \
    861         WebCore/loader/MainResourceLoader.cpp \
    862         WebCore/loader/MediaDocument.cpp \
    863         WebCore/loader/NavigationAction.cpp \
    864         WebCore/loader/NetscapePlugInStreamLoader.cpp \
    865         WebCore/loader/PluginDocument.cpp \
    866         WebCore/loader/ProgressTracker.cpp \
    867         WebCore/loader/Request.cpp \
    868         WebCore/loader/ResourceLoader.cpp \
    869         WebCore/loader/SubresourceLoader.cpp \
    870         WebCore/loader/TextDocument.cpp \
    871         WebCore/loader/TextResourceDecoder.cpp \
     1373        WebCore/loader/loader.h \
     1374        WebCore/page/AXObjectCache.cpp \
     1375        WebCore/page/AXObjectCache.h \
    8721376        WebCore/page/AccessibilityImageMapLink.cpp \
     1377        WebCore/page/AccessibilityImageMapLink.h \
    8731378        WebCore/page/AccessibilityListBox.cpp \
     1379        WebCore/page/AccessibilityListBox.h \
    8741380        WebCore/page/AccessibilityListBoxOption.cpp \
     1381        WebCore/page/AccessibilityListBoxOption.h \
    8751382        WebCore/page/AccessibilityObject.cpp \
     1383        WebCore/page/AccessibilityObject.h \
    8761384        WebCore/page/AccessibilityRenderObject.cpp \
     1385        WebCore/page/AccessibilityRenderObject.h \
    8771386        WebCore/page/AnimationController.cpp \
    878         WebCore/page/AXObjectCache.cpp \
     1387        WebCore/page/AnimationController.h \
    8791388        WebCore/page/BarInfo.cpp \
     1389        WebCore/page/BarInfo.h \
    8801390        WebCore/page/Chrome.cpp \
     1391        WebCore/page/Chrome.h \
     1392        WebCore/page/ChromeClient.h \
    8811393        WebCore/page/Console.cpp \
     1394        WebCore/page/Console.h \
     1395        WebCore/page/ContextMenuClient.h \
    8821396        WebCore/page/ContextMenuController.cpp \
     1397        WebCore/page/ContextMenuController.h \
    8831398        WebCore/page/DOMSelection.cpp \
     1399        WebCore/page/DOMSelection.h \
    8841400        WebCore/page/DOMWindow.cpp \
     1401        WebCore/page/DOMWindow.h \
     1402        WebCore/page/DragActions.h \
     1403        WebCore/page/DragClient.h \
    8851404        WebCore/page/DragController.cpp \
     1405        WebCore/page/DragController.h \
     1406        WebCore/page/EditorClient.h \
    8861407        WebCore/page/EventHandler.cpp \
     1408        WebCore/page/EventHandler.h \
    8871409        WebCore/page/FocusController.cpp \
     1410        WebCore/page/FocusController.h \
     1411        WebCore/page/FocusDirection.h \
    8881412        WebCore/page/Frame.cpp \
     1413        WebCore/page/Frame.h \
     1414        WebCore/page/FrameLoadRequest.h \
     1415        WebCore/page/FramePrivate.h \
    8891416        WebCore/page/FrameTree.cpp \
     1417        WebCore/page/FrameTree.h \
    8901418        WebCore/page/FrameView.cpp \
     1419        WebCore/page/FrameView.h \
    8911420        WebCore/page/History.cpp \
     1421        WebCore/page/History.h \
     1422        WebCore/page/InspectorClient.h \
    8921423        WebCore/page/InspectorController.cpp \
     1424        WebCore/page/InspectorController.h \
    8931425        WebCore/page/JavaScriptCallFrame.cpp \
     1426        WebCore/page/JavaScriptCallFrame.h \
     1427        WebCore/page/JavaScriptDebugListener.h \
    8941428        WebCore/page/JavaScriptDebugServer.cpp \
     1429        WebCore/page/JavaScriptDebugServer.h \
    8951430        WebCore/page/JavaScriptProfile.cpp \
     1431        WebCore/page/JavaScriptProfile.h \
    8961432        WebCore/page/JavaScriptProfileNode.cpp \
     1433        WebCore/page/JavaScriptProfileNode.h \
    8971434        WebCore/page/Location.cpp \
     1435        WebCore/page/Location.h \
    8981436        WebCore/page/MouseEventWithHitTestResults.cpp \
     1437        WebCore/page/MouseEventWithHitTestResults.h \
    8991438        WebCore/page/Navigator.cpp \
     1439        WebCore/page/Navigator.h \
    9001440        WebCore/page/Page.cpp \
     1441        WebCore/page/Page.h \
    9011442        WebCore/page/PageGroup.cpp \
     1443        WebCore/page/PageGroup.h \
    9021444        WebCore/page/PrintContext.cpp \
     1445        WebCore/page/PrintContext.h \
    9031446        WebCore/page/Screen.cpp \
     1447        WebCore/page/Screen.h \
    9041448        WebCore/page/Settings.cpp \
     1449        WebCore/page/Settings.h \
    9051450        WebCore/page/WindowFeatures.cpp \
     1451        WebCore/page/WindowFeatures.h \
    9061452        WebCore/platform/Arena.cpp \
     1453        WebCore/platform/Arena.h \
     1454        WebCore/platform/AutodrainedPool.h \
     1455        WebCore/platform/ContextMenu.cpp \
     1456        WebCore/platform/ContextMenu.h \
     1457        WebCore/platform/ContextMenuItem.h \
     1458        WebCore/platform/CookieJar.h \
     1459        WebCore/platform/Cursor.h \
     1460        WebCore/platform/DeprecatedPtrList.h \
     1461        WebCore/platform/DeprecatedPtrListImpl.cpp \
     1462        WebCore/platform/DeprecatedPtrListImpl.h \
     1463        WebCore/platform/DeprecatedPtrQueue.h \
     1464        WebCore/platform/DeprecatedValueList.h \
     1465        WebCore/platform/DeprecatedValueListImpl.cpp \
     1466        WebCore/platform/DeprecatedValueListImpl.h \
     1467        WebCore/platform/DragData.cpp \
     1468        WebCore/platform/DragData.h \
     1469        WebCore/platform/DragImage.cpp \
     1470        WebCore/platform/DragImage.h \
     1471        WebCore/platform/EventLoop.h \
     1472        WebCore/platform/FileChooser.cpp \
     1473        WebCore/platform/FileChooser.h \
     1474        WebCore/platform/FileSystem.h \
     1475        WebCore/platform/FloatConversion.h \
     1476        WebCore/platform/KURL.cpp \
     1477        WebCore/platform/KURL.h \
     1478        WebCore/platform/KURLHash.h \
     1479        WebCore/platform/Language.h \
     1480        WebCore/platform/LocalizedStrings.h \
     1481        WebCore/platform/Logging.cpp \
     1482        WebCore/platform/Logging.h \
     1483        WebCore/platform/MIMETypeRegistry.cpp \
     1484        WebCore/platform/MIMETypeRegistry.h \
     1485        WebCore/platform/NotImplemented.h \
     1486        WebCore/platform/Pasteboard.h \
     1487        WebCore/platform/PlatformKeyboardEvent.h \
     1488        WebCore/platform/PlatformMenuDescription.h \
     1489        WebCore/platform/PlatformMouseEvent.h \
     1490        WebCore/platform/PlatformScreen.h \
     1491        WebCore/platform/PlatformWheelEvent.h \
     1492        WebCore/platform/PopupMenu.h \
     1493        WebCore/platform/PopupMenuClient.h \
     1494        WebCore/platform/SSLKeyGenerator.h \
     1495        WebCore/platform/ScrollBar.cpp \
     1496        WebCore/platform/ScrollBar.h \
     1497        WebCore/platform/ScrollTypes.h \
     1498        WebCore/platform/ScrollView.h \
     1499        WebCore/platform/SearchPopupMenu.h \
     1500        WebCore/platform/SecurityOrigin.cpp \
     1501        WebCore/platform/SecurityOrigin.h \
     1502        WebCore/platform/SecurityOriginHash.h \
     1503        WebCore/platform/SharedBuffer.cpp \
     1504        WebCore/platform/SharedBuffer.h \
     1505        WebCore/platform/SharedTimer.h \
     1506        WebCore/platform/Sound.h \
     1507        WebCore/platform/StaticConstructors.h \
     1508        WebCore/platform/SystemTime.h \
     1509        WebCore/platform/ThreadCheck.h \
     1510        WebCore/platform/Timer.cpp \
     1511        WebCore/platform/Timer.h \
     1512        WebCore/platform/TreeShared.h \
     1513        WebCore/platform/Widget.cpp \
     1514        WebCore/platform/Widget.h \
     1515        WebCore/platform/WidgetClient.h \
     1516        WebCore/platform/graphics/AffineTransform.cpp \
     1517        WebCore/platform/graphics/AffineTransform.h \
     1518        WebCore/platform/graphics/BitmapImage.cpp \
     1519        WebCore/platform/graphics/BitmapImage.h \
     1520        WebCore/platform/graphics/Color.cpp \
     1521        WebCore/platform/graphics/Color.h \
     1522        WebCore/platform/graphics/FloatPoint.cpp \
     1523        WebCore/platform/graphics/FloatPoint.h \
     1524        WebCore/platform/graphics/FloatPoint3D.cpp \
     1525        WebCore/platform/graphics/FloatPoint3D.h \
     1526        WebCore/platform/graphics/FloatRect.cpp \
     1527        WebCore/platform/graphics/FloatRect.h \
     1528        WebCore/platform/graphics/FloatSize.cpp \
     1529        WebCore/platform/graphics/FloatSize.h \
     1530        WebCore/platform/graphics/Font.cpp \
     1531        WebCore/platform/graphics/Font.h \
     1532        WebCore/platform/graphics/FontCache.cpp \
     1533        WebCore/platform/graphics/FontCache.h \
     1534        WebCore/platform/graphics/FontData.cpp \
     1535        WebCore/platform/graphics/FontData.h \
     1536        WebCore/platform/graphics/FontDescription.cpp \
     1537        WebCore/platform/graphics/FontDescription.h \
     1538        WebCore/platform/graphics/FontFallbackList.cpp \
     1539        WebCore/platform/graphics/FontFallbackList.h \
     1540        WebCore/platform/graphics/FontFamily.cpp \
     1541        WebCore/platform/graphics/FontFamily.h \
     1542        WebCore/platform/graphics/FontRenderingMode.h \
     1543        WebCore/platform/graphics/FontSelector.h \
     1544        WebCore/platform/graphics/FontTraitsMask.h \
     1545        WebCore/platform/graphics/GeneratedImage.cpp \
     1546        WebCore/platform/graphics/GeneratedImage.h \
     1547        WebCore/platform/graphics/Generator.h \
     1548        WebCore/platform/graphics/GlyphBuffer.h \
     1549        WebCore/platform/graphics/GlyphPageTreeNode.cpp \
     1550        WebCore/platform/graphics/GlyphPageTreeNode.h \
     1551        WebCore/platform/graphics/GlyphWidthMap.cpp \
     1552        WebCore/platform/graphics/GlyphWidthMap.h \
     1553        WebCore/platform/graphics/Gradient.cpp \
     1554        WebCore/platform/graphics/Gradient.h \
     1555        WebCore/platform/graphics/GraphicsContext.cpp \
     1556        WebCore/platform/graphics/GraphicsContext.h \
     1557        WebCore/platform/graphics/GraphicsContextPrivate.h \
     1558        WebCore/platform/graphics/GraphicsTypes.cpp \
     1559        WebCore/platform/graphics/GraphicsTypes.h \
     1560        WebCore/platform/graphics/Icon.h \
     1561        WebCore/platform/graphics/Image.cpp \
     1562        WebCore/platform/graphics/Image.h \
     1563        WebCore/platform/graphics/ImageBuffer.h \
     1564        WebCore/platform/graphics/ImageObserver.h \
     1565        WebCore/platform/graphics/ImageSource.h \
     1566        WebCore/platform/graphics/IntPoint.h \
     1567        WebCore/platform/graphics/IntRect.cpp \
     1568        WebCore/platform/graphics/IntRect.h \
     1569        WebCore/platform/graphics/IntSize.h \
     1570        WebCore/platform/graphics/IntSizeHash.h \
     1571        WebCore/platform/graphics/MediaPlayer.h \
     1572        WebCore/platform/graphics/Path.cpp \
     1573        WebCore/platform/graphics/Path.h \
     1574        WebCore/platform/graphics/PathTraversalState.cpp \
     1575        WebCore/platform/graphics/PathTraversalState.h \
     1576        WebCore/platform/graphics/Pen.cpp \
     1577        WebCore/platform/graphics/Pen.h \
     1578        WebCore/platform/graphics/SegmentedFontData.cpp \
     1579        WebCore/platform/graphics/SegmentedFontData.h \
     1580        WebCore/platform/graphics/SimpleFontData.cpp \
     1581        WebCore/platform/graphics/SimpleFontData.h \
     1582        WebCore/platform/graphics/StringTruncator.cpp \
     1583        WebCore/platform/graphics/StringTruncator.h \
     1584        WebCore/platform/graphics/TextRun.h \
     1585        WebCore/platform/graphics/UnitBezier.h \
     1586        WebCore/platform/graphics/filters/FEBlend.h \
     1587        WebCore/platform/graphics/filters/FEColorMatrix.h \
     1588        WebCore/platform/graphics/filters/FEComponentTransfer.h \
     1589        WebCore/platform/graphics/filters/FEComposite.h \
     1590        WebCore/platform/network/AuthenticationChallengeBase.cpp \
     1591        WebCore/platform/network/AuthenticationChallengeBase.h \
     1592        WebCore/platform/network/Credential.cpp \
     1593        WebCore/platform/network/Credential.h \
     1594        WebCore/platform/network/FormData.cpp \
     1595        WebCore/platform/network/FormData.h \
     1596        WebCore/platform/network/HTTPHeaderMap.h \
     1597        WebCore/platform/network/HTTPParsers.cpp \
     1598        WebCore/platform/network/HTTPParsers.h \
     1599        WebCore/platform/network/NetworkStateNotifier.cpp \
     1600        WebCore/platform/network/NetworkStateNotifier.h \
     1601        WebCore/platform/network/ProtectionSpace.cpp \
     1602        WebCore/platform/network/ProtectionSpace.h \
     1603        WebCore/platform/network/ResourceErrorBase.cpp \
     1604        WebCore/platform/network/ResourceErrorBase.h \
     1605        WebCore/platform/network/ResourceHandle.cpp \
     1606        WebCore/platform/network/ResourceHandle.h \
     1607        WebCore/platform/network/ResourceHandleClient.h \
     1608        WebCore/platform/network/ResourceHandleInternal.h \
     1609        WebCore/platform/network/ResourceRequestBase.cpp \
     1610        WebCore/platform/network/ResourceRequestBase.h \
     1611        WebCore/platform/network/ResourceResponseBase.cpp \
     1612        WebCore/platform/network/ResourceResponseBase.h \
    9071613        WebCore/platform/text/AtomicString.cpp \
     1614        WebCore/platform/text/AtomicString.h \
     1615        WebCore/platform/text/AtomicStringImpl.h \
    9081616        WebCore/platform/text/Base64.cpp \
     1617        WebCore/platform/text/Base64.h \
    9091618        WebCore/platform/text/BidiContext.cpp \
     1619        WebCore/platform/text/BidiContext.h \
     1620        WebCore/platform/text/BidiResolver.h \
    9101621        WebCore/platform/text/CString.cpp \
     1622        WebCore/platform/text/CString.h \
     1623        WebCore/platform/text/CharacterNames.h \
     1624        WebCore/platform/text/ParserUtilities.h \
     1625        WebCore/platform/text/PlatformString.h \
     1626        WebCore/platform/text/RegularExpression.cpp \
     1627        WebCore/platform/text/RegularExpression.h \
     1628        WebCore/platform/text/SegmentedString.cpp \
     1629        WebCore/platform/text/SegmentedString.h \
     1630        WebCore/platform/text/String.cpp \
     1631        WebCore/platform/text/StringBuffer.h \
     1632        WebCore/platform/text/StringBuilder.cpp \
     1633        WebCore/platform/text/StringBuilder.h \
     1634        WebCore/platform/text/StringHash.h \
     1635        WebCore/platform/text/StringImpl.cpp \
     1636        WebCore/platform/text/StringImpl.h \
     1637        WebCore/platform/text/TextBoundaries.h \
     1638        WebCore/platform/text/TextBoundariesICU.cpp \
     1639        WebCore/platform/text/TextBreakIterator.h \
     1640        WebCore/platform/text/TextBreakIteratorICU.cpp \
     1641        WebCore/platform/text/TextBreakIteratorInternalICU.h \
     1642        WebCore/platform/text/TextCodec.cpp \
     1643        WebCore/platform/text/TextCodec.h \
    9111644        WebCore/platform/text/TextCodecICU.cpp \
    912         WebCore/platform/text/TextBoundariesICU.cpp \
    913         WebCore/platform/text/TextBreakIteratorICU.cpp \
    914         WebCore/platform/ContextMenu.cpp \
    915         WebCore/platform/DeprecatedPtrListImpl.cpp \
    916         WebCore/platform/DeprecatedValueListImpl.cpp \
    917         WebCore/platform/DragData.cpp \
    918         WebCore/platform/DragImage.cpp \
    919         WebCore/platform/FileChooser.cpp \
    920         WebCore/platform/graphics/AffineTransform.cpp \
    921         WebCore/platform/graphics/BitmapImage.cpp \
    922         WebCore/platform/graphics/Color.cpp \
    923         WebCore/platform/graphics/FloatPoint3D.cpp \
    924         WebCore/platform/graphics/FloatPoint.cpp \
    925         WebCore/platform/graphics/FloatRect.cpp \
    926         WebCore/platform/graphics/FloatSize.cpp \
    927         WebCore/platform/graphics/FontCache.cpp \
    928         WebCore/platform/graphics/Font.cpp \
    929         WebCore/platform/graphics/FontData.cpp \
    930         WebCore/platform/graphics/FontDescription.cpp \
    931         WebCore/platform/graphics/FontFallbackList.cpp \
    932         WebCore/platform/graphics/FontFamily.cpp \
    933         WebCore/platform/graphics/GeneratedImage.cpp \
    934         WebCore/platform/graphics/GlyphPageTreeNode.cpp \
    935         WebCore/platform/graphics/GlyphWidthMap.cpp \
    936         WebCore/platform/graphics/Gradient.cpp \
    937         WebCore/platform/graphics/GraphicsContext.cpp \
    938         WebCore/platform/graphics/GraphicsTypes.cpp \
    939         WebCore/platform/graphics/Image.cpp \
    940         WebCore/platform/graphics/IntRect.cpp \
    941         WebCore/platform/graphics/Path.cpp \
    942         WebCore/platform/graphics/PathTraversalState.cpp \
    943         WebCore/platform/graphics/Pen.cpp \
    944         WebCore/platform/graphics/SegmentedFontData.cpp \
    945         WebCore/platform/graphics/SimpleFontData.cpp \
    946         WebCore/platform/graphics/StringTruncator.cpp \
    947         WebCore/platform/KURL.cpp \
    948         WebCore/platform/Logging.cpp \
    949         WebCore/platform/MIMETypeRegistry.cpp \
    950         WebCore/platform/network/AuthenticationChallengeBase.cpp \
    951         WebCore/platform/network/Credential.cpp \
    952         WebCore/platform/network/FormData.cpp \
    953         WebCore/platform/network/HTTPParsers.cpp \
    954         WebCore/platform/network/NetworkStateNotifier.cpp \
    955         WebCore/platform/network/ProtectionSpace.cpp \
    956         WebCore/platform/network/ResourceErrorBase.cpp \
    957         WebCore/platform/network/ResourceHandle.cpp \
    958         WebCore/platform/network/ResourceRequestBase.cpp \
    959         WebCore/platform/network/ResourceResponseBase.cpp \
    960         WebCore/platform/text/RegularExpression.cpp \
    961         WebCore/platform/ScrollBar.cpp \
    962         WebCore/platform/SecurityOrigin.cpp \
    963         WebCore/platform/text/SegmentedString.cpp \
    964         WebCore/platform/SharedBuffer.cpp \
    965         WebCore/platform/text/String.cpp \
    966         WebCore/platform/text/StringBuilder.cpp \
    967         WebCore/platform/text/StringImpl.cpp \
    968         WebCore/platform/text/TextCodec.cpp \
     1645        WebCore/platform/text/TextCodecICU.h \
    9691646        WebCore/platform/text/TextCodecLatin1.cpp \
     1647        WebCore/platform/text/TextCodecLatin1.h \
     1648        WebCore/platform/text/TextCodecUTF16.cpp \
     1649        WebCore/platform/text/TextCodecUTF16.h \
    9701650        WebCore/platform/text/TextCodecUserDefined.cpp \
    971         WebCore/platform/text/TextCodecUTF16.cpp \
     1651        WebCore/platform/text/TextCodecUserDefined.h \
    9721652        WebCore/platform/text/TextDecoder.cpp \
     1653        WebCore/platform/text/TextDecoder.h \
     1654        WebCore/platform/text/TextDirection.h \
    9731655        WebCore/platform/text/TextEncoding.cpp \
     1656        WebCore/platform/text/TextEncoding.h \
    9741657        WebCore/platform/text/TextEncodingRegistry.cpp \
     1658        WebCore/platform/text/TextEncodingRegistry.h \
    9751659        WebCore/platform/text/TextStream.cpp \
    976         WebCore/platform/Timer.cpp \
     1660        WebCore/platform/text/TextStream.h \
    9771661        WebCore/platform/text/UnicodeRange.cpp \
    978         WebCore/platform/Widget.cpp \
     1662        WebCore/platform/text/UnicodeRange.h \
    9791663        WebCore/plugins/MimeType.cpp \
     1664        WebCore/plugins/MimeType.h \
    9801665        WebCore/plugins/MimeTypeArray.cpp \
     1666        WebCore/plugins/MimeTypeArray.h \
    9811667        WebCore/plugins/Plugin.cpp \
     1668        WebCore/plugins/Plugin.h \
    9821669        WebCore/plugins/PluginArray.cpp \
     1670        WebCore/plugins/PluginArray.h \
    9831671        WebCore/plugins/PluginData.cpp \
     1672        WebCore/plugins/PluginData.h \
    9841673        WebCore/plugins/PluginDatabase.cpp \
     1674        WebCore/plugins/PluginDatabase.h \
     1675        WebCore/plugins/PluginDebug.h \
    9851676        WebCore/plugins/PluginInfoStore.cpp \
     1677        WebCore/plugins/PluginInfoStore.h \
    9861678        WebCore/plugins/PluginMainThreadScheduler.cpp \
     1679        WebCore/plugins/PluginMainThreadScheduler.h \
    9871680        WebCore/plugins/PluginPackage.cpp \
     1681        WebCore/plugins/PluginPackage.h \
     1682        WebCore/plugins/PluginQuirkSet.h \
    9881683        WebCore/plugins/PluginStream.cpp \
     1684        WebCore/plugins/PluginStream.h \
    9891685        WebCore/plugins/PluginView.cpp \
     1686        WebCore/plugins/PluginView.h \
    9901687        WebCore/plugins/npapi.cpp \
     1688        WebCore/plugins/npfunctions.h \
    9911689        WebCore/rendering/AutoTableLayout.cpp \
     1690        WebCore/rendering/AutoTableLayout.h \
     1691        WebCore/rendering/CounterNode.cpp \
     1692        WebCore/rendering/CounterNode.h \
     1693        WebCore/rendering/DataRef.h \
     1694        WebCore/rendering/EllipsisBox.cpp \
     1695        WebCore/rendering/EllipsisBox.h \
     1696        WebCore/rendering/FixedTableLayout.cpp \
     1697        WebCore/rendering/FixedTableLayout.h \
     1698        WebCore/rendering/GapRects.h \
     1699        WebCore/rendering/HitTestRequest.h \
     1700        WebCore/rendering/HitTestResult.cpp \
     1701        WebCore/rendering/HitTestResult.h \
     1702        WebCore/rendering/InlineBox.cpp \
     1703        WebCore/rendering/InlineBox.h \
     1704        WebCore/rendering/InlineFlowBox.cpp \
     1705        WebCore/rendering/InlineFlowBox.h \
     1706        WebCore/rendering/InlineRunBox.h \
     1707        WebCore/rendering/InlineTextBox.cpp \
     1708        WebCore/rendering/InlineTextBox.h \
     1709        WebCore/rendering/LayoutState.cpp \
     1710        WebCore/rendering/LayoutState.h \
     1711        WebCore/rendering/Length.h \
     1712        WebCore/rendering/ListMarkerBox.cpp \
     1713        WebCore/rendering/ListMarkerBox.h \
     1714        WebCore/rendering/MediaControlElements.h \
     1715        WebCore/rendering/RenderApplet.cpp \
     1716        WebCore/rendering/RenderApplet.h \
     1717        WebCore/rendering/RenderArena.cpp \
     1718        WebCore/rendering/RenderArena.h \
     1719        WebCore/rendering/RenderBR.cpp \
     1720        WebCore/rendering/RenderBR.h \
     1721        WebCore/rendering/RenderBlock.cpp \
     1722        WebCore/rendering/RenderBlock.h \
     1723        WebCore/rendering/RenderBox.cpp \
     1724        WebCore/rendering/RenderBox.h \
     1725        WebCore/rendering/RenderButton.cpp \
     1726        WebCore/rendering/RenderButton.h \
     1727        WebCore/rendering/RenderContainer.cpp \
     1728        WebCore/rendering/RenderContainer.h \
     1729        WebCore/rendering/RenderCounter.cpp \
     1730        WebCore/rendering/RenderCounter.h \
     1731        WebCore/rendering/RenderFieldset.cpp \
     1732        WebCore/rendering/RenderFieldset.h \
     1733        WebCore/rendering/RenderFileUploadControl.cpp \
     1734        WebCore/rendering/RenderFileUploadControl.h \
     1735        WebCore/rendering/RenderFlexibleBox.cpp \
     1736        WebCore/rendering/RenderFlexibleBox.h \
     1737        WebCore/rendering/RenderFlow.cpp \
     1738        WebCore/rendering/RenderFlow.h \
     1739        WebCore/rendering/RenderFrame.cpp \
     1740        WebCore/rendering/RenderFrame.h \
     1741        WebCore/rendering/RenderFrameSet.cpp \
     1742        WebCore/rendering/RenderFrameSet.h \
     1743        WebCore/rendering/RenderHTMLCanvas.cpp \
     1744        WebCore/rendering/RenderHTMLCanvas.h \
     1745        WebCore/rendering/RenderImage.cpp \
     1746        WebCore/rendering/RenderImage.h \
     1747        WebCore/rendering/RenderImageGeneratedContent.cpp \
     1748        WebCore/rendering/RenderImageGeneratedContent.h \
     1749        WebCore/rendering/RenderInline.cpp \
     1750        WebCore/rendering/RenderInline.h \
     1751        WebCore/rendering/RenderLayer.cpp \
     1752        WebCore/rendering/RenderLayer.h \
     1753        WebCore/rendering/RenderLegend.cpp \
     1754        WebCore/rendering/RenderLegend.h \
     1755        WebCore/rendering/RenderListBox.cpp \
     1756        WebCore/rendering/RenderListBox.h \
     1757        WebCore/rendering/RenderListItem.cpp \
     1758        WebCore/rendering/RenderListItem.h \
     1759        WebCore/rendering/RenderListMarker.cpp \
     1760        WebCore/rendering/RenderListMarker.h \
     1761        WebCore/rendering/RenderMarquee.cpp \
     1762        WebCore/rendering/RenderMarquee.h \
     1763        WebCore/rendering/RenderMenuList.cpp \
     1764        WebCore/rendering/RenderMenuList.h \
     1765        WebCore/rendering/RenderObject.cpp \
     1766        WebCore/rendering/RenderObject.h \
     1767        WebCore/rendering/RenderPart.cpp \
     1768        WebCore/rendering/RenderPart.h \
     1769        WebCore/rendering/RenderPartObject.cpp \
     1770        WebCore/rendering/RenderPartObject.h \
     1771        WebCore/rendering/RenderReplaced.cpp \
     1772        WebCore/rendering/RenderReplaced.h \
     1773        WebCore/rendering/RenderReplica.cpp \
     1774        WebCore/rendering/RenderReplica.h \
     1775        WebCore/rendering/RenderSlider.cpp \
     1776        WebCore/rendering/RenderSlider.h \
     1777        WebCore/rendering/RenderTable.cpp \
     1778        WebCore/rendering/RenderTable.h \
     1779        WebCore/rendering/RenderTableCell.cpp \
     1780        WebCore/rendering/RenderTableCell.h \
     1781        WebCore/rendering/RenderTableCol.cpp \
     1782        WebCore/rendering/RenderTableCol.h \
     1783        WebCore/rendering/RenderTableRow.cpp \
     1784        WebCore/rendering/RenderTableRow.h \
     1785        WebCore/rendering/RenderTableSection.cpp \
     1786        WebCore/rendering/RenderTableSection.h \
     1787        WebCore/rendering/RenderText.cpp \
     1788        WebCore/rendering/RenderText.h \
     1789        WebCore/rendering/RenderTextControl.cpp \
     1790        WebCore/rendering/RenderTextControl.h \
     1791        WebCore/rendering/RenderTextFragment.cpp \
     1792        WebCore/rendering/RenderTextFragment.h \
     1793        WebCore/rendering/RenderTheme.cpp \
     1794        WebCore/rendering/RenderTheme.h \
     1795        WebCore/rendering/RenderTreeAsText.cpp \
     1796        WebCore/rendering/RenderTreeAsText.h \
     1797        WebCore/rendering/RenderView.cpp \
     1798        WebCore/rendering/RenderView.h \
     1799        WebCore/rendering/RenderWidget.cpp \
     1800        WebCore/rendering/RenderWidget.h \
     1801        WebCore/rendering/RenderWordBreak.cpp \
     1802        WebCore/rendering/RenderWordBreak.h \
     1803        WebCore/rendering/RootInlineBox.cpp \
     1804        WebCore/rendering/RootInlineBox.h \
     1805        WebCore/rendering/TableLayout.h \
    9921806        WebCore/rendering/bidi.cpp \
     1807        WebCore/rendering/bidi.h \
    9931808        WebCore/rendering/break_lines.cpp \
    994         WebCore/rendering/CounterNode.cpp \
    995         WebCore/rendering/EllipsisBox.cpp \
    996         WebCore/rendering/FixedTableLayout.cpp \
    997         WebCore/rendering/HitTestResult.cpp \
    998         WebCore/rendering/InlineBox.cpp \
    999         WebCore/rendering/InlineFlowBox.cpp \
    1000         WebCore/rendering/InlineTextBox.cpp \
    1001         WebCore/rendering/LayoutState.cpp \
    1002         WebCore/rendering/ListMarkerBox.cpp \
    1003         WebCore/rendering/RenderApplet.cpp \
    1004         WebCore/rendering/RenderArena.cpp \
    1005         WebCore/rendering/RenderBlock.cpp \
    1006         WebCore/rendering/RenderBox.cpp \
    1007         WebCore/rendering/RenderBR.cpp \
    1008         WebCore/rendering/RenderButton.cpp \
    1009         WebCore/rendering/RenderContainer.cpp \
    1010         WebCore/rendering/RenderCounter.cpp \
    1011         WebCore/rendering/RenderFieldset.cpp \
    1012         WebCore/rendering/RenderFileUploadControl.cpp \
    1013         WebCore/rendering/RenderFlexibleBox.cpp \
    1014         WebCore/rendering/RenderFlow.cpp \
    1015         WebCore/rendering/RenderFrame.cpp \
    1016         WebCore/rendering/RenderFrameSet.cpp \
    1017         WebCore/rendering/RenderHTMLCanvas.cpp \
    1018         WebCore/rendering/RenderImage.cpp \
    1019         WebCore/rendering/RenderImageGeneratedContent.cpp \
    1020         WebCore/rendering/RenderInline.cpp \
    1021         WebCore/rendering/RenderLayer.cpp \
    1022         WebCore/rendering/RenderLegend.cpp \
    1023         WebCore/rendering/RenderListBox.cpp \
    1024         WebCore/rendering/RenderListItem.cpp \
    1025         WebCore/rendering/RenderListMarker.cpp \
    1026         WebCore/rendering/RenderMarquee.cpp \
    1027         WebCore/rendering/RenderMenuList.cpp \
    1028         WebCore/rendering/RenderObject.cpp \
    1029         WebCore/rendering/RenderPart.cpp \
    1030         WebCore/rendering/RenderPartObject.cpp \
    1031         WebCore/rendering/RenderReplaced.cpp \
    1032         WebCore/rendering/RenderReplica.cpp \
    1033         WebCore/rendering/RenderSlider.cpp \
    1034         WebCore/rendering/RenderTableCell.cpp \
    1035         WebCore/rendering/RenderTableCol.cpp \
    1036         WebCore/rendering/RenderTable.cpp \
    1037         WebCore/rendering/RenderTableRow.cpp \
    1038         WebCore/rendering/RenderTableSection.cpp \
    1039         WebCore/rendering/RenderTextControl.cpp \
    1040         WebCore/rendering/RenderText.cpp \
    1041         WebCore/rendering/RenderTextFragment.cpp \
    1042         WebCore/rendering/RenderTheme.cpp \
    1043         WebCore/rendering/RenderTreeAsText.cpp \
    1044         WebCore/rendering/RenderView.cpp \
    1045         WebCore/rendering/RenderWidget.cpp \
    1046         WebCore/rendering/RenderWordBreak.cpp \
    1047         WebCore/rendering/RootInlineBox.cpp \
     1809        WebCore/rendering/break_lines.h \
    10481810        WebCore/rendering/style/RenderStyle.cpp \
     1811        WebCore/rendering/style/RenderStyle.h \
    10491812        WebCore/xml/DOMParser.cpp \
     1813        WebCore/xml/DOMParser.h \
    10501814        WebCore/xml/XMLHttpRequest.cpp \
     1815        WebCore/xml/XMLHttpRequest.h \
     1816        WebCore/xml/XMLHttpRequestException.h \
     1817        WebCore/xml/XMLHttpRequestProgressEvent.h \
    10511818        WebCore/xml/XMLHttpRequestUpload.cpp \
    1052         WebCore/xml/XMLSerializer.cpp
     1819        WebCore/xml/XMLHttpRequestUpload.h \
     1820        WebCore/xml/XMLSerializer.cpp \
     1821        WebCore/xml/XMLSerializer.h
    10531822
    10541823webcoregtk_sources += \
     
    10601829if TARGET_X11
    10611830webcoregtk_sources += \
    1062         WebCore/plugins/gtk/gtk2xtbin.c
     1831        WebCore/plugins/gtk/gtk2xtbin.c \
     1832        WebCore/plugins/gtk/gtk2xtbin.h \
     1833        WebCore/plugins/gtk/xembed.h
    10631834endif
    10641835
    1065 webcoregtk_headers += \
    1066         WebCore/platform/gtk/ClipboardGtk.h \
    1067         WebCore/platform/gtk/PasteboardHelper.h
    1068 
    10691836webcoregtk_sources += \
     1837        WebCore/page/gtk/AccessibilityObjectWrapperAtk.cpp \
     1838        WebCore/page/gtk/AccessibilityObjectWrapperAtk.h \
    10701839        WebCore/page/gtk/AXObjectCacheAtk.cpp \
    1071         WebCore/page/gtk/AccessibilityObjectWrapperAtk.cpp \
     1840        WebCore/page/gtk/DragControllerGtk.cpp \
    10721841        WebCore/page/gtk/EventHandlerGtk.cpp \
    10731842        WebCore/page/gtk/FrameGtk.cpp \
    1074         WebCore/page/gtk/DragControllerGtk.cpp \
     1843        WebCore/platform/graphics/cairo/AffineTransformCairo.cpp \
     1844        WebCore/platform/graphics/cairo/CairoPath.h \
     1845        WebCore/platform/graphics/cairo/FontCairo.cpp \
     1846        WebCore/platform/graphics/cairo/GradientCairo.cpp \
     1847        WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp \
     1848        WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h \
     1849        WebCore/platform/graphics/cairo/ImageBufferCairo.cpp \
     1850        WebCore/platform/graphics/cairo/ImageCairo.cpp \
     1851        WebCore/platform/graphics/cairo/ImageSourceCairo.cpp \
     1852        WebCore/platform/graphics/cairo/PathCairo.cpp \
     1853        WebCore/platform/graphics/gtk/ColorGtk.cpp \
     1854        WebCore/platform/graphics/gtk/FontCacheGtk.cpp \
     1855        WebCore/platform/graphics/gtk/FontCustomPlatformData.h \
     1856        WebCore/platform/graphics/gtk/FontGtk.cpp \
     1857        WebCore/platform/graphics/gtk/FontPlatformData.h \
     1858        WebCore/platform/graphics/gtk/IconGtk.cpp \
     1859        WebCore/platform/graphics/gtk/ImageGtk.cpp \
     1860        WebCore/platform/graphics/gtk/IntPointGtk.cpp \
     1861        WebCore/platform/graphics/gtk/IntRectGtk.cpp \
    10751862        WebCore/platform/gtk/ClipboardGtk.cpp \
    1076         WebCore/platform/gtk/CursorGtk.cpp \
     1863        WebCore/platform/gtk/ClipboardGtk.h \
    10771864        WebCore/platform/gtk/ContextMenuGtk.cpp \
    10781865        WebCore/platform/gtk/ContextMenuItemGtk.cpp \
     1866        WebCore/platform/gtk/CursorGtk.cpp \
     1867        WebCore/platform/gtk/CursorGtk.h \
    10791868        WebCore/platform/gtk/DragDataGtk.cpp \
    10801869        WebCore/platform/gtk/DragImageGtk.cpp \
     
    10821871        WebCore/platform/gtk/FileChooserGtk.cpp \
    10831872        WebCore/platform/gtk/FileSystemGtk.cpp \
    1084         WebCore/platform/graphics/gtk/FontCacheGtk.cpp \
    1085         WebCore/platform/graphics/gtk/FontGtk.cpp \
     1873        WebCore/platform/gtk/gtk2drawing.c \
     1874        WebCore/platform/gtk/gtkdrawing.h \
     1875        WebCore/platform/gtk/KeyboardCodes.h \
    10861876        WebCore/platform/gtk/KeyEventGtk.cpp \
    10871877        WebCore/platform/gtk/Language.cpp \
     
    10911881        WebCore/platform/gtk/MouseEventGtk.cpp \
    10921882        WebCore/platform/gtk/PasteboardGtk.cpp \
     1883        WebCore/platform/gtk/PasteboardHelper.h \
    10931884        WebCore/platform/gtk/PlatformScreenGtk.cpp \
    10941885        WebCore/platform/gtk/PlatformScrollBarGtk.cpp \
     1886        WebCore/platform/gtk/PlatformScrollBar.h \
    10951887        WebCore/platform/gtk/PopupMenuGtk.cpp \
    10961888        WebCore/platform/gtk/RenderThemeGtk.cpp \
     1889        WebCore/platform/gtk/RenderThemeGtk.h \
     1890        WebCore/platform/gtk/ScrollViewGtk.cpp \
    10971891        WebCore/platform/gtk/SearchPopupMenuGtk.cpp \
    1098         WebCore/platform/gtk/ScrollViewGtk.cpp \
    10991892        WebCore/platform/gtk/SharedTimerGtk.cpp \
    11001893        WebCore/platform/gtk/SoundGtk.cpp \
    11011894        WebCore/platform/gtk/SystemTimeGtk.cpp \
    11021895        WebCore/platform/gtk/TemporaryLinkStubs.cpp \
    1103         WebCore/platform/text/gtk/TextBreakIteratorInternalICUGtk.cpp \
    11041896        WebCore/platform/gtk/WheelEventGtk.cpp \
    11051897        WebCore/platform/gtk/WidgetGtk.cpp \
    1106         WebCore/platform/gtk/gtk2drawing.c \
    1107         WebCore/platform/graphics/gtk/ColorGtk.cpp \
    1108         WebCore/platform/graphics/gtk/IconGtk.cpp \
    1109         WebCore/platform/graphics/gtk/ImageGtk.cpp \
    1110         WebCore/platform/graphics/gtk/IntPointGtk.cpp \
    1111         WebCore/platform/graphics/gtk/IntRectGtk.cpp \
    1112         WebCore/platform/graphics/cairo/AffineTransformCairo.cpp \
    1113         WebCore/platform/graphics/cairo/FontCairo.cpp \
    1114         WebCore/platform/graphics/cairo/GradientCairo.cpp \
    1115         WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp \
    1116         WebCore/platform/graphics/cairo/ImageBufferCairo.cpp \
    1117         WebCore/platform/graphics/cairo/ImageCairo.cpp \
    1118         WebCore/platform/graphics/cairo/ImageSourceCairo.cpp \
    1119         WebCore/platform/graphics/cairo/PathCairo.cpp \
     1898        WebCore/platform/image-decoders/bmp/BMPImageDecoder.cpp \
     1899        WebCore/platform/image-decoders/bmp/BMPImageDecoder.h \
    11201900        WebCore/platform/image-decoders/gif/GIFImageDecoder.cpp \
     1901        WebCore/platform/image-decoders/gif/GIFImageDecoder.h \
    11211902        WebCore/platform/image-decoders/gif/GIFImageReader.cpp  \
     1903        WebCore/platform/image-decoders/gif/GIFImageReader.h \
     1904        WebCore/platform/image-decoders/ico/ICOImageDecoder.cpp \
     1905        WebCore/platform/image-decoders/ico/ICOImageDecoder.h \
     1906        WebCore/platform/image-decoders/ImageDecoder.h \
     1907        WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp \
     1908        WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.h \
    11221909        WebCore/platform/image-decoders/png/PNGImageDecoder.cpp \
    1123         WebCore/platform/image-decoders/jpeg/JPEGImageDecoder.cpp \
    1124         WebCore/platform/image-decoders/bmp/BMPImageDecoder.cpp \
    1125         WebCore/platform/image-decoders/ico/ICOImageDecoder.cpp \
    1126         WebCore/platform/image-decoders/xbm/XBMImageDecoder.cpp
     1910        WebCore/platform/image-decoders/png/PNGImageDecoder.h \
     1911        WebCore/platform/image-decoders/xbm/XBMImageDecoder.cpp \
     1912        WebCore/platform/image-decoders/xbm/XBMImageDecoder.h \
     1913        WebCore/platform/image-decoders/zlib/crc32.h \
     1914        WebCore/platform/image-decoders/zlib/deflate.h \
     1915        WebCore/platform/image-decoders/zlib/inffast.h \
     1916        WebCore/platform/image-decoders/zlib/inffixed.h \
     1917        WebCore/platform/image-decoders/zlib/inflate.h \
     1918        WebCore/platform/image-decoders/zlib/inftrees.h \
     1919        WebCore/platform/image-decoders/zlib/mozzconf.h \
     1920        WebCore/platform/image-decoders/zlib/trees.h \
     1921        WebCore/platform/image-decoders/zlib/zconf.h \
     1922        WebCore/platform/image-decoders/zlib/zlib.h \
     1923        WebCore/platform/image-decoders/zlib/zutil.h \
     1924        WebCore/platform/text/gtk/TextBreakIteratorInternalICUGtk.cpp
    11271925
    11281926# ----
     
    11361934
    11371935webcore_sources += \
     1936        WebCore/platform/network/curl/AuthenticationChallenge.h \
    11381937        WebCore/platform/network/curl/CookieJarCurl.cpp \
    11391938        WebCore/platform/network/curl/FormDataStreamCurl.cpp \
     1939        WebCore/platform/network/curl/FormDataStreamCurl.h \
     1940        WebCore/platform/network/curl/ResourceError.h \
    11401941        WebCore/platform/network/curl/ResourceHandleCurl.cpp \
    1141         WebCore/platform/network/curl/ResourceHandleManager.cpp
     1942        WebCore/platform/network/curl/ResourceHandleManager.cpp \
     1943        WebCore/platform/network/curl/ResourceHandleManager.h \
     1944        WebCore/platform/network/curl/ResourceRequest.h \
     1945        WebCore/platform/network/curl/ResourceResponse.h
    11421946
    11431947endif # END USE_CURL
     
    11491953
    11501954webcore_sources += \
     1955        WebCore/platform/network/soup/AuthenticationChallenge.h \
    11511956        WebCore/platform/network/soup/CookieJarSoup.cpp \
    1152         WebCore/platform/network/soup/ResourceHandleSoup.cpp
     1957        WebCore/platform/network/soup/ResourceError.h \
     1958        WebCore/platform/network/soup/ResourceHandleSoup.cpp \
     1959        WebCore/platform/network/soup/ResourceRequest.h \
     1960        WebCore/platform/network/soup/ResourceResponse.h
    11531961endif
    11541962
     
    11871995FEATURE_DEFINES_JAVASCRIPT += ENABLE_OFFLINE_WEB_APPLICATIONS=1
    11881996
     1997webcore_built_sources += \
     1998        DerivedSources/JSDOMApplicationCache.cpp
     1999
     2000IDL_BINDINGS += \
     2001        WebCore/loader/appcache/DOMApplicationCache.idl
     2002
    11892003webcore_cppflags += \
    11902004        -DENABLE_OFFLINE_WEB_APPLICATIONS=1
     
    11932007        WebCore/bindings/js/JSDOMApplicationCacheCustom.cpp \
    11942008        WebCore/loader/appcache/ApplicationCache.cpp \
     2009        WebCore/loader/appcache/ApplicationCache.h \
    11952010        WebCore/loader/appcache/ApplicationCacheGroup.cpp \
     2011        WebCore/loader/appcache/ApplicationCacheGroup.h \
    11962012        WebCore/loader/appcache/ApplicationCacheResource.cpp \
     2013        WebCore/loader/appcache/ApplicationCacheResource.h \
    11972014        WebCore/loader/appcache/ApplicationCacheStorage.cpp \
     2015        WebCore/loader/appcache/ApplicationCacheStorage.h \
    11982016        WebCore/loader/appcache/DOMApplicationCache.cpp \
    1199         WebCore/loader/appcache/ManifestParser.cpp
    1200 
    1201 webcore_built_sources += \
    1202         DerivedSources/JSDOMApplicationCache.cpp
     2017        WebCore/loader/appcache/DOMApplicationCache.h \
     2018        WebCore/loader/appcache/ManifestParser.cpp \
     2019        WebCore/loader/appcache/ManifestParser.h
    12032020
    12042021endif # END ENABLE_OFFLINE_WEB_APPLICATIONS
     
    12472064
    12482065webcore_sources += \
    1249         WebCore/platform/sql/SQLiteAuthorizer.cpp \
    1250         WebCore/platform/sql/SQLiteDatabase.cpp \
    1251         WebCore/platform/sql/SQLiteStatement.cpp \
    1252         WebCore/platform/sql/SQLiteTransaction.cpp \
    1253         WebCore/platform/sql/SQLValue.cpp \
    1254         WebCore/storage/ChangeVersionWrapper.cpp \
    1255         WebCore/storage/DatabaseAuthorizer.cpp \
    1256         WebCore/storage/Database.cpp \
    1257         WebCore/storage/DatabaseTask.cpp \
    1258         WebCore/storage/DatabaseThread.cpp \
    1259         WebCore/storage/DatabaseTracker.cpp \
    1260         WebCore/storage/OriginQuotaManager.cpp \
    1261         WebCore/storage/OriginUsageRecord.cpp \
    1262         WebCore/storage/SQLResultSet.cpp \
    1263         WebCore/storage/SQLResultSetRowList.cpp \
    1264         WebCore/storage/SQLStatement.cpp \
    1265         WebCore/storage/SQLTransaction.cpp \
    12662066        WebCore/bindings/js/JSCustomSQLStatementCallback.cpp \
     2067        WebCore/bindings/js/JSCustomSQLStatementCallback.h \
    12672068        WebCore/bindings/js/JSCustomSQLStatementErrorCallback.cpp \
     2069        WebCore/bindings/js/JSCustomSQLStatementErrorCallback.h \
    12682070        WebCore/bindings/js/JSCustomSQLTransactionCallback.cpp \
     2071        WebCore/bindings/js/JSCustomSQLTransactionCallback.h \
    12692072        WebCore/bindings/js/JSCustomSQLTransactionErrorCallback.cpp \
     2073        WebCore/bindings/js/JSCustomSQLTransactionErrorCallback.h \
    12702074        WebCore/bindings/js/JSDatabaseCustom.cpp \
    12712075        WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp \
    1272         WebCore/bindings/js/JSSQLTransactionCustom.cpp
     2076        WebCore/bindings/js/JSSQLTransactionCustom.cpp \
     2077        WebCore/platform/sql/SQLValue.cpp \
     2078        WebCore/platform/sql/SQLValue.h \
     2079        WebCore/platform/sql/SQLiteAuthorizer.cpp \
     2080        WebCore/platform/sql/SQLiteAuthorizer.h \
     2081        WebCore/platform/sql/SQLiteDatabase.cpp \
     2082        WebCore/platform/sql/SQLiteDatabase.h \
     2083        WebCore/platform/sql/SQLiteStatement.cpp \
     2084        WebCore/platform/sql/SQLiteStatement.h \
     2085        WebCore/platform/sql/SQLiteTransaction.cpp \
     2086        WebCore/platform/sql/SQLiteTransaction.h \
     2087        WebCore/storage/ChangeVersionWrapper.cpp \
     2088        WebCore/storage/ChangeVersionWrapper.h \
     2089        WebCore/storage/Database.cpp \
     2090        WebCore/storage/Database.h \
     2091        WebCore/storage/DatabaseAuthorizer.cpp \
     2092        WebCore/storage/DatabaseAuthorizer.h \
     2093        WebCore/storage/DatabaseDetails.h \
     2094        WebCore/storage/DatabaseTask.cpp \
     2095        WebCore/storage/DatabaseTask.h \
     2096        WebCore/storage/DatabaseThread.cpp \
     2097        WebCore/storage/DatabaseThread.h \
     2098        WebCore/storage/DatabaseTracker.cpp \
     2099        WebCore/storage/DatabaseTracker.h \
     2100        WebCore/storage/DatabaseTrackerClient.h \
     2101        WebCore/storage/OriginQuotaManager.cpp \
     2102        WebCore/storage/OriginQuotaManager.h \
     2103        WebCore/storage/OriginUsageRecord.cpp \
     2104        WebCore/storage/OriginUsageRecord.h \
     2105        WebCore/storage/SQLError.h \
     2106        WebCore/storage/SQLResultSet.cpp \
     2107        WebCore/storage/SQLResultSet.h \
     2108        WebCore/storage/SQLResultSetRowList.cpp \
     2109        WebCore/storage/SQLResultSetRowList.h \
     2110        WebCore/storage/SQLStatement.cpp \
     2111        WebCore/storage/SQLStatement.h \
     2112        WebCore/storage/SQLStatementCallback.h \
     2113        WebCore/storage/SQLStatementErrorCallback.h \
     2114        WebCore/storage/SQLTransaction.cpp \
     2115        WebCore/storage/SQLTransaction.h \
     2116        WebCore/storage/SQLTransactionCallback.h \
     2117        WebCore/storage/SQLTransactionErrorCallback.h
    12732118
    12742119endif # END ENABLE_DATABASE
     
    12952140
    12962141webcore_sources += \
     2142        WebCore/bindings/js/JSStorageCustom.cpp \
    12972143        WebCore/storage/LocalStorage.cpp \
     2144        WebCore/storage/LocalStorage.h \
    12982145        WebCore/storage/LocalStorageArea.cpp \
     2146        WebCore/storage/LocalStorageArea.h \
    12992147        WebCore/storage/LocalStorageTask.cpp \
     2148        WebCore/storage/LocalStorageTask.h \
    13002149        WebCore/storage/LocalStorageThread.cpp \
     2150        WebCore/storage/LocalStorageThread.h \
     2151        WebCore/storage/SessionStorage.cpp \
     2152        WebCore/storage/SessionStorage.h \
     2153        WebCore/storage/SessionStorageArea.cpp \
     2154        WebCore/storage/SessionStorageArea.h \
    13012155        WebCore/storage/Storage.cpp \
     2156        WebCore/storage/Storage.h \
    13022157        WebCore/storage/StorageArea.cpp \
     2158        WebCore/storage/StorageArea.h \
    13032159        WebCore/storage/StorageEvent.cpp \
     2160        WebCore/storage/StorageEvent.h \
    13042161        WebCore/storage/StorageMap.cpp \
    1305         WebCore/storage/SessionStorage.cpp \
    1306         WebCore/storage/SessionStorageArea.cpp \
    1307         WebCore/bindings/js/JSStorageCustom.cpp
    1308 
     2162        WebCore/storage/StorageMap.h
    13092163endif # END ENABLE_DOM_STORAGE
    13102164
     
    13172171webcore_sources += \
    13182172        WebCore/loader/icon/IconDatabase.cpp \
     2173        WebCore/loader/icon/IconDatabase.h \
     2174        WebCore/loader/icon/IconDatabaseClient.h \
    13192175        WebCore/loader/icon/IconRecord.cpp \
    1320         WebCore/loader/icon/PageURLRecord.cpp
     2176        WebCore/loader/icon/IconRecord.h \
     2177        WebCore/loader/icon/PageURLRecord.cpp \
     2178        WebCore/loader/icon/PageURLRecord.h
    13212179
    13222180else
     
    13652223
    13662224webcore_sources += \
     2225        WebCore/bindings/js/JSAudioConstructor.cpp \
     2226        WebCore/bindings/js/JSAudioConstructor.h \
    13672227        WebCore/html/HTMLAudioElement.cpp \
     2228        WebCore/html/HTMLAudioElement.h \
    13682229        WebCore/html/HTMLMediaElement.cpp \
     2230        WebCore/html/HTMLMediaElement.h \
    13692231        WebCore/html/HTMLSourceElement.cpp \
     2232        WebCore/html/HTMLSourceElement.h \
    13702233        WebCore/html/HTMLVideoElement.cpp \
     2234        WebCore/html/HTMLVideoElement.h \
    13712235        WebCore/html/TimeRanges.cpp \
     2236        WebCore/html/TimeRanges.h \
    13722237        WebCore/platform/graphics/MediaPlayer.cpp \
    13732238        WebCore/rendering/MediaControlElements.cpp \
     2239        WebCore/rendering/RenderMedia.cpp \
     2240        WebCore/rendering/RenderMedia.h \
    13742241        WebCore/rendering/RenderVideo.cpp \
    1375         WebCore/rendering/RenderMedia.cpp \
    1376         WebCore/bindings/js/JSAudioConstructor.cpp
     2242        WebCore/rendering/RenderVideo.h
    13772243
    13782244webcoregtk_sources += \
    13792245        WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.cpp \
    1380         WebCore/platform/graphics/gtk/VideoSinkGStreamer.cpp
     2246        WebCore/platform/graphics/gtk/MediaPlayerPrivateGStreamer.h \
     2247        WebCore/platform/graphics/gtk/VideoSinkGStreamer.cpp \
     2248        WebCore/platform/graphics/gtk/VideoSinkGStreamer.h
    13812249
    13822250endif # END ENABLE_VIDEO
     
    14052273
    14062274IDL_BINDINGS += \
    1407         WebCore/xml/XPathNSResolver.idl \
     2275        WebCore/xml/XPathEvaluator.idl \
    14082276        WebCore/xml/XPathException.idl \
    14092277        WebCore/xml/XPathExpression.idl \
    1410         WebCore/xml/XPathResult.idl \
    1411         WebCore/xml/XPathEvaluator.idl
     2278        WebCore/xml/XPathNSResolver.idl \
     2279        WebCore/xml/XPathResult.idl
    14122280
    14132281webcore_sources += \
    14142282        WebCore/xml/NativeXPathNSResolver.cpp \
     2283        WebCore/xml/NativeXPathNSResolver.h \
    14152284        WebCore/xml/XPathEvaluator.cpp \
     2285        WebCore/xml/XPathEvaluator.h \
     2286        WebCore/xml/XPathException.h \
    14162287        WebCore/xml/XPathExpression.cpp \
     2288        WebCore/xml/XPathExpression.h \
    14172289        WebCore/xml/XPathExpressionNode.cpp \
     2290        WebCore/xml/XPathExpressionNode.h \
    14182291        WebCore/xml/XPathFunctions.cpp \
     2292        WebCore/xml/XPathFunctions.h \
     2293        WebCore/xml/XPathNSResolver.cpp \
     2294        WebCore/xml/XPathNSResolver.h \
    14192295        WebCore/xml/XPathNamespace.cpp \
     2296        WebCore/xml/XPathNamespace.h \
    14202297        WebCore/xml/XPathNodeSet.cpp \
    1421         WebCore/xml/XPathNSResolver.cpp \
     2298        WebCore/xml/XPathNodeSet.h \
    14222299        WebCore/xml/XPathParser.cpp \
     2300        WebCore/xml/XPathParser.h \
    14232301        WebCore/xml/XPathPath.cpp \
     2302        WebCore/xml/XPathPath.h \
    14242303        WebCore/xml/XPathPredicate.cpp \
     2304        WebCore/xml/XPathPredicate.h \
    14252305        WebCore/xml/XPathResult.cpp \
     2306        WebCore/xml/XPathResult.h \
    14262307        WebCore/xml/XPathStep.cpp \
     2308        WebCore/xml/XPathStep.h \
    14272309        WebCore/xml/XPathUtil.cpp \
     2310        WebCore/xml/XPathUtil.h \
    14282311        WebCore/xml/XPathValue.cpp \
    1429         WebCore/xml/XPathVariableReference.cpp
    1430 
     2312        WebCore/xml/XPathValue.h \
     2313        WebCore/xml/XPathVariableReference.cpp \
     2314        WebCore/xml/XPathVariableReference.h
    14312315# XPath grammar
    14322316
     
    14562340webcore_sources += \
    14572341        WebCore/xml/XSLImportRule.cpp \
     2342        WebCore/xml/XSLImportRule.h \
    14582343        WebCore/xml/XSLStyleSheet.cpp \
     2344        WebCore/xml/XSLStyleSheet.h \
    14592345        WebCore/xml/XSLTExtensions.cpp \
     2346        WebCore/xml/XSLTExtensions.h \
     2347        WebCore/xml/XSLTProcessor.cpp \
     2348        WebCore/xml/XSLTProcessor.h \
    14602349        WebCore/xml/XSLTUnicodeSort.cpp \
    1461         WebCore/xml/XSLTProcessor.cpp
     2350        WebCore/xml/XSLTUnicodeSort.h
    14622351endif # END ENABLE_XSLT
    14632352
     
    17472636
    17482637IDL_BINDINGS += \
    1749         WebCore/svg/SVGZoomEvent.idl \
     2638        WebCore/svg/ElementTimeControl.idl \
    17502639        WebCore/svg/SVGAElement.idl \
    17512640        WebCore/svg/SVGAltGlyphElement.idl \
    17522641        WebCore/svg/SVGAngle.idl \
    17532642        WebCore/svg/SVGAnimateColorElement.idl \
     2643        WebCore/svg/SVGAnimateElement.idl \
     2644        WebCore/svg/SVGAnimateTransformElement.idl \
    17542645        WebCore/svg/SVGAnimatedAngle.idl \
    17552646        WebCore/svg/SVGAnimatedBoolean.idl \
     
    17602651        WebCore/svg/SVGAnimatedNumber.idl \
    17612652        WebCore/svg/SVGAnimatedNumberList.idl \
     2653        WebCore/svg/SVGAnimatedPathData.idl \
     2654        WebCore/svg/SVGAnimatedPoints.idl \
    17622655        WebCore/svg/SVGAnimatedPreserveAspectRatio.idl \
    17632656        WebCore/svg/SVGAnimatedRect.idl \
    17642657        WebCore/svg/SVGAnimatedString.idl \
    17652658        WebCore/svg/SVGAnimatedTransformList.idl \
    1766         WebCore/svg/SVGAnimateElement.idl \
    1767         WebCore/svg/SVGAnimateTransformElement.idl \
    17682659        WebCore/svg/SVGAnimationElement.idl \
    17692660        WebCore/svg/SVGCircleElement.idl \
     
    17812672        WebCore/svg/SVGEllipseElement.idl \
    17822673        WebCore/svg/SVGException.idl \
     2674        WebCore/svg/SVGExternalResourcesRequired.idl \
    17832675        WebCore/svg/SVGFEBlendElement.idl \
    17842676        WebCore/svg/SVGFEColorMatrixElement.idl \
     
    18042696        WebCore/svg/SVGFETurbulenceElement.idl \
    18052697        WebCore/svg/SVGFilterElement.idl \
     2698        WebCore/svg/SVGFilterPrimitiveStandardAttributes.idl \
     2699        WebCore/svg/SVGFitToViewBox.idl \
    18062700        WebCore/svg/SVGFontElement.idl \
    18072701        WebCore/svg/SVGFontFaceElement.idl \
     
    18132707        WebCore/svg/SVGGElement.idl \
    18142708        WebCore/svg/SVGGlyphElement.idl \
    1815         WebCore/svg/SVGGElement.idl \
    18162709        WebCore/svg/SVGGradientElement.idl \
     2710        WebCore/svg/SVGHKernElement.idl \
    18172711        WebCore/svg/SVGImageElement.idl \
     2712        WebCore/svg/SVGLangSpace.idl \
    18182713        WebCore/svg/SVGLength.idl \
    18192714        WebCore/svg/SVGLengthList.idl \
     2715        WebCore/svg/SVGLineElement.idl \
    18202716        WebCore/svg/SVGLinearGradientElement.idl \
    1821         WebCore/svg/SVGLineElement.idl \
     2717        WebCore/svg/SVGLocatable.idl \
    18222718        WebCore/svg/SVGMarkerElement.idl \
    18232719        WebCore/svg/SVGMaskElement.idl \
     
    18292725        WebCore/svg/SVGPaint.idl \
    18302726        WebCore/svg/SVGPathElement.idl \
     2727        WebCore/svg/SVGPathSeg.idl \
    18312728        WebCore/svg/SVGPathSegArcAbs.idl \
    18322729        WebCore/svg/SVGPathSegArcRel.idl \
     
    18402737        WebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl \
    18412738        WebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl \
    1842         WebCore/svg/SVGPathSeg.idl \
    18432739        WebCore/svg/SVGPathSegLinetoAbs.idl \
    18442740        WebCore/svg/SVGPathSegLinetoHorizontalAbs.idl \
     
    18572753        WebCore/svg/SVGPreserveAspectRatio.idl \
    18582754        WebCore/svg/SVGRadialGradientElement.idl \
     2755        WebCore/svg/SVGRect.idl \
    18592756        WebCore/svg/SVGRectElement.idl \
    1860         WebCore/svg/SVGRect.idl \
    18612757        WebCore/svg/SVGRenderingIntent.idl \
     2758        WebCore/svg/SVGSVGElement.idl \
    18622759        WebCore/svg/SVGScriptElement.idl \
    18632760        WebCore/svg/SVGSetElement.idl \
    18642761        WebCore/svg/SVGStopElement.idl \
    18652762        WebCore/svg/SVGStringList.idl \
     2763        WebCore/svg/SVGStylable.idl \
    18662764        WebCore/svg/SVGStyleElement.idl \
    1867         WebCore/svg/SVGSVGElement.idl \
    18682765        WebCore/svg/SVGSwitchElement.idl \
    18692766        WebCore/svg/SVGSymbolElement.idl \
     2767        WebCore/svg/SVGTRefElement.idl \
     2768        WebCore/svg/SVGTSpanElement.idl \
     2769        WebCore/svg/SVGTests.idl \
    18702770        WebCore/svg/SVGTextContentElement.idl \
    18712771        WebCore/svg/SVGTextElement.idl \
     
    18752775        WebCore/svg/SVGTransform.idl \
    18762776        WebCore/svg/SVGTransformList.idl \
    1877         WebCore/svg/SVGTRefElement.idl \
    1878         WebCore/svg/SVGTSpanElement.idl \
     2777        WebCore/svg/SVGTransformable.idl \
     2778        WebCore/svg/SVGURIReference.idl \
    18792779        WebCore/svg/SVGUnitTypes.idl \
    18802780        WebCore/svg/SVGUseElement.idl \
    1881         WebCore/svg/SVGViewElement.idl
     2781        WebCore/svg/SVGViewElement.idl \
     2782        WebCore/svg/SVGViewSpec.idl \
     2783        WebCore/svg/SVGZoomAndPan.idl \
     2784        WebCore/svg/SVGZoomEvent.idl
    18822785
    18832786webcore_cppflags += \
     
    18892792
    18902793webcore_sources += \
     2794        WebCore/bindings/js/JSSVGLazyEventListener.cpp \
     2795        WebCore/bindings/js/JSSVGLazyEventListener.h \
    18912796        WebCore/bindings/js/JSSVGLengthCustom.cpp \
    18922797        WebCore/bindings/js/JSSVGMatrixCustom.cpp \
     2798        WebCore/bindings/js/JSSVGPODTypeWrapper.h \
    18932799        WebCore/bindings/js/JSSVGPathSegCustom.cpp \
    18942800        WebCore/bindings/js/JSSVGPathSegListCustom.cpp \
    18952801        WebCore/bindings/js/JSSVGPointListCustom.cpp \
    18962802        WebCore/bindings/js/JSSVGTransformListCustom.cpp \
    1897         WebCore/bindings/js/JSSVGLazyEventListener.cpp \
    18982803        WebCore/css/SVGCSSComputedStyleDeclaration.cpp \
    18992804        WebCore/css/SVGCSSParser.cpp \
     
    19032808        WebCore/platform/graphics/filters/FEComponentTransfer.cpp \
    19042809        WebCore/platform/graphics/filters/FEComposite.cpp \
     2810        WebCore/rendering/PointerEventsHitRules.cpp \
     2811        WebCore/rendering/PointerEventsHitRules.h \
     2812        WebCore/rendering/RenderForeignObject.cpp \
     2813        WebCore/rendering/RenderForeignObject.h \
     2814        WebCore/rendering/RenderPath.cpp \
     2815        WebCore/rendering/RenderPath.h \
     2816        WebCore/rendering/RenderSVGBlock.cpp \
     2817        WebCore/rendering/RenderSVGBlock.h \
     2818        WebCore/rendering/RenderSVGContainer.cpp \
     2819        WebCore/rendering/RenderSVGContainer.h \
     2820        WebCore/rendering/RenderSVGGradientStop.cpp \
     2821        WebCore/rendering/RenderSVGGradientStop.h \
     2822        WebCore/rendering/RenderSVGHiddenContainer.cpp \
     2823        WebCore/rendering/RenderSVGHiddenContainer.h \
     2824        WebCore/rendering/RenderSVGImage.cpp \
     2825        WebCore/rendering/RenderSVGImage.h \
     2826        WebCore/rendering/RenderSVGInline.cpp \
     2827        WebCore/rendering/RenderSVGInline.h \
     2828        WebCore/rendering/RenderSVGInlineText.cpp \
     2829        WebCore/rendering/RenderSVGInlineText.h \
     2830        WebCore/rendering/RenderSVGRoot.cpp \
     2831        WebCore/rendering/RenderSVGRoot.h \
     2832        WebCore/rendering/RenderSVGTSpan.cpp \
     2833        WebCore/rendering/RenderSVGTSpan.h \
     2834        WebCore/rendering/RenderSVGText.cpp \
     2835        WebCore/rendering/RenderSVGText.h \
     2836        WebCore/rendering/RenderSVGTextPath.cpp \
     2837        WebCore/rendering/RenderSVGTextPath.h \
     2838        WebCore/rendering/RenderSVGTransformableContainer.cpp \
     2839        WebCore/rendering/RenderSVGTransformableContainer.h \
     2840        WebCore/rendering/RenderSVGViewportContainer.cpp \
     2841        WebCore/rendering/RenderSVGViewportContainer.h \
     2842        WebCore/rendering/SVGCharacterLayoutInfo.cpp \
     2843        WebCore/rendering/SVGCharacterLayoutInfo.h \
     2844        WebCore/rendering/SVGInlineFlowBox.cpp \
     2845        WebCore/rendering/SVGInlineFlowBox.h \
     2846        WebCore/rendering/SVGInlineTextBox.cpp \
     2847        WebCore/rendering/SVGInlineTextBox.h \
    19052848        WebCore/rendering/SVGRenderStyle.cpp \
     2849        WebCore/rendering/SVGRenderStyle.h \
    19062850        WebCore/rendering/SVGRenderStyleDefs.cpp \
     2851        WebCore/rendering/SVGRenderStyleDefs.h \
     2852        WebCore/rendering/SVGRenderSupport.cpp \
     2853        WebCore/rendering/SVGRenderSupport.h \
    19072854        WebCore/rendering/SVGRenderTreeAsText.cpp \
    1908         WebCore/rendering/PointerEventsHitRules.cpp \
    1909         WebCore/svg/SVGZoomEvent.cpp \
     2855        WebCore/rendering/SVGRenderTreeAsText.h \
     2856        WebCore/rendering/SVGRootInlineBox.cpp \
     2857        WebCore/rendering/SVGRootInlineBox.h \
     2858        WebCore/svg/ColorDistance.cpp \
     2859        WebCore/svg/ColorDistance.h \
     2860        WebCore/svg/ElementTimeControl.h \
     2861        WebCore/svg/Filter.cpp \
     2862        WebCore/svg/Filter.h \
     2863        WebCore/svg/FilterBuilder.h \
     2864        WebCore/svg/FilterEffect.cpp \
     2865        WebCore/svg/FilterEffect.h \
     2866        WebCore/svg/GradientAttributes.h \
     2867        WebCore/svg/LinearGradientAttributes.h \
     2868        WebCore/svg/PatternAttributes.h \
     2869        WebCore/svg/RadialGradientAttributes.h \
     2870        WebCore/svg/SVGAElement.cpp \
     2871        WebCore/svg/SVGAElement.h \
     2872        WebCore/svg/SVGAltGlyphElement.cpp \
     2873        WebCore/svg/SVGAltGlyphElement.h \
     2874        WebCore/svg/SVGAngle.cpp \
     2875        WebCore/svg/SVGAngle.h \
     2876        WebCore/svg/SVGAnimateColorElement.cpp \
     2877        WebCore/svg/SVGAnimateColorElement.h \
     2878        WebCore/svg/SVGAnimateElement.cpp \
     2879        WebCore/svg/SVGAnimateElement.h \
     2880        WebCore/svg/SVGAnimateMotionElement.cpp \
     2881        WebCore/svg/SVGAnimateMotionElement.h \
     2882        WebCore/svg/SVGAnimateTransformElement.cpp \
     2883        WebCore/svg/SVGAnimateTransformElement.h \
     2884        WebCore/svg/SVGAnimatedPathData.cpp \
     2885        WebCore/svg/SVGAnimatedPathData.h \
     2886        WebCore/svg/SVGAnimatedPoints.cpp \
     2887        WebCore/svg/SVGAnimatedPoints.h \
     2888        WebCore/svg/SVGAnimatedProperty.h \
     2889        WebCore/svg/SVGAnimatedTemplate.h \
     2890        WebCore/svg/SVGAnimationElement.cpp \
     2891        WebCore/svg/SVGAnimationElement.h \
     2892        WebCore/svg/SVGCircleElement.cpp \
     2893        WebCore/svg/SVGCircleElement.h \
     2894        WebCore/svg/SVGClipPathElement.cpp \
     2895        WebCore/svg/SVGClipPathElement.h \
     2896        WebCore/svg/SVGColor.cpp \
     2897        WebCore/svg/SVGColor.h \
     2898        WebCore/svg/SVGComponentTransferFunctionElement.cpp \
     2899        WebCore/svg/SVGComponentTransferFunctionElement.h \
     2900        WebCore/svg/SVGCursorElement.cpp \
     2901        WebCore/svg/SVGCursorElement.h \
     2902        WebCore/svg/SVGDefinitionSrcElement.cpp \
     2903        WebCore/svg/SVGDefinitionSrcElement.h \
     2904        WebCore/svg/SVGDefsElement.cpp \
     2905        WebCore/svg/SVGDefsElement.h \
     2906        WebCore/svg/SVGDescElement.cpp \
     2907        WebCore/svg/SVGDescElement.h \
     2908        WebCore/svg/SVGDocument.cpp \
     2909        WebCore/svg/SVGDocument.h \
    19102910        WebCore/svg/SVGDocumentExtensions.cpp \
    1911         WebCore/svg/SVGImageLoader.cpp \
    1912         WebCore/svg/ColorDistance.cpp \
    1913         WebCore/svg/Filter.cpp \
    1914         WebCore/svg/FilterEffect.cpp \
    1915         WebCore/svg/SVGAElement.cpp \
    1916         WebCore/svg/SVGAltGlyphElement.cpp \
    1917         WebCore/svg/SVGAngle.cpp \
    1918         WebCore/svg/SVGAnimateColorElement.cpp \
    1919         WebCore/svg/SVGAnimatedPathData.cpp \
    1920         WebCore/svg/SVGAnimatedPoints.cpp \
    1921         WebCore/svg/SVGAnimateElement.cpp \
    1922         WebCore/svg/SVGAnimateMotionElement.cpp \
    1923         WebCore/svg/SVGAnimateTransformElement.cpp \
    1924         WebCore/svg/SVGAnimationElement.cpp \
    1925         WebCore/svg/SVGCircleElement.cpp \
    1926         WebCore/svg/SVGClipPathElement.cpp \
    1927         WebCore/svg/SVGColor.cpp \
    1928         WebCore/svg/SVGComponentTransferFunctionElement.cpp \
    1929         WebCore/svg/SVGCursorElement.cpp \
    1930         WebCore/svg/SVGDefinitionSrcElement.cpp \
    1931         WebCore/svg/SVGDefsElement.cpp \
    1932         WebCore/svg/SVGDescElement.cpp \
    1933         WebCore/svg/SVGDocument.cpp \
     2911        WebCore/svg/SVGDocumentExtensions.h \
    19342912        WebCore/svg/SVGElement.cpp \
     2913        WebCore/svg/SVGElement.h \
    19352914        WebCore/svg/SVGElementInstance.cpp \
     2915        WebCore/svg/SVGElementInstance.h \
    19362916        WebCore/svg/SVGElementInstanceList.cpp \
     2917        WebCore/svg/SVGElementInstanceList.h \
    19372918        WebCore/svg/SVGEllipseElement.cpp \
     2919        WebCore/svg/SVGEllipseElement.h \
     2920        WebCore/svg/SVGException.h \
    19382921        WebCore/svg/SVGExternalResourcesRequired.cpp \
     2922        WebCore/svg/SVGExternalResourcesRequired.h \
    19392923        WebCore/svg/SVGFEBlendElement.cpp \
     2924        WebCore/svg/SVGFEBlendElement.h \
    19402925        WebCore/svg/SVGFEColorMatrixElement.cpp \
     2926        WebCore/svg/SVGFEColorMatrixElement.h \
    19412927        WebCore/svg/SVGFEComponentTransferElement.cpp \
     2928        WebCore/svg/SVGFEComponentTransferElement.h \
    19422929        WebCore/svg/SVGFECompositeElement.cpp \
     2930        WebCore/svg/SVGFECompositeElement.h \
    19432931        WebCore/svg/SVGFEDiffuseLightingElement.cpp \
     2932        WebCore/svg/SVGFEDiffuseLightingElement.h \
    19442933        WebCore/svg/SVGFEDisplacementMapElement.cpp \
     2934        WebCore/svg/SVGFEDisplacementMapElement.h \
    19452935        WebCore/svg/SVGFEDistantLightElement.cpp \
     2936        WebCore/svg/SVGFEDistantLightElement.h \
    19462937        WebCore/svg/SVGFEFloodElement.cpp \
     2938        WebCore/svg/SVGFEFloodElement.h \
    19472939        WebCore/svg/SVGFEFuncAElement.cpp \
     2940        WebCore/svg/SVGFEFuncAElement.h \
    19482941        WebCore/svg/SVGFEFuncBElement.cpp \
     2942        WebCore/svg/SVGFEFuncBElement.h \
    19492943        WebCore/svg/SVGFEFuncGElement.cpp \
     2944        WebCore/svg/SVGFEFuncGElement.h \
    19502945        WebCore/svg/SVGFEFuncRElement.cpp \
     2946        WebCore/svg/SVGFEFuncRElement.h \
    19512947        WebCore/svg/SVGFEGaussianBlurElement.cpp \
     2948        WebCore/svg/SVGFEGaussianBlurElement.h \
    19522949        WebCore/svg/SVGFEImageElement.cpp \
     2950        WebCore/svg/SVGFEImageElement.h \
    19532951        WebCore/svg/SVGFELightElement.cpp \
     2952        WebCore/svg/SVGFELightElement.h \
    19542953        WebCore/svg/SVGFEMergeElement.cpp \
     2954        WebCore/svg/SVGFEMergeElement.h \
    19552955        WebCore/svg/SVGFEMergeNodeElement.cpp \
     2956        WebCore/svg/SVGFEMergeNodeElement.h \
    19562957        WebCore/svg/SVGFEOffsetElement.cpp \
     2958        WebCore/svg/SVGFEOffsetElement.h \
    19572959        WebCore/svg/SVGFEPointLightElement.cpp \
     2960        WebCore/svg/SVGFEPointLightElement.h \
    19582961        WebCore/svg/SVGFESpecularLightingElement.cpp \
     2962        WebCore/svg/SVGFESpecularLightingElement.h \
    19592963        WebCore/svg/SVGFESpotLightElement.cpp \
     2964        WebCore/svg/SVGFESpotLightElement.h \
    19602965        WebCore/svg/SVGFETileElement.cpp \
     2966        WebCore/svg/SVGFETileElement.h \
    19612967        WebCore/svg/SVGFETurbulenceElement.cpp \
     2968        WebCore/svg/SVGFETurbulenceElement.h \
    19622969        WebCore/svg/SVGFilterElement.cpp \
     2970        WebCore/svg/SVGFilterElement.h \
    19632971        WebCore/svg/SVGFilterPrimitiveStandardAttributes.cpp \
     2972        WebCore/svg/SVGFilterPrimitiveStandardAttributes.h \
    19642973        WebCore/svg/SVGFitToViewBox.cpp \
     2974        WebCore/svg/SVGFitToViewBox.h \
    19652975        WebCore/svg/SVGFont.cpp \
    19662976        WebCore/svg/SVGFontData.cpp \
     2977        WebCore/svg/SVGFontData.h \
    19672978        WebCore/svg/SVGFontElement.cpp \
     2979        WebCore/svg/SVGFontElement.h \
    19682980        WebCore/svg/SVGFontFaceElement.cpp \
     2981        WebCore/svg/SVGFontFaceElement.h \
    19692982        WebCore/svg/SVGFontFaceFormatElement.cpp \
     2983        WebCore/svg/SVGFontFaceFormatElement.h \
    19702984        WebCore/svg/SVGFontFaceNameElement.cpp \
     2985        WebCore/svg/SVGFontFaceNameElement.h \
    19712986        WebCore/svg/SVGFontFaceSrcElement.cpp \
     2987        WebCore/svg/SVGFontFaceSrcElement.h \
    19722988        WebCore/svg/SVGFontFaceUriElement.cpp \
     2989        WebCore/svg/SVGFontFaceUriElement.h \
    19732990        WebCore/svg/SVGForeignObjectElement.cpp \
     2991        WebCore/svg/SVGForeignObjectElement.h \
    19742992        WebCore/svg/SVGGElement.cpp \
     2993        WebCore/svg/SVGGElement.h \
    19752994        WebCore/svg/SVGGlyphElement.cpp \
     2995        WebCore/svg/SVGGlyphElement.h \
     2996        WebCore/svg/SVGGlyphMap.h \
    19762997        WebCore/svg/SVGGradientElement.cpp \
     2998        WebCore/svg/SVGGradientElement.h \
    19772999        WebCore/svg/SVGHKernElement.cpp \
     3000        WebCore/svg/SVGHKernElement.h \
    19783001        WebCore/svg/SVGImageElement.cpp \
     3002        WebCore/svg/SVGImageElement.h \
     3003        WebCore/svg/SVGImageLoader.cpp \
     3004        WebCore/svg/SVGImageLoader.h \
    19793005        WebCore/svg/SVGLangSpace.cpp \
     3006        WebCore/svg/SVGLangSpace.h \
    19803007        WebCore/svg/SVGLength.cpp \
     3008        WebCore/svg/SVGLength.h \
    19813009        WebCore/svg/SVGLengthList.cpp \
     3010        WebCore/svg/SVGLengthList.h \
     3011        WebCore/svg/SVGLineElement.cpp \
     3012        WebCore/svg/SVGLineElement.h \
    19823013        WebCore/svg/SVGLinearGradientElement.cpp \
    1983         WebCore/svg/SVGLineElement.cpp \
     3014        WebCore/svg/SVGLinearGradientElement.h \
     3015        WebCore/svg/SVGList.h \
     3016        WebCore/svg/SVGListTraits.h \
    19843017        WebCore/svg/SVGLocatable.cpp \
     3018        WebCore/svg/SVGLocatable.h \
     3019        WebCore/svg/SVGMPathElement.cpp \
     3020        WebCore/svg/SVGMPathElement.h \
    19853021        WebCore/svg/SVGMarkerElement.cpp \
     3022        WebCore/svg/SVGMarkerElement.h \
    19863023        WebCore/svg/SVGMaskElement.cpp \
     3024        WebCore/svg/SVGMaskElement.h \
    19873025        WebCore/svg/SVGMetadataElement.cpp \
     3026        WebCore/svg/SVGMetadataElement.h \
    19883027        WebCore/svg/SVGMissingGlyphElement.cpp \
    1989         WebCore/svg/SVGMPathElement.cpp \
     3028        WebCore/svg/SVGMissingGlyphElement.h \
    19903029        WebCore/svg/SVGNumberList.cpp \
     3030        WebCore/svg/SVGNumberList.h \
    19913031        WebCore/svg/SVGPaint.cpp \
     3032        WebCore/svg/SVGPaint.h \
    19923033        WebCore/svg/SVGParserUtilities.cpp \
     3034        WebCore/svg/SVGParserUtilities.h \
    19933035        WebCore/svg/SVGPathElement.cpp \
     3036        WebCore/svg/SVGPathElement.h \
     3037        WebCore/svg/SVGPathSeg.h \
    19943038        WebCore/svg/SVGPathSegArc.cpp \
     3039        WebCore/svg/SVGPathSegArc.h \
    19953040        WebCore/svg/SVGPathSegClosePath.cpp \
     3041        WebCore/svg/SVGPathSegClosePath.h \
    19963042        WebCore/svg/SVGPathSegCurvetoCubic.cpp \
     3043        WebCore/svg/SVGPathSegCurvetoCubic.h \
    19973044        WebCore/svg/SVGPathSegCurvetoCubicSmooth.cpp \
     3045        WebCore/svg/SVGPathSegCurvetoCubicSmooth.h \
    19983046        WebCore/svg/SVGPathSegCurvetoQuadratic.cpp \
     3047        WebCore/svg/SVGPathSegCurvetoQuadratic.h \
    19993048        WebCore/svg/SVGPathSegCurvetoQuadraticSmooth.cpp \
     3049        WebCore/svg/SVGPathSegCurvetoQuadraticSmooth.h \
    20003050        WebCore/svg/SVGPathSegLineto.cpp \
     3051        WebCore/svg/SVGPathSegLineto.h \
    20013052        WebCore/svg/SVGPathSegLinetoHorizontal.cpp \
     3053        WebCore/svg/SVGPathSegLinetoHorizontal.h \
    20023054        WebCore/svg/SVGPathSegLinetoVertical.cpp \
     3055        WebCore/svg/SVGPathSegLinetoVertical.h \
    20033056        WebCore/svg/SVGPathSegList.cpp \
     3057        WebCore/svg/SVGPathSegList.h \
    20043058        WebCore/svg/SVGPathSegMoveto.cpp \
     3059        WebCore/svg/SVGPathSegMoveto.h \
    20053060        WebCore/svg/SVGPatternElement.cpp \
     3061        WebCore/svg/SVGPatternElement.h \
    20063062        WebCore/svg/SVGPointList.cpp \
     3063        WebCore/svg/SVGPointList.h \
    20073064        WebCore/svg/SVGPolyElement.cpp \
     3065        WebCore/svg/SVGPolyElement.h \
    20083066        WebCore/svg/SVGPolygonElement.cpp \
     3067        WebCore/svg/SVGPolygonElement.h \
    20093068        WebCore/svg/SVGPolylineElement.cpp \
     3069        WebCore/svg/SVGPolylineElement.h \
    20103070        WebCore/svg/SVGPreserveAspectRatio.cpp \
     3071        WebCore/svg/SVGPreserveAspectRatio.h \
    20113072        WebCore/svg/SVGRadialGradientElement.cpp \
     3073        WebCore/svg/SVGRadialGradientElement.h \
    20123074        WebCore/svg/SVGRectElement.cpp \
     3075        WebCore/svg/SVGRectElement.h \
     3076        WebCore/svg/SVGRenderingIntent.h \
     3077        WebCore/svg/SVGSVGElement.cpp \
     3078        WebCore/svg/SVGSVGElement.h \
    20133079        WebCore/svg/SVGScriptElement.cpp \
     3080        WebCore/svg/SVGScriptElement.h \
    20143081        WebCore/svg/SVGSetElement.cpp \
     3082        WebCore/svg/SVGSetElement.h \
    20153083        WebCore/svg/SVGStopElement.cpp \
     3084        WebCore/svg/SVGStopElement.h \
    20163085        WebCore/svg/SVGStringList.cpp \
     3086        WebCore/svg/SVGStringList.h \
    20173087        WebCore/svg/SVGStylable.cpp \
     3088        WebCore/svg/SVGStylable.h \
     3089        WebCore/svg/SVGStyleElement.cpp \
     3090        WebCore/svg/SVGStyleElement.h \
    20183091        WebCore/svg/SVGStyledElement.cpp \
     3092        WebCore/svg/SVGStyledElement.h \
    20193093        WebCore/svg/SVGStyledLocatableElement.cpp \
     3094        WebCore/svg/SVGStyledLocatableElement.h \
    20203095        WebCore/svg/SVGStyledTransformableElement.cpp \
    2021         WebCore/svg/SVGStyleElement.cpp \
    2022         WebCore/svg/SVGSVGElement.cpp \
     3096        WebCore/svg/SVGStyledTransformableElement.h \
    20233097        WebCore/svg/SVGSwitchElement.cpp \
     3098        WebCore/svg/SVGSwitchElement.h \
    20243099        WebCore/svg/SVGSymbolElement.cpp \
     3100        WebCore/svg/SVGSymbolElement.h \
     3101        WebCore/svg/SVGTRefElement.cpp \
     3102        WebCore/svg/SVGTRefElement.h \
     3103        WebCore/svg/SVGTSpanElement.cpp \
     3104        WebCore/svg/SVGTSpanElement.h \
    20253105        WebCore/svg/SVGTests.cpp \
     3106        WebCore/svg/SVGTests.h \
    20263107        WebCore/svg/SVGTextContentElement.cpp \
     3108        WebCore/svg/SVGTextContentElement.h \
    20273109        WebCore/svg/SVGTextElement.cpp \
     3110        WebCore/svg/SVGTextElement.h \
    20283111        WebCore/svg/SVGTextPathElement.cpp \
     3112        WebCore/svg/SVGTextPathElement.h \
    20293113        WebCore/svg/SVGTextPositioningElement.cpp \
     3114        WebCore/svg/SVGTextPositioningElement.h \
    20303115        WebCore/svg/SVGTitleElement.cpp \
     3116        WebCore/svg/SVGTitleElement.h \
     3117        WebCore/svg/SVGTransform.cpp \
     3118        WebCore/svg/SVGTransform.h \
     3119        WebCore/svg/SVGTransformDistance.cpp \
     3120        WebCore/svg/SVGTransformDistance.h \
     3121        WebCore/svg/SVGTransformList.cpp \
     3122        WebCore/svg/SVGTransformList.h \
    20313123        WebCore/svg/SVGTransformable.cpp \
    2032         WebCore/svg/SVGTransform.cpp \
    2033         WebCore/svg/SVGTransformDistance.cpp \
    2034         WebCore/svg/SVGTransformList.cpp \
    2035         WebCore/svg/SVGTRefElement.cpp \
    2036         WebCore/svg/SVGTSpanElement.cpp \
     3124        WebCore/svg/SVGTransformable.h \
    20373125        WebCore/svg/SVGURIReference.cpp \
     3126        WebCore/svg/SVGURIReference.h \
     3127        WebCore/svg/SVGUnitTypes.h \
    20383128        WebCore/svg/SVGUseElement.cpp \
     3129        WebCore/svg/SVGUseElement.h \
    20393130        WebCore/svg/SVGViewElement.cpp \
     3131        WebCore/svg/SVGViewElement.h \
    20403132        WebCore/svg/SVGViewSpec.cpp \
     3133        WebCore/svg/SVGViewSpec.h \
    20413134        WebCore/svg/SVGZoomAndPan.cpp \
     3135        WebCore/svg/SVGZoomAndPan.h \
     3136        WebCore/svg/SVGZoomEvent.cpp \
     3137        WebCore/svg/SVGZoomEvent.h \
     3138        WebCore/svg/SynchronizableTypeWrapper.h \
    20423139        WebCore/svg/animation/SMILTime.cpp \
     3140        WebCore/svg/animation/SMILTime.h \
    20433141        WebCore/svg/animation/SMILTimeContainer.cpp \
     3142        WebCore/svg/animation/SMILTimeContainer.h \
    20443143        WebCore/svg/animation/SVGSMILElement.cpp \
     3144        WebCore/svg/animation/SVGSMILElement.h \
     3145        WebCore/svg/graphics/SVGImage.cpp \
     3146        WebCore/svg/graphics/SVGImage.h \
     3147        WebCore/svg/graphics/SVGPaintServer.cpp \
     3148        WebCore/svg/graphics/SVGPaintServer.h \
     3149        WebCore/svg/graphics/SVGPaintServerGradient.cpp \
     3150        WebCore/svg/graphics/SVGPaintServerGradient.h \
     3151        WebCore/svg/graphics/SVGPaintServerLinearGradient.cpp \
     3152        WebCore/svg/graphics/SVGPaintServerLinearGradient.h \
     3153        WebCore/svg/graphics/SVGPaintServerPattern.cpp \
     3154        WebCore/svg/graphics/SVGPaintServerPattern.h \
     3155        WebCore/svg/graphics/SVGPaintServerRadialGradient.cpp \
     3156        WebCore/svg/graphics/SVGPaintServerRadialGradient.h \
     3157        WebCore/svg/graphics/SVGPaintServerSolid.cpp \
     3158        WebCore/svg/graphics/SVGPaintServerSolid.h \
     3159        WebCore/svg/graphics/SVGResource.cpp \
     3160        WebCore/svg/graphics/SVGResource.h \
     3161        WebCore/svg/graphics/SVGResourceClipper.cpp \
     3162        WebCore/svg/graphics/SVGResourceClipper.h \
     3163        WebCore/svg/graphics/SVGResourceFilter.cpp \
     3164        WebCore/svg/graphics/SVGResourceFilter.h \
     3165        WebCore/svg/graphics/SVGResourceListener.h \
     3166        WebCore/svg/graphics/SVGResourceMarker.cpp \
     3167        WebCore/svg/graphics/SVGResourceMarker.h \
     3168        WebCore/svg/graphics/SVGResourceMasker.cpp \
     3169        WebCore/svg/graphics/SVGResourceMasker.h \
     3170        WebCore/svg/graphics/filters/SVGDistantLightSource.h \
    20453171        WebCore/svg/graphics/filters/SVGFEConvolveMatrix.cpp \
     3172        WebCore/svg/graphics/filters/SVGFEConvolveMatrix.h \
    20463173        WebCore/svg/graphics/filters/SVGFEDiffuseLighting.cpp \
     3174        WebCore/svg/graphics/filters/SVGFEDiffuseLighting.h \
    20473175        WebCore/svg/graphics/filters/SVGFEDisplacementMap.cpp \
     3176        WebCore/svg/graphics/filters/SVGFEDisplacementMap.h \
    20483177        WebCore/svg/graphics/filters/SVGFEFlood.cpp \
     3178        WebCore/svg/graphics/filters/SVGFEFlood.h \
    20493179        WebCore/svg/graphics/filters/SVGFEGaussianBlur.cpp \
     3180        WebCore/svg/graphics/filters/SVGFEGaussianBlur.h \
    20503181        WebCore/svg/graphics/filters/SVGFEImage.cpp \
     3182        WebCore/svg/graphics/filters/SVGFEImage.h \
    20513183        WebCore/svg/graphics/filters/SVGFEMerge.cpp \
     3184        WebCore/svg/graphics/filters/SVGFEMerge.h \
    20523185        WebCore/svg/graphics/filters/SVGFEMorphology.cpp \
     3186        WebCore/svg/graphics/filters/SVGFEMorphology.h \
    20533187        WebCore/svg/graphics/filters/SVGFEOffset.cpp \
     3188        WebCore/svg/graphics/filters/SVGFEOffset.h \
    20543189        WebCore/svg/graphics/filters/SVGFESpecularLighting.cpp \
     3190        WebCore/svg/graphics/filters/SVGFESpecularLighting.h \
    20553191        WebCore/svg/graphics/filters/SVGFETile.cpp \
     3192        WebCore/svg/graphics/filters/SVGFETile.h \
    20563193        WebCore/svg/graphics/filters/SVGFETurbulence.cpp \
     3194        WebCore/svg/graphics/filters/SVGFETurbulence.h \
    20573195        WebCore/svg/graphics/filters/SVGFilterEffect.cpp \
     3196        WebCore/svg/graphics/filters/SVGFilterEffect.h \
    20583197        WebCore/svg/graphics/filters/SVGLightSource.cpp \
    2059         WebCore/svg/graphics/SVGImage.cpp \
    2060         WebCore/svg/graphics/SVGPaintServer.cpp \
    2061         WebCore/svg/graphics/SVGPaintServerGradient.cpp \
    2062         WebCore/svg/graphics/SVGPaintServerLinearGradient.cpp \
    2063         WebCore/svg/graphics/SVGPaintServerPattern.cpp \
    2064         WebCore/svg/graphics/SVGPaintServerRadialGradient.cpp \
    2065         WebCore/svg/graphics/SVGPaintServerSolid.cpp \
    2066         WebCore/svg/graphics/SVGResourceClipper.cpp \
    2067         WebCore/svg/graphics/SVGResource.cpp \
    2068         WebCore/svg/graphics/SVGResourceFilter.cpp \
    2069         WebCore/svg/graphics/SVGResourceMarker.cpp \
    2070         WebCore/svg/graphics/SVGResourceMasker.cpp \
    2071         WebCore/rendering/RenderForeignObject.cpp \
    2072         WebCore/rendering/RenderPath.cpp \
    2073         WebCore/rendering/RenderSVGBlock.cpp \
    2074         WebCore/rendering/RenderSVGContainer.cpp \
    2075         WebCore/rendering/RenderSVGGradientStop.cpp \
    2076         WebCore/rendering/RenderSVGHiddenContainer.cpp \
    2077         WebCore/rendering/RenderSVGImage.cpp \
    2078         WebCore/rendering/RenderSVGInline.cpp \
    2079         WebCore/rendering/RenderSVGInlineText.cpp \
    2080         WebCore/rendering/RenderSVGRoot.cpp \
    2081         WebCore/rendering/RenderSVGText.cpp \
    2082         WebCore/rendering/RenderSVGTextPath.cpp \
    2083         WebCore/rendering/RenderSVGTransformableContainer.cpp \
    2084         WebCore/rendering/RenderSVGTSpan.cpp \
    2085         WebCore/rendering/RenderSVGViewportContainer.cpp \
    2086         WebCore/rendering/SVGCharacterLayoutInfo.cpp \
    2087         WebCore/rendering/SVGInlineFlowBox.cpp \
    2088         WebCore/rendering/SVGInlineTextBox.cpp \
    2089         WebCore/rendering/SVGRenderSupport.cpp \
    2090         WebCore/rendering/SVGRootInlineBox.cpp
     3198        WebCore/svg/graphics/filters/SVGLightSource.h \
     3199        WebCore/svg/graphics/filters/SVGPointLightSource.h \
     3200        WebCore/svg/graphics/filters/SVGSpotLightSource.h
    20913201
    20923202webcoregtk_sources += \
     
    22163326        $(WebCore)/bindings/scripts/IDLParser.pm \
    22173327        $(WebCore)/bindings/scripts/IDLStructure.pm \
     3328        $(WebCore)/bindings/scripts/InFilesParser.pm \
    22183329        $(WebCore)/bindings/scripts/generate-bindings.pl
    22193330
     
    22653376        $(PERL) -I$(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/generate-bindings.pl --include $(WebCore)/dom --include $(WebCore)/html --include $(WebCore)/css --include $(WebCore)/page --include $(WebCore)/xml --include $(WebCore)/svg --outputDir "$(GENSOURCES)" --defines "$(FEATURE_DEFINES_JAVASCRIPT)" --generator JS $<
    22663377
     3378noinst_HEADERS += \
     3379        $(IDL_BINDINGS)
     3380
     3381webcore_dist += \
     3382        WebCore/bindings/scripts/CodeGenerator.pm \
     3383        WebCore/bindings/scripts/IDLParser.pm \
     3384        WebCore/bindings/scripts/IDLStructure.pm \
     3385        WebCore/bindings/scripts/InFilesParser.pm \
     3386        WebCore/bindings/scripts/generate-bindings.pl \
     3387        WebCore/bindings/scripts/CodeGeneratorJS.pm \
     3388        WebCore/css/html4.css \
     3389        WebCore/css/quirks.css \
     3390        WebCore/css/view-source.css \
     3391        WebCore/css/svg.css \
     3392        WebCore/css/CSSGrammar.y \
     3393        WebCore/css/CSSValueKeywords.in \
     3394        WebCore/css/SVGCSSPropertyNames.in \
     3395        WebCore/css/maketokenizer \
     3396        WebCore/css/makeprop.pl \
     3397        WebCore/css/makevalues.pl \
     3398        WebCore/css/tokenizer.flex \
     3399        WebCore/css/CSSPropertyNames.in \
     3400        WebCore/css/DashboardSupportCSSPropertyNames.in \
     3401        WebCore/css/make-css-file-arrays.pl \
     3402        WebCore/css/SVGCSSValueKeywords.in \
     3403        WebCore/css/makegrammar.pl \
     3404        WebCore/dom/make_names.pl \
     3405        WebCore/platform/text/mac/make-charset-table.pl \
     3406        WebCore/platform/ColorData.gperf \
     3407        WebCore/svg/xlinkattrs.in \
     3408        WebCore/svg/svgattrs.in \
     3409        WebCore/svg/svgtags.in \
     3410        WebCore/html/DocTypeStrings.gperf \
     3411        WebCore/html/HTMLTagNames.in \
     3412        WebCore/html/HTMLEntityNames.gperf \
     3413        WebCore/html/HTMLAttributeNames.in \
     3414        WebCore/xml/xmlattrs.in \
     3415        WebCore/xml/XPathGrammar.y
     3416
    22673417# Clean rules for WebCore
    22683418
  • trunk/WebKit/gtk/ChangeLog

    r35525 r35658  
     12008-08-10  Alp Toker  <alp@nuanti.com>
     2
     3        Remove leftover qmake/GTK+ build files.
     4
     5        * webkit/headers.pri: Removed.
     6
    172008-08-02  Christian Dywan  <christian@twotoasts.de>
    28
  • trunk/WebKitTools/ChangeLog

    r35612 r35658  
     12008-08-10  Jan Michael Alonzo  <jmalonzo@webkit.org>
     2
     3        Reviewed (and updated) by Alp Toker.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=16620
     6        [GTK] Autotools make dist and make check support
     7
     8        Get make dist working.
     9
     10        Note that not all possible configurations have been tested yet.
     11
     12        * GNUmakefile.am:
     13
     142008-08-10  Alp Toker  <alp@nuanti.com>
     15
     16        Remove leftover qmake/GTK+ build files.
     17
     18        * DumpRenderTree/gtk/DumpRenderTree.pro: Removed.
     19        * GtkLauncher/GtkLauncher.pro: Removed.
     20
    1212008-08-06  chris fleizach  <cfleizach@apple.com>
    222
  • trunk/WebKitTools/GNUmakefile.am

    r34476 r35658  
    3333
    3434Programs_DumpRenderTree_SOURCES = \
     35        WebKitTools/DumpRenderTree/AccessibilityController.h \
     36        WebKitTools/DumpRenderTree/AccessibilityUIElement.h \
     37        WebKitTools/DumpRenderTree/DumpRenderTree.h \
     38        WebKitTools/DumpRenderTree/DumpRenderTreePrefix.h \
     39        WebKitTools/DumpRenderTree/GCController.cpp \
     40        WebKitTools/DumpRenderTree/GCController.h \
     41        WebKitTools/DumpRenderTree/JavaScriptThreading.h \
     42        WebKitTools/DumpRenderTree/LayoutTestController.cpp \
     43        WebKitTools/DumpRenderTree/LayoutTestController.h \
     44        WebKitTools/DumpRenderTree/PixelDumpSupport.h \
     45        WebKitTools/DumpRenderTree/WorkQueue.cpp \
     46        WebKitTools/DumpRenderTree/WorkQueue.h \
     47        WebKitTools/DumpRenderTree/WorkQueueItem.h \
    3548        WebKitTools/DumpRenderTree/gtk/DumpRenderTree.cpp \
    36         WebKitTools/DumpRenderTree/LayoutTestController.cpp \
    37         WebKitTools/DumpRenderTree/GCController.cpp \
    38         WebKitTools/DumpRenderTree/WorkQueue.cpp \
     49        WebKitTools/DumpRenderTree/gtk/DumpRenderTreeGtk.h \
    3950        WebKitTools/DumpRenderTree/gtk/GCControllerGtk.cpp \
    4051        WebKitTools/DumpRenderTree/gtk/LayoutTestControllerGtk.cpp \
Note: See TracChangeset for help on using the changeset viewer.