OSDN Git Service

3d0626abe39cb01f723a7d70502f47e8422e8127
[android-x86/external-webkit.git] / WebCore / WebCore.pro
1 # WebCore - qmake build info
2 CONFIG += building-libs
3 CONFIG += depend_includepath
4
5 v8:exists($$[QT_INSTALL_PREFIX]/src/3rdparty/v8/include/v8.h) {
6     message(Using V8 with QtScript)
7     QT += script
8     INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/v8/include
9
10     DEFINES *= V8_BINDING=1
11     DEFINES += WTF_CHANGES=1
12     DEFINES *= WTF_USE_V8=1
13     DEFINES += USING_V8_SHARED
14 }
15
16 symbian: {
17     TARGET.EPOCALLOWDLLDATA=1
18     # DRM and Allfiles capabilites need to be audited to be signed on Symbian
19     # For regular users that is not possible, so use the CONFIG(production) flag is added
20     # To use all capabilies add CONFIG+=production
21     # If building from QT source tree, also add CONFIG-=QTDIR_build as qbase.pri defaults capabilities to All -Tcb.    
22     CONFIG(production) {
23         TARGET.CAPABILITY = All -Tcb
24     } else {
25         TARGET.CAPABILITY = All -Tcb -DRM -AllFiles
26     }
27     isEmpty(QT_LIBINFIX) {
28         TARGET.UID3 = 0x200267C2
29     } else {
30         TARGET.UID3 = 0xE00267C2
31     }
32     webkitlibs.sources = QtWebKit$${QT_LIBINFIX}.dll
33     v8 {
34         webkitlibs.sources += v8.dll
35         QMAKE_CXXFLAGS.ARMCC += -OTime -O3
36         QMAKE_CXXFLAGS.ARMCC += --fpu softvfp+vfpv2 --fpmode fast
37         LIBS += -llibpthread
38     }
39
40     CONFIG(QTDIR_build): webkitlibs.sources = $$QMAKE_LIBDIR_QT/$$webkitlibs.sources
41     webkitlibs.path = /sys/bin
42     vendorinfo = \
43         "; Localised Vendor name" \
44         "%{\"Nokia, Qt\"}" \
45         " " \
46         "; Unique Vendor name" \
47         ":\"Nokia, Qt\"" \
48         " "
49     webkitlibs.pkg_prerules = vendorinfo
50
51     webkitbackup.sources = ../WebKit/qt/symbian/backup_registration.xml
52     webkitbackup.path = /private/10202D56/import/packages/$$replace(TARGET.UID3, 0x,)
53
54     contains(QT_CONFIG, declarative) {
55          declarativeImport.sources = $$QT_BUILD_TREE/imports/QtWebKit/qmlwebkitplugin$${QT_LIBINFIX}.dll
56          declarativeImport.sources += ../WebKit/qt/declarative/qmldir
57          declarativeImport.path = c:$$QT_IMPORTS_BASE_DIR/QtWebKit
58          DEPLOYMENT += declarativeImport
59     }
60
61     DEPLOYMENT += webkitlibs webkitbackup
62
63     symbian-abld|symbian-sbsv2 {
64         # RO text (code) section in qtwebkit.dll exceeds allocated space for gcce udeb target.
65         # Move RW-section base address to start from 0xE00000 instead of the toolchain default 0x400000.
66         QMAKE_LFLAGS.ARMCC += --rw-base 0xE00000
67         MMP_RULES += ALWAYS_BUILD_AS_ARM
68     }  else {
69         QMAKE_CFLAGS -= --thumb
70         QMAKE_CXXFLAGS -= --thumb
71     }
72     CONFIG(release, debug|release): QMAKE_CXXFLAGS.ARMCC += -OTime -O3
73 }
74
75 isEmpty(OUTPUT_DIR): OUTPUT_DIR = ..
76 include($$PWD/../WebKit.pri)
77
78 TEMPLATE = lib
79 TARGET = QtWebKit
80
81 contains(QT_CONFIG, embedded):CONFIG += embedded
82
83 CONFIG(standalone_package) {
84     isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = $$PWD/generated
85     isEmpty(JSC_GENERATED_SOURCES_DIR):JSC_GENERATED_SOURCES_DIR = $$PWD/../JavaScriptCore/generated
86
87     PRECOMPILED_HEADER = $$PWD/../WebKit/qt/WebKit_pch.h
88 } else {
89     isEmpty(WC_GENERATED_SOURCES_DIR):WC_GENERATED_SOURCES_DIR = generated
90     isEmpty(JSC_GENERATED_SOURCES_DIR):JSC_GENERATED_SOURCES_DIR = ../JavaScriptCore/generated
91
92     !CONFIG(release, debug|release) {
93         OBJECTS_DIR = obj/debug
94     } else { # Release
95         OBJECTS_DIR = obj/release
96     }
97
98 }
99
100 CONFIG(QTDIR_build) {
101     include($$QT_SOURCE_TREE/src/qbase.pri)
102 } else {
103     DESTDIR = $$OUTPUT_DIR/lib
104     !static: DEFINES += QT_MAKEDLL
105     symbian: TARGET =$$TARGET$${QT_LIBINFIX}
106 }
107 moduleFile=$$PWD/../WebKit/qt/qt_webkit_version.pri
108 isEmpty(QT_BUILD_TREE):include($$moduleFile)
109 VERSION = $${QT_WEBKIT_MAJOR_VERSION}.$${QT_WEBKIT_MINOR_VERSION}.$${QT_WEBKIT_PATCH_VERSION}
110
111 unix {
112     QMAKE_PKGCONFIG_REQUIRES = QtCore QtGui QtNetwork
113 }
114
115 unix:!mac:*-g++*:QMAKE_CXXFLAGS += -ffunction-sections -fdata-sections 
116 unix:!mac:*-g++*:QMAKE_LFLAGS += -Wl,--gc-sections
117 linux*-g++*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF
118
119 CONFIG(release):!CONFIG(standalone_package) {
120     contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
121     unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
122 }
123
124 DEFINES += BUILD_WEBKIT
125
126 # Remove whole program optimizations due to miscompilations
127 win32-msvc2005|win32-msvc2008|wince*:{
128     QMAKE_CFLAGS_RELEASE -= -GL
129     QMAKE_CXXFLAGS_RELEASE -= -GL
130 }
131
132 # Pick up 3rdparty libraries from INCLUDE/LIB just like with MSVC
133 win32-g++* {
134     TMPPATH            = $$quote($$(INCLUDE))
135     QMAKE_INCDIR_POST += $$split(TMPPATH,";")
136     TMPPATH            = $$quote($$(LIB))
137     QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
138 }
139
140 symbian {
141     !CONFIG(QTDIR_build) {
142         # Test if symbian OS comes with sqlite
143         exists($${EPOCROOT}epoc32/release/armv5/lib/sqlite3.dso):CONFIG *= system-sqlite
144     } else:!symbian-abld:!symbian-sbsv2 {
145         # When bundled with Qt, all Symbian build systems extract their own sqlite files if
146         # necessary, but on non-mmp based ones we need to specify this ourselves.
147         include($$QT_SOURCE_TREE/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri)
148     }
149 }
150
151
152
153 RESOURCES += \
154     $$PWD/../WebCore/WebCore.qrc
155
156 include_webinspector: RESOURCES += $$PWD/../WebCore/inspector/front-end/WebKit.qrc $$WC_GENERATED_SOURCES_DIR/InspectorBackendStub.qrc
157
158 enable_fast_mobile_scrolling: DEFINES += ENABLE_FAST_MOBILE_SCROLLING=1
159
160 use_qt_mobile_theme: DEFINES += WTF_USE_QT_MOBILE_THEME=1
161
162 contains(DEFINES, WTF_USE_QT_MOBILE_THEME=1) {
163     DEFINES += ENABLE_NO_LISTBOX_RENDERING=1
164 }
165
166 include($$PWD/../JavaScriptCore/JavaScriptCore.pri)
167 !v8: addJavaScriptCoreLib(../JavaScriptCore)
168
169 webkit2 {
170     include($$PWD/../WebKit2/WebKit2.pri)
171     addWebKit2LibWholeArchive(../WebKit2)
172 }
173
174 # Extract sources to build from the generator definitions
175 defineTest(addExtraCompiler) {
176     isEqual($${1}.wkAddOutputToSources, false): return(true)
177
178     outputRule = $$eval($${1}.output)
179     input = $$eval($${1}.input)
180     input = $$eval($$input)
181
182     for(file,input) {
183         base = $$basename(file)
184         base ~= s/\\..+//
185         newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base)
186         SOURCES += $$newfile
187     }
188     SOURCES += $$eval($${1}.wkExtraSources)
189     export(SOURCES)
190
191     return(true)
192 }
193 include(WebCore.pri)
194
195 v8 {
196     WEBCORE_INCLUDEPATH = \
197         $$PWD/bindings/v8 \
198         $$PWD/bindings/v8/custom \
199         $$PWD/bindings/v8/specialization \
200         $$PWD/bridge/qt/v8
201
202 } else {
203     WEBCORE_INCLUDEPATH = \
204         $$PWD/bridge/jsc \
205         $$PWD/bindings/js \
206         $$PWD/bindings/js/specialization \
207         $$PWD/bridge/c
208 }
209
210
211 WEBCORE_INCLUDEPATH = \
212     $$PWD \
213     $$PWD/accessibility \
214     $$PWD/bindings \
215     $$PWD/bindings/generic \
216     $$PWD/bridge \
217     $$PWD/css \
218     $$PWD/dom \
219     $$PWD/dom/default \
220     $$PWD/editing \
221     $$PWD/fileapi \
222     $$PWD/history \
223     $$PWD/html \
224     $$PWD/html/canvas \
225     $$PWD/html/parser \
226     $$PWD/inspector \
227     $$PWD/loader \
228     $$PWD/loader/appcache \
229     $$PWD/loader/archive \
230     $$PWD/loader/cache \
231     $$PWD/loader/icon \
232     $$PWD/mathml \
233     $$PWD/notifications \
234     $$PWD/page \
235     $$PWD/page/animation \
236     $$PWD/platform \
237     $$PWD/platform/animation \
238     $$PWD/platform/graphics \
239     $$PWD/platform/graphics/filters \
240     $$PWD/platform/graphics/transforms \
241     $$PWD/platform/image-decoders \
242     $$PWD/platform/mock \
243     $$PWD/platform/network \
244     $$PWD/platform/sql \
245     $$PWD/platform/text \
246     $$PWD/platform/text/transcoder \
247     $$PWD/plugins \
248     $$PWD/rendering \
249     $$PWD/rendering/style \
250     $$PWD/rendering/svg \
251     $$PWD/storage \
252     $$PWD/svg \
253     $$PWD/svg/animation \
254     $$PWD/svg/graphics \
255     $$PWD/svg/graphics/filters \
256     $$PWD/svg/properties \
257     $$PWD/websockets \
258     $$PWD/wml \
259     $$PWD/workers \
260     $$PWD/xml \
261     $$WC_GENERATED_SOURCES_DIR \
262     $$WEBCORE_INCLUDEPATH
263
264 WEBCORE_INCLUDEPATH = \
265     $$PWD/bridge/qt \
266     $$PWD/page/qt \
267     $$PWD/platform/graphics/qt \
268     $$PWD/platform/network/qt \
269     $$PWD/platform/qt \
270     $$PWD/../WebKit/qt/Api \
271     $$PWD/../WebKit/qt/WebCoreSupport \
272     $$WEBCORE_INCLUDEPATH
273
274 symbian {
275     PREPEND_INCLUDEPATH = $$WEBCORE_INCLUDEPATH $$PREPEND_INCLUDEPATH
276 } else {
277     INCLUDEPATH = $$WEBCORE_INCLUDEPATH $$INCLUDEPATH
278 }
279
280 QT += network
281
282
283 DASHBOARDSUPPORTCSSPROPERTIES = $$PWD/css/DashboardSupportCSSPropertyNames.in
284
285
286 contains(DEFINES, ENABLE_SVG=1) {
287     EXTRACSSPROPERTIES += $$PWD/css/SVGCSSPropertyNames.in
288     EXTRACSSVALUES += $$PWD/css/SVGCSSValueKeywords.in
289 }
290
291 contains(DEFINES, ENABLE_WCSS=1) {
292     EXTRACSSPROPERTIES += $$PWD/css/WCSSPropertyNames.in
293     EXTRACSSVALUES += $$PWD/css/WCSSValueKeywords.in
294 }
295
296 SOURCES += \
297     accessibility/AccessibilityImageMapLink.cpp \
298     accessibility/AccessibilityMediaControls.cpp \    
299     accessibility/AccessibilityMenuList.cpp \
300     accessibility/AccessibilityMenuListOption.cpp \
301     accessibility/AccessibilityMenuListPopup.cpp \
302     accessibility/AccessibilityObject.cpp \    
303     accessibility/AccessibilityList.cpp \    
304     accessibility/AccessibilityListBox.cpp \    
305     accessibility/AccessibilityListBoxOption.cpp \    
306     accessibility/AccessibilityProgressIndicator.cpp \    
307     accessibility/AccessibilityRenderObject.cpp \    
308     accessibility/AccessibilityScrollbar.cpp \
309     accessibility/AccessibilitySlider.cpp \    
310     accessibility/AccessibilityARIAGrid.cpp \    
311     accessibility/AccessibilityARIAGridCell.cpp \    
312     accessibility/AccessibilityARIAGridRow.cpp \    
313     accessibility/AccessibilityTable.cpp \    
314     accessibility/AccessibilityTableCell.cpp \    
315     accessibility/AccessibilityTableColumn.cpp \    
316     accessibility/AccessibilityTableHeaderContainer.cpp \    
317     accessibility/AccessibilityTableRow.cpp \    
318     accessibility/AXObjectCache.cpp \
319     bindings/generic/ActiveDOMCallback.cpp
320
321 v8 {
322     SOURCES += \
323         bindings/generic/RuntimeEnabledFeatures.cpp
324
325     include($$PWD/../JavaScriptCore/pcre/pcre.pri)
326     include($$PWD/../JavaScriptCore/wtf/wtf.pri)
327
328     SOURCES += \
329         bindings/generic/BindingSecurityBase.cpp \
330         \
331         bindings/v8/WorldContextHandle.cpp \
332         bindings/v8/V8IsolatedContext.cpp \
333         bindings/v8/custom/V8HistoryCustom.cpp \
334         bindings/v8/custom/V8PopStateEventCustom.cpp \
335         bindings/v8/ScriptGCEvent.cpp
336
337
338     SOURCES += \
339         bindings/v8/custom/V8CustomXPathNSResolver.cpp \
340         \
341         bindings/v8/ChildThreadDOMData.cpp \
342         bindings/v8/DateExtension.cpp \
343         bindings/v8/DOMData.cpp \
344         bindings/v8/DOMDataStore.cpp \
345         bindings/v8/MainThreadDOMData.cpp \
346         bindings/v8/NPV8Object.cpp \
347         bindings/v8/ScheduledAction.cpp \
348         bindings/v8/ScopedDOMDataStore.cpp \
349 #        bindings/v8/ScriptArray.cpp \
350         bindings/v8/ScriptCachedFrameData.cpp \
351         bindings/v8/ScriptCallStackFactory.cpp \
352         bindings/ScriptControllerBase.cpp \
353         bindings/v8/ScriptController.cpp \
354         bindings/v8/ScriptEventListener.cpp \
355         bindings/v8/ScriptFunctionCall.cpp \
356         bindings/v8/ScriptInstance.cpp \
357         bindings/v8/ScriptObject.cpp \
358         bindings/v8/ScriptScope.cpp \
359         bindings/v8/ScriptState.cpp \
360         bindings/v8/ScriptValue.cpp \
361         bindings/v8/StaticDOMDataStore.cpp \
362         bindings/v8/SerializedScriptValue.cpp \
363         bindings/v8/V8AbstractEventListener.cpp \
364         bindings/v8/V8Binding.cpp \
365         bindings/v8/V8Collection.cpp \
366         bindings/v8/V8ConsoleMessage.cpp \
367         bindings/v8/V8DOMMap.cpp \
368         bindings/v8/V8DOMWrapper.cpp \
369         bindings/v8/V8DataGridDataSource.cpp \
370         bindings/v8/V8EventListenerList.cpp \
371         bindings/v8/V8GCController.cpp \
372         bindings/v8/V8GCForContextDispose.cpp \
373         bindings/v8/V8Helpers.cpp \
374         bindings/v8/V8HiddenPropertyName.cpp \
375         bindings/v8/IsolatedWorld.cpp \
376         bindings/v8/V8LazyEventListener.cpp \
377         bindings/v8/V8NPObject.cpp \
378         bindings/v8/V8NPUtils.cpp \
379         bindings/v8/V8NodeFilterCondition.cpp \
380         bindings/v8/V8Proxy.cpp \
381         bindings/v8/V8Utilities.cpp \
382         bindings/v8/V8WorkerContextEventListener.cpp \
383         bindings/v8/WorkerContextExecutionProxy.cpp \
384         bindings/v8/WorkerScriptController.cpp \
385         \
386         bindings/v8/V8DOMWindowShell.cpp \
387         bindings/v8/DOMWrapperWorld.cpp \
388         \
389         bindings/v8/npruntime.cpp \
390         \
391         bindings/v8/custom/V8CSSRuleCustom.cpp \
392         bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp \
393         bindings/v8/custom/V8CSSStyleSheetCustom.cpp \
394         bindings/v8/custom/V8CSSValueCustom.cpp \
395         bindings/v8/custom/V8CanvasRenderingContext2DCustom.cpp \
396         bindings/v8/custom/V8CanvasPixelArrayCustom.cpp \
397         bindings/v8/custom/V8ClipboardCustom.cpp \
398         bindings/v8/custom/V8CoordinatesCustom.cpp \
399         bindings/v8/custom/V8InjectedScriptHostCustom.cpp \
400         bindings/v8/custom/V8InspectorFrontendHostCustom.cpp \
401         bindings/v8/custom/V8CustomEventListener.cpp \
402         bindings/v8/custom/V8DOMSettableTokenListCustom.cpp \
403         bindings/v8/custom/V8DOMStringMapCustom.cpp \
404         bindings/v8/custom/V8DOMTokenListCustom.cpp
405
406     SOURCES += \
407         bindings/v8/custom/V8CustomSQLStatementErrorCallback.cpp \
408         bindings/v8/custom/V8CustomVoidCallback.cpp \
409         bindings/v8/custom/V8DOMFormDataCustom.cpp \
410         bindings/v8/custom/V8DOMWindowCustom.cpp \
411         bindings/v8/custom/V8DataGridColumnListCustom.cpp \
412 #        bindings/v8/custom/V8DatabaseCustom.cpp \
413         bindings/v8/custom/V8DedicatedWorkerContextCustom.cpp \
414         bindings/v8/custom/V8DocumentCustom.cpp \
415         bindings/v8/custom/V8DocumentLocationCustom.cpp \
416         bindings/v8/custom/V8ElementCustom.cpp \
417         bindings/v8/custom/V8EventCustom.cpp \
418         bindings/v8/custom/V8EventSourceConstructor.cpp \
419         bindings/v8/custom/V8FileReaderCustom.cpp \
420         bindings/v8/custom/V8HTMLAllCollectionCustom.cpp
421
422     contains(DEFINES, ENABLE_VIDEO=1) {
423         SOURCES += \
424             bindings/v8/custom/V8HTMLAudioElementConstructor.cpp
425     }
426
427     SOURCES += \
428         bindings/v8/custom/V8HTMLCanvasElementCustom.cpp \
429         bindings/v8/custom/V8HTMLCollectionCustom.cpp \
430         bindings/v8/custom/V8HTMLDataGridElementCustom.cpp \
431         bindings/v8/custom/V8HTMLDocumentCustom.cpp \
432         bindings/v8/custom/V8HTMLElementCustom.cpp \
433         bindings/v8/custom/V8HTMLFormElementCustom.cpp \
434         bindings/v8/custom/V8HTMLFrameElementCustom.cpp \
435         bindings/v8/custom/V8HTMLFrameSetElementCustom.cpp \
436 #        bindings/v8/custom/V8HTMLIFrameElementCustom.cpp \
437         bindings/v8/custom/V8HTMLImageElementConstructor.cpp \
438         bindings/v8/custom/V8HTMLInputElementCustom.cpp \
439         bindings/v8/custom/V8HTMLOptionElementConstructor.cpp \
440         bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp \
441         bindings/v8/custom/V8HTMLOutputElementCustom.cpp \
442         bindings/v8/custom/V8HTMLPlugInElementCustom.cpp \
443         bindings/v8/custom/V8HTMLSelectElementCustom.cpp \
444         bindings/v8/custom/V8LocationCustom.cpp \
445         bindings/v8/custom/V8MessageChannelConstructor.cpp \
446         bindings/v8/custom/V8MessagePortCustom.cpp \
447         bindings/v8/custom/V8MessageEventCustom.cpp \
448         bindings/v8/custom/V8NamedNodeMapCustom.cpp \
449         bindings/v8/custom/V8NamedNodesCollection.cpp \
450         bindings/v8/custom/V8NodeCustom.cpp \
451         bindings/v8/custom/V8NodeListCustom.cpp \
452         bindings/v8/custom/V8SQLResultSetRowListCustom.cpp \
453         bindings/v8/custom/V8SQLTransactionCustom.cpp \
454         bindings/v8/custom/V8WebSocketCustom.cpp \
455         \
456         bindings/v8/custom/V8SharedWorkerCustom.cpp \
457         bindings/v8/custom/V8StorageCustom.cpp \
458         bindings/v8/custom/V8StyleSheetCustom.cpp \
459         bindings/v8/custom/V8StyleSheetListCustom.cpp \
460         bindings/v8/custom/V8WebKitCSSMatrixConstructor.cpp \
461         bindings/v8/custom/V8WebKitPointConstructor.cpp \
462         bindings/v8/custom/V8WorkerContextCustom.cpp \
463         bindings/v8/custom/V8WorkerCustom.cpp \
464         bindings/v8/custom/V8XMLHttpRequestConstructor.cpp \
465         bindings/v8/custom/V8XMLHttpRequestCustom.cpp \
466         \
467         bindings/v8/custom/V8SVGDocumentCustom.cpp \
468         bindings/v8/custom/V8SVGElementCustom.cpp \
469         bindings/v8/custom/V8SVGLengthCustom.cpp \
470         bindings/v8/custom/V8SVGPathSegCustom.cpp \
471         \
472         bindings/v8/specialization/V8BindingState.cpp\
473         \
474         bindings/v8/custom/V8NotificationCenterCustom.cpp \
475         bindings/v8/custom/V8ConsoleCustom.cpp \
476 #        bindings/v8/custom/V8DatabaseSyncCustom.cpp \
477         bindings/v8/custom/V8SQLTransactionSyncCustom.cpp \
478         bindings/v8/V8WorkerContextErrorHandler.cpp
479 } else {
480     SOURCES += \
481         bindings/js/GCController.cpp \
482         bindings/js/DOMObjectHashTableMap.cpp \
483         bindings/js/DOMWrapperWorld.cpp \
484         bindings/js/JSCallbackData.cpp \
485         bindings/js/JSAttrCustom.cpp \
486         bindings/js/JSCDATASectionCustom.cpp \
487         bindings/js/JSCanvasRenderingContextCustom.cpp \
488         bindings/js/JSCanvasRenderingContext2DCustom.cpp \
489         bindings/js/JSClipboardCustom.cpp \
490         bindings/js/JSConsoleCustom.cpp \
491         bindings/js/JSCSSRuleCustom.cpp \
492         bindings/js/JSCSSRuleListCustom.cpp \
493         bindings/js/JSCSSStyleDeclarationCustom.cpp \
494         bindings/js/JSCSSValueCustom.cpp \
495         bindings/js/JSCoordinatesCustom.cpp \
496         bindings/js/JSCustomPositionCallback.cpp \
497         bindings/js/JSCustomPositionErrorCallback.cpp \
498         bindings/js/JSCustomVoidCallback.cpp \
499         bindings/js/JSCustomXPathNSResolver.cpp \
500         bindings/js/JSDataGridColumnListCustom.cpp \
501         bindings/js/JSDataGridDataSource.cpp \
502         bindings/js/JSDebugWrapperSet.cpp \
503         bindings/js/JSDesktopNotificationsCustom.cpp \
504         bindings/js/JSDeviceMotionEventCustom.cpp \
505         bindings/js/JSDeviceOrientationEventCustom.cpp \
506         bindings/js/JSDocumentCustom.cpp \
507         bindings/js/JSDOMFormDataCustom.cpp \
508         bindings/js/JSDOMGlobalObject.cpp \
509         bindings/js/JSDOMStringMapCustom.cpp \
510         bindings/js/JSDOMWindowBase.cpp \
511         bindings/js/JSDOMWindowCustom.cpp \
512         bindings/js/JSDOMWindowShell.cpp \
513         bindings/js/JSDOMWrapper.cpp \
514         bindings/js/JSElementCustom.cpp \
515         bindings/js/JSEventCustom.cpp \
516         bindings/js/JSEventSourceCustom.cpp \
517         bindings/js/JSEventTarget.cpp \
518         bindings/js/JSExceptionBase.cpp \
519         bindings/js/JSFileReaderCustom.cpp \
520         bindings/js/JSGeolocationCustom.cpp \
521         bindings/js/JSHistoryCustom.cpp \
522         bindings/js/JSHTMLAppletElementCustom.cpp \
523         bindings/js/JSHTMLCanvasElementCustom.cpp \
524         bindings/js/JSHTMLAllCollectionCustom.cpp \
525         bindings/js/JSHTMLCollectionCustom.cpp \
526         bindings/js/JSHTMLDataGridElementCustom.cpp \
527         bindings/js/JSHTMLDocumentCustom.cpp \
528         bindings/js/JSHTMLElementCustom.cpp \
529         bindings/js/JSHTMLEmbedElementCustom.cpp \
530         bindings/js/JSHTMLFormElementCustom.cpp \
531         bindings/js/JSHTMLFrameElementCustom.cpp \
532         bindings/js/JSHTMLFrameSetElementCustom.cpp \
533         bindings/js/JSHTMLInputElementCustom.cpp \
534         bindings/js/JSHTMLObjectElementCustom.cpp \
535         bindings/js/JSHTMLOptionsCollectionCustom.cpp \
536         bindings/js/JSHTMLOutputElementCustom.cpp \
537         bindings/js/JSHTMLSelectElementCustom.cpp \
538         bindings/js/JSImageConstructor.cpp \
539         bindings/js/JSImageDataCustom.cpp \
540         bindings/js/JSInjectedScriptHostCustom.cpp \
541         bindings/js/JSInspectorFrontendHostCustom.cpp \
542         bindings/js/JSLocationCustom.cpp \
543         bindings/js/JSNamedNodeMapCustom.cpp \
544         bindings/js/JSNavigatorCustom.cpp  \
545         bindings/js/JSNodeCustom.cpp \
546         bindings/js/JSNodeFilterCondition.cpp \
547         bindings/js/JSNodeFilterCustom.cpp \
548         bindings/js/JSNodeIteratorCustom.cpp \
549         bindings/js/JSNodeListCustom.cpp \
550         bindings/js/JSOptionConstructor.cpp \
551         bindings/js/JSScriptProfileNodeCustom.cpp \
552         bindings/js/JSStyleSheetCustom.cpp \
553         bindings/js/JSStyleSheetListCustom.cpp \
554         bindings/js/JSTextCustom.cpp \
555         bindings/js/JSTouchCustom.cpp \
556         bindings/js/JSTouchListCustom.cpp \
557         bindings/js/JSTreeWalkerCustom.cpp \
558         bindings/js/JSWebKitCSSMatrixCustom.cpp \
559         bindings/js/JSWebKitPointCustom.cpp \
560         bindings/js/JSXMLHttpRequestCustom.cpp \
561         bindings/js/JSXMLHttpRequestUploadCustom.cpp \
562         bindings/js/JSDOMPluginCustom.cpp \
563         bindings/js/JSDOMPluginArrayCustom.cpp \
564         bindings/js/JSMessageChannelCustom.cpp \
565         bindings/js/JSMessageEventCustom.cpp \
566         bindings/js/JSMessagePortCustom.cpp \
567         bindings/js/JSMessagePortCustom.h \
568         bindings/js/JSDOMMimeTypeArrayCustom.cpp \
569         bindings/js/JSDOMBinding.cpp \
570         bindings/js/JSEventListener.cpp \
571         bindings/js/JSLazyEventListener.cpp \
572         bindings/js/JSMainThreadExecState.cpp \
573         bindings/js/JSPluginElementFunctions.cpp \
574         bindings/js/JSPopStateEventCustom.cpp \
575         bindings/js/JSWorkerContextErrorHandler.cpp \
576         bindings/js/ScriptCachedFrameData.cpp \
577         bindings/js/ScriptCallStackFactory.cpp \
578         bindings/js/ScriptController.cpp \
579         bindings/js/ScriptDebugServer.cpp \
580         bindings/js/ScriptEventListener.cpp \
581         bindings/js/ScriptFunctionCall.cpp \
582         bindings/js/ScriptGCEvent.cpp \
583         bindings/js/ScriptObject.cpp \
584         bindings/js/ScriptProfile.cpp \
585         bindings/js/ScriptState.cpp \
586         bindings/js/ScriptValue.cpp \
587         bindings/js/ScheduledAction.cpp \
588         bindings/js/SerializedScriptValue.cpp \
589         bindings/js/specialization/JSBindingState.cpp \
590         bindings/ScriptControllerBase.cpp \
591         bridge/IdentifierRep.cpp \
592         bridge/NP_jsobject.cpp \
593         bridge/npruntime.cpp \
594         bridge/runtime_array.cpp \
595         bridge/runtime_method.cpp \
596         bridge/runtime_object.cpp \
597         bridge/runtime_root.cpp \
598         bridge/c/CRuntimeObject.cpp \
599         bridge/c/c_class.cpp \
600         bridge/c/c_instance.cpp \
601         bridge/c/c_runtime.cpp \
602         bridge/c/c_utility.cpp \
603         bridge/jsc/BridgeJSC.cpp
604 }
605
606 SOURCES += \
607     css/CSSBorderImageValue.cpp \
608     css/CSSCanvasValue.cpp \
609     css/CSSCharsetRule.cpp \
610     css/CSSComputedStyleDeclaration.cpp \
611     css/CSSCursorImageValue.cpp \
612     css/CSSFontFace.cpp \
613     css/CSSFontFaceRule.cpp \
614     css/CSSFontFaceSrcValue.cpp \
615     css/CSSFontSelector.cpp \
616     css/CSSFontFaceSource.cpp \
617     css/CSSFunctionValue.cpp \
618     css/CSSGradientValue.cpp \
619     css/CSSImageValue.cpp \
620     css/CSSImageGeneratorValue.cpp \
621     css/CSSImportRule.cpp \
622     css/CSSInheritedValue.cpp \
623     css/CSSInitialValue.cpp \
624     css/CSSMediaRule.cpp \
625     css/CSSMutableStyleDeclaration.cpp \
626     css/CSSOMUtils.cpp \
627     css/CSSPageRule.cpp \
628     css/CSSParser.cpp \
629     css/CSSParserValues.cpp \
630     css/CSSPrimitiveValue.cpp \
631     css/CSSProperty.cpp \
632     css/CSSPropertyLonghand.cpp \
633     css/CSSPropertySourceData.cpp \
634     css/CSSReflectValue.cpp \
635     css/CSSRule.cpp \
636     css/CSSRuleList.cpp \
637     css/CSSSelector.cpp \
638     css/CSSSelectorList.cpp \
639     css/CSSSegmentedFontFace.cpp \
640     css/CSSStyleDeclaration.cpp \
641     css/CSSStyleRule.cpp \
642     css/CSSStyleSelector.cpp \
643     css/CSSStyleSheet.cpp \
644     css/CSSTimingFunctionValue.cpp \
645     css/CSSUnicodeRangeValue.cpp \
646     css/CSSValueList.cpp \
647     css/FontFamilyValue.cpp \
648     css/FontValue.cpp \
649     css/MediaFeatureNames.cpp \
650     css/MediaList.cpp \
651     css/MediaQuery.cpp \
652     css/MediaQueryEvaluator.cpp \
653     css/MediaQueryExp.cpp \
654     css/RGBColor.cpp \
655     css/ShadowValue.cpp \
656     css/StyleBase.cpp \
657     css/StyleList.cpp \
658     css/StyleMedia.cpp \
659     css/StyleSheet.cpp \
660     css/StyleSheetList.cpp \
661     css/WebKitCSSKeyframeRule.cpp \
662     css/WebKitCSSKeyframesRule.cpp \
663     css/WebKitCSSMatrix.cpp \
664     css/WebKitCSSTransformValue.cpp \
665     dom/ActiveDOMObject.cpp \
666     dom/AsyncScriptRunner.cpp \
667     dom/Attr.cpp \
668     dom/Attribute.cpp \
669     dom/BeforeProcessEvent.cpp \
670     dom/BeforeTextInsertedEvent.cpp \
671     dom/BeforeUnloadEvent.cpp \
672     dom/CDATASection.cpp \
673     dom/CharacterData.cpp \
674     dom/CheckedRadioButtons.cpp \
675     dom/ChildNodeList.cpp \
676     dom/ClassNodeList.cpp \
677     dom/ClientRect.cpp \
678     dom/ClientRectList.cpp \
679     dom/Clipboard.cpp \
680     dom/ClipboardEvent.cpp \
681     dom/Comment.cpp \
682     dom/CompositionEvent.cpp \
683     dom/ContainerNode.cpp \
684     dom/CSSMappedAttributeDeclaration.cpp \
685     dom/CustomEvent.cpp \
686     dom/DecodedDataDocumentParser.cpp \
687     dom/DeviceMotionController.cpp \
688     dom/DeviceMotionData.cpp \
689     dom/DeviceMotionEvent.cpp \
690     dom/DeviceOrientation.cpp \
691     dom/DeviceOrientationController.cpp \
692     dom/DeviceOrientationEvent.cpp \
693     dom/Document.cpp \
694     dom/DocumentFragment.cpp \
695     dom/DocumentMarkerController.cpp \
696     dom/DocumentParser.cpp \
697     dom/DocumentType.cpp \
698     dom/DOMImplementation.cpp \
699     dom/DOMStringList.cpp \
700     dom/DOMStringMap.cpp \
701     dom/DatasetDOMStringMap.cpp \
702     dom/DynamicNodeList.cpp \
703     dom/EditingText.cpp \
704     dom/Element.cpp \
705     dom/Entity.cpp \
706     dom/EntityReference.cpp \
707     dom/ErrorEvent.cpp \
708     dom/Event.cpp \
709     dom/EventContext.cpp \
710     dom/EventNames.cpp \
711     dom/EventTarget.cpp \
712     dom/ExceptionBase.cpp \
713     dom/ExceptionCode.cpp \
714     dom/InputElement.cpp \
715     dom/KeyboardEvent.cpp \
716     dom/MessageChannel.cpp \
717     dom/MessageEvent.cpp \
718     dom/MessagePort.cpp \
719     dom/MessagePortChannel.cpp \
720     dom/MouseEvent.cpp \
721     dom/MouseRelatedEvent.cpp \
722     dom/MutationEvent.cpp \
723     dom/NamedNodeMap.cpp \
724     dom/NameNodeList.cpp \
725     dom/Node.cpp \
726     dom/NodeFilterCondition.cpp \
727     dom/NodeFilter.cpp \
728     dom/NodeIterator.cpp \
729     dom/Notation.cpp \
730     dom/OptionGroupElement.cpp \
731     dom/OptionElement.cpp \
732     dom/StaticHashSetNodeList.cpp \
733     dom/OverflowEvent.cpp \
734     dom/PageTransitionEvent.cpp \
735     dom/PendingScript.cpp \
736     dom/PopStateEvent.cpp \
737     dom/Position.cpp \
738     dom/PositionIterator.cpp \
739     dom/ProcessingInstruction.cpp \
740     dom/ProgressEvent.cpp \
741     dom/QualifiedName.cpp \
742     dom/Range.cpp \
743     dom/RawDataDocumentParser.h \
744     dom/RegisteredEventListener.cpp \
745     dom/ScriptableDocumentParser.cpp \
746     dom/ScriptElement.cpp \
747     dom/ScriptExecutionContext.cpp \
748     dom/SelectElement.cpp \
749     dom/SelectorNodeList.cpp \
750     dom/SpaceSplitString.cpp \
751     dom/StaticNodeList.cpp \
752     dom/StyledElement.cpp \
753     dom/StyleElement.cpp \
754     dom/TagNodeList.cpp \
755     dom/Text.cpp \
756     dom/TextEvent.cpp \
757     dom/Touch.cpp \
758     dom/TouchEvent.cpp \
759     dom/TouchList.cpp \
760     dom/Traversal.cpp \
761     dom/TreeWalker.cpp \
762     dom/UIEvent.cpp \
763     dom/UIEventWithKeyState.cpp \
764     dom/UserGestureIndicator.cpp \
765     dom/UserTypingGestureIndicator.cpp \
766     dom/ViewportArguments.cpp \
767     dom/WebKitAnimationEvent.cpp \
768     dom/WebKitTransitionEvent.cpp \
769     dom/WheelEvent.cpp \
770     dom/WindowEventContext.cpp \
771     dom/XMLDocumentParser.cpp \
772     dom/XMLDocumentParserQt.cpp \
773     dom/default/PlatformMessagePortChannel.cpp \
774     editing/AppendNodeCommand.cpp \
775     editing/ApplyBlockElementCommand.cpp \
776     editing/ApplyStyleCommand.cpp \
777     editing/BreakBlockquoteCommand.cpp \
778     editing/CompositeEditCommand.cpp \
779     editing/CreateLinkCommand.cpp \
780     editing/DeleteButtonController.cpp \
781     editing/DeleteButton.cpp \
782     editing/DeleteFromTextNodeCommand.cpp \
783     editing/DeleteSelectionCommand.cpp \
784     editing/EditCommand.cpp \
785     editing/EditingStyle.cpp \
786     editing/Editor.cpp \
787     editing/EditorCommand.cpp \
788     editing/FormatBlockCommand.cpp \
789     editing/htmlediting.cpp \
790     editing/HTMLInterchange.cpp \
791     editing/IndentOutdentCommand.cpp \
792     editing/InsertIntoTextNodeCommand.cpp \
793     editing/InsertLineBreakCommand.cpp \
794     editing/InsertListCommand.cpp \
795     editing/InsertNodeBeforeCommand.cpp \
796     editing/InsertParagraphSeparatorCommand.cpp \
797     editing/InsertTextCommand.cpp \
798     editing/JoinTextNodesCommand.cpp \
799     editing/markup.cpp \
800     editing/MarkupAccumulator.cpp \
801     editing/MergeIdenticalElementsCommand.cpp \
802     editing/ModifySelectionListLevel.cpp \
803     editing/MoveSelectionCommand.cpp \
804     editing/RemoveCSSPropertyCommand.cpp \
805     editing/RemoveFormatCommand.cpp \
806     editing/RemoveNodeCommand.cpp \
807     editing/RemoveNodePreservingChildrenCommand.cpp \
808     editing/ReplaceNodeWithSpanCommand.cpp \
809     editing/ReplaceSelectionCommand.cpp \
810     editing/SelectionController.cpp \
811     editing/SetNodeAttributeCommand.cpp \
812     editing/SmartReplaceICU.cpp \
813     editing/SplitElementCommand.cpp \
814     editing/SplitTextNodeCommand.cpp \
815     editing/SplitTextNodeContainingElementCommand.cpp \
816     editing/TextCheckingHelper.cpp \
817     editing/TextIterator.cpp \
818     editing/TypingCommand.cpp \
819     editing/UnlinkCommand.cpp \
820     editing/VisiblePosition.cpp \
821     editing/VisibleSelection.cpp \
822     editing/visible_units.cpp \
823     editing/WrapContentsInDummySpanCommand.cpp \
824     fileapi/Blob.cpp \
825     fileapi/BlobBuilder.cpp \
826     fileapi/BlobURL.cpp \
827     fileapi/File.cpp \
828     fileapi/FileList.cpp \
829     fileapi/FileReader.cpp \
830     fileapi/FileReaderLoader.cpp \
831     fileapi/FileReaderSync.cpp \
832     fileapi/FileStreamProxy.cpp \
833     fileapi/FileThread.cpp \
834     fileapi/ThreadableBlobRegistry.cpp \
835     history/BackForwardController.cpp \
836     history/BackForwardListImpl.cpp \
837     history/CachedFrame.cpp \
838     history/CachedPage.cpp \
839     history/HistoryItem.cpp \
840     history/qt/HistoryItemQt.cpp \
841     history/PageCache.cpp \
842     html/AsyncImageResizer.cpp \
843     html/BaseButtonInputType.cpp \
844     html/BaseCheckableInputType.cpp \
845     html/BaseDateAndTimeInputType.cpp \
846     html/BaseTextInputType.cpp \
847     html/ButtonInputType.cpp \
848     html/CheckboxInputType.cpp \
849     html/ClassList.cpp \
850     html/CollectionCache.cpp \
851     html/ColorInputType.cpp \
852     html/DOMDataGridDataSource.cpp \
853     html/DOMFormData.cpp \
854     html/DOMSettableTokenList.cpp \
855     html/DOMTokenList.cpp \
856     html/DataGridColumn.cpp \
857     html/DataGridColumnList.cpp \
858     html/DateComponents.cpp \
859     html/DateInputType.cpp \
860     html/DateTimeInputType.cpp \
861     html/DateTimeLocalInputType.cpp \
862     html/EmailInputType.cpp \
863     html/FTPDirectoryDocument.cpp \
864     html/FileInputType.cpp \
865     html/FormDataList.cpp \
866     html/HTMLAllCollection.cpp \
867     html/HTMLAnchorElement.cpp \
868     html/HTMLAppletElement.cpp \
869     html/HTMLAreaElement.cpp \
870     html/HTMLBRElement.cpp \
871     html/HTMLBaseElement.cpp \
872     html/HTMLBaseFontElement.cpp \
873     html/HTMLBlockquoteElement.cpp \
874     html/HTMLBodyElement.cpp \
875     html/HTMLButtonElement.cpp \
876     html/HTMLCanvasElement.cpp \
877     html/HTMLCollection.cpp \
878     html/HTMLDListElement.cpp \
879     html/HTMLDataGridCellElement.cpp \
880     html/HTMLDataGridColElement.cpp \
881     html/HTMLDataGridElement.cpp \
882     html/HTMLDataGridRowElement.cpp \
883     html/HTMLDataListElement.cpp \
884     html/HTMLDirectoryElement.cpp \
885     html/HTMLDivElement.cpp \
886     html/HTMLDocument.cpp \
887     html/HTMLElement.cpp \
888     html/HTMLEmbedElement.cpp \
889     html/HTMLFieldSetElement.cpp \
890     html/HTMLFontElement.cpp \
891     html/HTMLFormCollection.cpp \
892     html/HTMLFormControlElement.cpp \
893     html/HTMLFormElement.cpp \
894     html/HTMLFrameElement.cpp \
895     html/HTMLFrameElementBase.cpp \
896     html/HTMLFrameOwnerElement.cpp \
897     html/HTMLFrameSetElement.cpp \
898     html/HTMLHRElement.cpp \
899     html/HTMLHeadElement.cpp \
900     html/HTMLHeadingElement.cpp \
901     html/HTMLHtmlElement.cpp \
902     html/HTMLIFrameElement.cpp \
903     html/HTMLImageElement.cpp \
904     html/HTMLImageLoader.cpp \
905     html/HTMLInputElement.cpp \
906     html/HTMLIsIndexElement.cpp \
907     html/HTMLKeygenElement.cpp \
908     html/HTMLLIElement.cpp \
909     html/HTMLLabelElement.cpp \
910     html/HTMLLegendElement.cpp \
911     html/HTMLLinkElement.cpp \
912     html/HTMLMapElement.cpp \
913     html/HTMLMarqueeElement.cpp \
914     html/HTMLMenuElement.cpp \
915     html/HTMLMetaElement.cpp \
916     html/HTMLMeterElement.cpp \
917     html/HTMLModElement.cpp \
918     html/HTMLNameCollection.cpp \
919     html/HTMLOListElement.cpp \
920     html/HTMLObjectElement.cpp \
921     html/HTMLOptGroupElement.cpp \
922     html/HTMLOptionElement.cpp \
923     html/HTMLOptionsCollection.cpp \
924     html/HTMLOutputElement.cpp \
925     html/HTMLParagraphElement.cpp \
926     html/HTMLParamElement.cpp \
927     html/HTMLParserErrorCodes.cpp \
928     html/HTMLPlugInElement.cpp \
929     html/HTMLPlugInImageElement.cpp \
930     html/HTMLPreElement.cpp \
931     html/HTMLProgressElement.cpp \
932     html/HTMLQuoteElement.cpp \
933     html/HTMLScriptElement.cpp \
934     html/HTMLSelectElement.cpp \
935     html/HTMLStyleElement.cpp \
936     html/HTMLTableCaptionElement.cpp \
937     html/HTMLTableCellElement.cpp \
938     html/HTMLTableColElement.cpp \
939     html/HTMLTableElement.cpp \
940     html/HTMLTablePartElement.cpp \
941     html/HTMLTableRowElement.cpp \
942     html/HTMLTableRowsCollection.cpp \
943     html/HTMLTableSectionElement.cpp \
944     html/HTMLTextAreaElement.cpp \
945     html/HTMLTitleElement.cpp \
946     html/HTMLUListElement.cpp \
947     html/HTMLViewSourceDocument.cpp \
948     html/HiddenInputType.cpp \
949     html/ImageData.cpp \
950     html/ImageDocument.cpp \
951     html/ImageInputType.cpp \
952     html/ImageResizerThread.cpp \
953     html/InputType.cpp \
954     html/IsIndexInputType.cpp \
955     html/LabelsNodeList.cpp \
956     html/MediaDocument.cpp \
957     html/MonthInputType.cpp \
958     html/NumberInputType.cpp \
959     html/PasswordInputType.cpp \
960     html/PluginDocument.cpp \
961     html/RadioInputType.cpp \
962     html/RangeInputType.cpp \
963     html/ResetInputType.cpp \
964     html/SearchInputType.cpp \
965     html/StepRange.cpp \
966     html/SubmitInputType.cpp \
967     html/TelephoneInputType.cpp \
968     html/TextDocument.cpp \
969     html/TextFieldInputType.cpp \
970     html/TextInputType.cpp \
971     html/TimeInputType.cpp \
972     html/URLInputType.cpp \
973     html/ValidationMessage.cpp \
974     html/ValidityState.cpp \
975     html/WeekInputType.cpp \
976     html/canvas/CanvasGradient.cpp \
977     html/canvas/CanvasPattern.cpp \
978     html/canvas/CanvasPixelArray.cpp \
979     html/canvas/CanvasRenderingContext.cpp \
980     html/canvas/CanvasRenderingContext2D.cpp \
981     html/canvas/CanvasStyle.cpp \
982     html/parser/CSSPreloadScanner.cpp \
983     html/parser/HTMLConstructionSite.cpp \
984     html/parser/HTMLDocumentParser.cpp \
985     html/parser/HTMLElementStack.cpp \
986     html/parser/HTMLEntityParser.cpp \
987     html/parser/HTMLEntitySearch.cpp \
988     html/parser/HTMLFormattingElementList.cpp \
989     html/parser/HTMLParserIdioms.cpp \
990     html/parser/HTMLParserScheduler.cpp \
991     html/parser/HTMLPreloadScanner.cpp \
992     html/parser/HTMLScriptRunner.cpp \
993     html/parser/HTMLTokenizer.cpp \
994     html/parser/HTMLTreeBuilder.cpp \
995     html/parser/HTMLViewSourceParser.cpp \
996     html/parser/TextDocumentParser.cpp \
997     html/parser/TextViewSourceParser.cpp \
998     inspector/ConsoleMessage.cpp \
999     inspector/InjectedScript.cpp \
1000     inspector/InjectedScriptHost.cpp \
1001     inspector/InspectorApplicationCacheAgent.cpp \
1002     inspector/InspectorBackend.cpp \
1003     inspector/InspectorCSSAgent.cpp \
1004     inspector/InspectorCSSStore.cpp \
1005     inspector/InspectorClient.cpp \
1006     inspector/InspectorController.cpp \
1007     inspector/InspectorDatabaseResource.cpp \
1008     inspector/InspectorDebuggerAgent.cpp \
1009     inspector/InspectorDOMAgent.cpp \
1010     inspector/InspectorDOMStorageResource.cpp \
1011     inspector/InspectorFileSystemAgent.cpp \
1012     inspector/InspectorFrontendClientLocal.cpp \
1013     inspector/InspectorFrontendHost.cpp \
1014     inspector/InspectorInstrumentation.cpp \
1015     inspector/InspectorProfilerAgent.cpp \
1016     inspector/InspectorResourceAgent.cpp \
1017     inspector/InspectorState.cpp \
1018     inspector/InspectorStorageAgent.cpp \
1019     inspector/InspectorStyleSheet.cpp \
1020     inspector/InspectorTimelineAgent.cpp \
1021     inspector/InspectorValues.cpp \
1022     inspector/ScriptArguments.cpp \
1023     inspector/ScriptBreakpoint.cpp \
1024     inspector/ScriptCallFrame.cpp \
1025     inspector/ScriptCallStack.cpp \
1026     inspector/TimelineRecordFactory.cpp \
1027     loader/archive/ArchiveFactory.cpp \
1028     loader/archive/ArchiveResource.cpp \
1029     loader/archive/ArchiveResourceCollection.cpp \
1030     loader/cache/MemoryCache.cpp \
1031     loader/cache/CachedCSSStyleSheet.cpp \
1032     loader/cache/CachedFont.cpp \
1033     loader/cache/CachedImage.cpp \
1034     loader/cache/CachedResourceClientWalker.cpp \
1035     loader/cache/CachedResourceHandle.cpp \
1036     loader/cache/CachedResource.cpp \
1037     loader/cache/CachedScript.cpp \
1038     loader/cache/CachedXSLStyleSheet.cpp \
1039     loader/CrossOriginAccessControl.cpp \
1040     loader/CrossOriginPreflightResultCache.cpp \
1041     loader/cache/CachedResourceLoader.cpp \
1042     loader/DocumentLoader.cpp \
1043     loader/DocumentThreadableLoader.cpp \
1044     loader/DocumentWriter.cpp \
1045     loader/FormState.cpp \
1046     loader/FormSubmission.cpp \
1047     loader/FrameLoader.cpp \
1048     loader/FrameLoaderStateMachine.cpp \
1049     loader/HistoryController.cpp \
1050     loader/FTPDirectoryParser.cpp \
1051     loader/icon/IconLoader.cpp \
1052     loader/ImageLoader.cpp \
1053     loader/loader.cpp \
1054     loader/MainResourceLoader.cpp \
1055     loader/NavigationAction.cpp \
1056     loader/NetscapePlugInStreamLoader.cpp \
1057     loader/PingLoader.cpp \
1058     loader/PlaceholderDocument.cpp \
1059     loader/PolicyCallback.cpp \
1060     loader/PolicyChecker.cpp \
1061     loader/ProgressTracker.cpp \
1062     loader/NavigationScheduler.cpp \
1063     loader/Request.cpp \
1064     loader/ResourceLoader.cpp \
1065     loader/ResourceLoadNotifier.cpp \
1066     loader/ResourceLoadScheduler.cpp \
1067     loader/SinkDocument.cpp \
1068     loader/SubframeLoader.cpp \
1069     loader/SubresourceLoader.cpp \
1070     loader/TextResourceDecoder.cpp \
1071     loader/ThreadableLoader.cpp \
1072     notifications/Notification.cpp \
1073     notifications/NotificationCenter.cpp \
1074     page/animation/AnimationBase.cpp \
1075     page/animation/AnimationController.cpp \
1076     page/animation/CompositeAnimation.cpp \
1077     page/animation/ImplicitAnimation.cpp \
1078     page/animation/KeyframeAnimation.cpp \
1079     page/BarInfo.cpp \
1080     page/Chrome.cpp \
1081     page/Console.cpp \
1082     page/ContextMenuController.cpp \
1083     page/DOMSelection.cpp \
1084     page/DOMTimer.cpp \
1085     page/DOMWindow.cpp \
1086     page/Navigator.cpp \
1087     page/NavigatorBase.cpp \
1088     page/DragController.cpp \
1089     page/EventHandler.cpp \
1090     page/EventSource.cpp \
1091     page/FocusController.cpp \
1092     page/Frame.cpp \
1093     page/FrameTree.cpp \
1094     page/FrameView.cpp \
1095     page/Geolocation.cpp \
1096     page/GeolocationController.cpp \
1097     page/GeolocationPositionCache.cpp \
1098     page/GroupSettings.cpp \
1099     page/History.cpp \
1100     page/Location.cpp \
1101     page/MemoryInfo.cpp \
1102     page/MouseEventWithHitTestResults.cpp \
1103     page/OriginAccessEntry.cpp \
1104     page/Page.cpp \
1105     page/PageGroup.cpp \
1106     page/PageGroupLoadDeferrer.cpp \
1107     page/Performance.cpp \
1108     page/PerformanceNavigation.cpp \
1109     page/PerformanceTiming.cpp \
1110     page/PluginHalter.cpp \
1111     page/PrintContext.cpp \
1112     page/SecurityOrigin.cpp \
1113     page/Screen.cpp \
1114     page/Settings.cpp \
1115     page/SpatialNavigation.cpp \
1116     page/SuspendableTimer.cpp \
1117     page/UserContentURLPattern.cpp \
1118     page/WindowFeatures.cpp \
1119     page/XSSAuditor.cpp \
1120     plugins/PluginData.cpp \
1121     plugins/DOMPluginArray.cpp \
1122     plugins/DOMPlugin.cpp \
1123     plugins/PluginMainThreadScheduler.cpp \
1124     plugins/DOMMimeType.cpp \
1125     plugins/DOMMimeTypeArray.cpp \
1126     platform/animation/Animation.cpp \
1127     platform/animation/AnimationList.cpp \
1128     platform/Arena.cpp \
1129     platform/text/Base64.cpp \
1130     platform/text/BidiContext.cpp \
1131     platform/text/Hyphenation.cpp \
1132     platform/ContentType.cpp \
1133     platform/ContextMenu.cpp \
1134     platform/CrossThreadCopier.cpp \
1135     platform/DeprecatedPtrListImpl.cpp \
1136     platform/DragData.cpp \
1137     platform/DragImage.cpp \
1138     platform/FileChooser.cpp \
1139     platform/FileStream.cpp \
1140     platform/FileSystem.cpp \
1141     platform/GeolocationService.cpp \
1142     platform/image-decoders/qt/RGBA32BufferQt.cpp \
1143     platform/graphics/FontDescription.cpp \
1144     platform/graphics/FontFallbackList.cpp \
1145     platform/graphics/FontFamily.cpp \
1146     platform/graphics/BitmapImage.cpp \
1147     platform/graphics/Color.cpp \
1148     platform/graphics/ContextShadow.cpp \
1149     platform/graphics/FloatPoint3D.cpp \
1150     platform/graphics/FloatPoint.cpp \
1151     platform/graphics/FloatQuad.cpp \
1152     platform/graphics/FloatRect.cpp \
1153     platform/graphics/FloatSize.cpp \
1154     platform/graphics/FontData.cpp \
1155     platform/graphics/Font.cpp \
1156     platform/graphics/FontCache.cpp \
1157     platform/graphics/GeneratedImage.cpp \
1158     platform/graphics/Gradient.cpp \
1159     platform/graphics/GraphicsContext.cpp \
1160     platform/graphics/GraphicsLayer.cpp \
1161     platform/graphics/GraphicsTypes.cpp \
1162     platform/graphics/Image.cpp \
1163     platform/graphics/ImageBuffer.cpp \
1164     platform/graphics/ImageSource.cpp \
1165     platform/graphics/IntRect.cpp \
1166     platform/graphics/Path.cpp \
1167     platform/graphics/PathTraversalState.cpp \
1168     platform/graphics/Pattern.cpp \
1169     platform/graphics/Pen.cpp \
1170     platform/graphics/SegmentedFontData.cpp \
1171     platform/graphics/SimpleFontData.cpp \
1172     platform/graphics/TiledBackingStore.cpp \
1173     platform/graphics/transforms/AffineTransform.cpp \
1174     platform/graphics/transforms/TransformationMatrix.cpp \
1175     platform/graphics/transforms/MatrixTransformOperation.cpp \
1176     platform/graphics/transforms/Matrix3DTransformOperation.cpp \
1177     platform/graphics/transforms/PerspectiveTransformOperation.cpp \
1178     platform/graphics/transforms/RotateTransformOperation.cpp \
1179     platform/graphics/transforms/ScaleTransformOperation.cpp \
1180     platform/graphics/transforms/SkewTransformOperation.cpp \
1181     platform/graphics/transforms/TransformOperations.cpp \
1182     platform/graphics/transforms/TranslateTransformOperation.cpp \
1183     platform/KillRingNone.cpp \
1184     platform/KURL.cpp \
1185     platform/Language.cpp \
1186     platform/Length.cpp \
1187     platform/text/LineEnding.cpp \
1188     platform/LinkHash.cpp \
1189     platform/Logging.cpp \
1190     platform/MIMETypeRegistry.cpp \
1191     platform/mock/DeviceOrientationClientMock.cpp \
1192     platform/mock/GeolocationServiceMock.cpp \
1193     platform/mock/SpeechInputClientMock.cpp \
1194     platform/network/AuthenticationChallengeBase.cpp \
1195     platform/network/BlobData.cpp \
1196     platform/network/BlobRegistryImpl.cpp \
1197     platform/network/BlobResourceHandle.cpp \
1198     platform/network/Credential.cpp \
1199     platform/network/FormData.cpp \
1200     platform/network/FormDataBuilder.cpp \
1201     platform/network/HTTPHeaderMap.cpp \
1202     platform/network/HTTPParsers.cpp \
1203     platform/network/NetworkStateNotifier.cpp \
1204     platform/network/ProtectionSpace.cpp \
1205     platform/network/ProxyServer.cpp \
1206     platform/network/ResourceErrorBase.cpp \
1207     platform/network/ResourceHandle.cpp \
1208     platform/network/ResourceRequestBase.cpp \
1209     platform/network/ResourceResponseBase.cpp \
1210     platform/text/RegularExpression.cpp \
1211     platform/SchemeRegistry.cpp \
1212     platform/ScrollAnimator.cpp \
1213     platform/Scrollbar.cpp \
1214     platform/ScrollbarClient.cpp \
1215     platform/ScrollbarThemeComposite.cpp \
1216     platform/ScrollView.cpp \
1217     platform/text/SegmentedString.cpp \
1218     platform/SharedBuffer.cpp \
1219     platform/text/String.cpp \
1220     platform/text/TextCodec.cpp \
1221     platform/text/TextCodecLatin1.cpp \
1222     platform/text/TextCodecUserDefined.cpp \
1223     platform/text/TextCodecUTF16.cpp \
1224     platform/text/TextEncoding.cpp \
1225     platform/text/TextEncodingDetectorNone.cpp \
1226     platform/text/TextEncodingRegistry.cpp \
1227     platform/text/TextStream.cpp \
1228     platform/ThreadGlobalData.cpp \
1229     platform/ThreadTimers.cpp \
1230     platform/Timer.cpp \
1231     platform/text/UnicodeRange.cpp \
1232     platform/text/transcoder/FontTranscoder.cpp \
1233     platform/UUID.cpp \
1234     platform/Widget.cpp \
1235     platform/PlatformStrategies.cpp \
1236     platform/LocalizedStrings.cpp \
1237     plugins/PluginDatabase.cpp \
1238     plugins/PluginDebug.cpp \
1239     plugins/PluginPackage.cpp \
1240     plugins/PluginStream.cpp \
1241     plugins/PluginView.cpp \
1242     rendering/AutoTableLayout.cpp \
1243     rendering/break_lines.cpp \
1244     rendering/BidiRun.cpp \
1245     rendering/CounterNode.cpp \
1246     rendering/EllipsisBox.cpp \
1247     rendering/FixedTableLayout.cpp \
1248     rendering/HitTestResult.cpp \
1249     rendering/InlineBox.cpp \
1250     rendering/InlineFlowBox.cpp \
1251     rendering/InlineTextBox.cpp \
1252     rendering/LayoutState.cpp \
1253     rendering/RenderApplet.cpp \
1254     rendering/RenderArena.cpp \
1255     rendering/RenderBlock.cpp \
1256     rendering/RenderBlockLineLayout.cpp \
1257     rendering/RenderBox.cpp \
1258     rendering/RenderBoxModelObject.cpp \
1259     rendering/RenderBR.cpp \
1260     rendering/RenderButton.cpp \
1261     rendering/RenderCounter.cpp \
1262     rendering/RenderDataGrid.cpp \
1263     rendering/RenderEmbeddedObject.cpp \
1264     rendering/RenderFieldset.cpp \
1265     rendering/RenderFileUploadControl.cpp \
1266     rendering/RenderFlexibleBox.cpp \
1267     rendering/RenderFrame.cpp \
1268     rendering/RenderFrameBase.cpp \
1269     rendering/RenderFrameSet.cpp \
1270     rendering/RenderHTMLCanvas.cpp \
1271     rendering/RenderIFrame.cpp \
1272     rendering/RenderImage.cpp \
1273     rendering/RenderImageResource.cpp \
1274     rendering/RenderImageResourceStyleImage.cpp \
1275     rendering/RenderIndicator.cpp \
1276     rendering/RenderInline.cpp \
1277     rendering/RenderLayer.cpp \
1278     rendering/RenderLayerBacking.cpp \
1279     rendering/RenderLayerCompositor.cpp \
1280     rendering/RenderLineBoxList.cpp \
1281     rendering/RenderListBox.cpp \
1282     rendering/RenderListItem.cpp \
1283     rendering/RenderListMarker.cpp \
1284     rendering/RenderMarquee.cpp \
1285     rendering/RenderMenuList.cpp \
1286     rendering/RenderMeter.cpp \
1287     rendering/RenderObject.cpp \
1288     rendering/RenderObjectChildList.cpp \
1289     rendering/RenderPart.cpp \
1290     rendering/RenderProgress.cpp \
1291     rendering/RenderReplaced.cpp \
1292     rendering/RenderReplica.cpp \
1293     rendering/RenderRuby.cpp \
1294     rendering/RenderRubyBase.cpp \
1295     rendering/RenderRubyRun.cpp \
1296     rendering/RenderRubyText.cpp \
1297     rendering/RenderScrollbar.cpp \
1298     rendering/RenderScrollbarPart.cpp \
1299     rendering/RenderScrollbarTheme.cpp \
1300     rendering/RenderSlider.cpp \
1301     rendering/RenderTable.cpp \
1302     rendering/RenderTableCell.cpp \
1303     rendering/RenderTableCol.cpp \
1304     rendering/RenderTableRow.cpp \
1305     rendering/RenderTableSection.cpp \
1306     rendering/RenderText.cpp \
1307     rendering/RenderTextControl.cpp \
1308     rendering/RenderTextControlMultiLine.cpp \
1309     rendering/RenderTextControlSingleLine.cpp \
1310     rendering/RenderTextFragment.cpp \
1311     rendering/RenderTheme.cpp \
1312     rendering/RenderTreeAsText.cpp \
1313     rendering/RenderView.cpp \
1314     rendering/RenderWidget.cpp \
1315     rendering/RenderWordBreak.cpp \
1316     rendering/RootInlineBox.cpp \
1317     rendering/SVGRenderTreeAsText.cpp \
1318     rendering/ScrollBehavior.cpp \
1319     rendering/ShadowElement.cpp \
1320     rendering/TextControlInnerElements.cpp \
1321     rendering/TransformState.cpp \
1322     rendering/style/ContentData.cpp \
1323     rendering/style/CounterDirectives.cpp \
1324     rendering/style/FillLayer.cpp \
1325     rendering/style/KeyframeList.cpp \
1326     rendering/style/NinePieceImage.cpp \
1327     rendering/style/RenderStyle.cpp \
1328     rendering/style/ShadowData.cpp \
1329     rendering/style/StyleBackgroundData.cpp \
1330     rendering/style/StyleBoxData.cpp \
1331     rendering/style/StyleCachedImage.cpp \
1332     rendering/style/StyleFlexibleBoxData.cpp \
1333     rendering/style/StyleGeneratedImage.cpp \
1334     rendering/style/StyleInheritedData.cpp \
1335     rendering/style/StyleMarqueeData.cpp \
1336     rendering/style/StyleMultiColData.cpp \
1337     rendering/style/StyleRareInheritedData.cpp \
1338     rendering/style/StyleRareNonInheritedData.cpp \
1339     rendering/style/StyleSurroundData.cpp \
1340     rendering/style/StyleTransformData.cpp \
1341     rendering/style/StyleVisualData.cpp \
1342     xml/DOMParser.cpp \
1343     xml/XMLHttpRequest.cpp \
1344     xml/XMLHttpRequestProgressEventThrottle.cpp \
1345     xml/XMLHttpRequestUpload.cpp \
1346     xml/XMLSerializer.cpp 
1347
1348 HEADERS += \
1349     accessibility/AccessibilityARIAGridCell.h \
1350     accessibility/AccessibilityARIAGrid.h \
1351     accessibility/AccessibilityARIAGridRow.h \
1352     accessibility/AccessibilityImageMapLink.h \
1353     accessibility/AccessibilityListBox.h \
1354     accessibility/AccessibilityListBoxOption.h \
1355     accessibility/AccessibilityList.h \
1356     accessibility/AccessibilityMediaControls.h \
1357     accessibility/AccessibilityObject.h \
1358     accessibility/AccessibilityProgressIndicator.h \
1359     accessibility/AccessibilityRenderObject.h \
1360     accessibility/AccessibilityScrollbar.h \
1361     accessibility/AccessibilitySlider.h \
1362     accessibility/AccessibilityTableCell.h \
1363     accessibility/AccessibilityTableColumn.h \
1364     accessibility/AccessibilityTable.h \
1365     accessibility/AccessibilityTableHeaderContainer.h \
1366     accessibility/AccessibilityTableRow.h \
1367     accessibility/AXObjectCache.h \
1368     bindings/ScriptControllerBase.h \
1369     bindings/generic/ActiveDOMCallback.h
1370
1371 v8 {
1372     HEADERS += \
1373         bindings/v8/custom/V8CustomEventListener.h \
1374         bindings/v8/custom/V8CustomPositionCallback.h \
1375         bindings/v8/custom/V8CustomPositionErrorCallback.h  \
1376         bindings/v8/custom/V8CustomVoidCallback.h \
1377         bindings/v8/custom/V8CustomXPathNSResolver.h \
1378         bindings/v8/custom/V8HTMLAudioElementConstructor.h \
1379         bindings/v8/custom/V8HTMLImageElementConstructor.h \
1380         bindings/v8/custom/V8HTMLOptionElementConstructor.h \
1381         bindings/v8/custom/V8HTMLSelectElementCustom.h \
1382         bindings/v8/custom/V8MessagePortCustom.h \
1383         bindings/v8/custom/V8NamedNodesCollection.h \
1384         \
1385         bindings/v8/ChildThreadDOMData.h \
1386         bindings/v8/DateExtension.h \
1387         bindings/v8/DOMData.h \
1388         bindings/v8/DOMDataStore.h \
1389         bindings/v8/DOMWrapperWorld.h \
1390         bindings/v8/IsolatedWorld.h \
1391         bindings/v8/MainThreadDOMData.h \
1392         bindings/v8/npruntime_impl.h \
1393         bindings/v8/npruntime_internal.h \
1394         bindings/v8/npruntime_priv.h \
1395         bindings/v8/NPV8Object.h \
1396         bindings/v8/OwnHandle.h \
1397         bindings/generic/RuntimeEnabledFeatures.h \
1398         bindings/v8/ScheduledAction.h \
1399         bindings/v8/ScopedDOMDataStore.h \
1400 #        bindings/v8/ScriptArray.h \
1401         bindings/v8/ScriptCachedFrameData.h \
1402         bindings/v8/ScriptController.h \
1403         bindings/v8/ScriptEventListener.h \
1404         bindings/v8/ScriptFunctionCall.h \
1405         bindings/v8/ScriptInstance.h \
1406         bindings/v8/ScriptObject.h \
1407         bindings/v8/ScriptProfile.h \
1408         bindings/v8/ScriptProfiler.h \
1409         bindings/v8/ScriptScope.h \
1410         bindings/v8/ScriptSourceCode.h \
1411         bindings/v8/ScriptState.h \
1412         bindings/v8/ScriptValue.h \
1413         bindings/v8/ScriptWrappable.h \
1414         bindings/v8/SerializedScriptValue.h \
1415         bindings/v8/SharedPersistent.h \
1416         bindings/v8/StaticDOMDataStore.h \
1417         bindings/v8/V8AbstractEventListener.h \
1418         bindings/v8/V8Binding.h \
1419         bindings/v8/V8Collection.h \
1420         bindings/v8/V8ConsoleMessage.h \
1421         bindings/v8/V8DataGridDataSource.h \
1422         bindings/v8/V8DOMMap.h \
1423         bindings/v8/V8DOMWindowShell.h \
1424         bindings/v8/V8DOMWrapper.h \
1425         bindings/v8/V8EventListenerList.h \
1426         bindings/v8/V8GCController.h \
1427         bindings/v8/V8Helpers.h \
1428         bindings/v8/V8HiddenPropertyName.h \
1429         bindings/v8/V8IsolatedContext.h \
1430         bindings/v8/V8LazyEventListener.h \
1431         bindings/v8/V8NodeFilterCondition.h \
1432         bindings/v8/V8NPObject.h \
1433         bindings/v8/V8NPUtils.h \
1434         bindings/v8/V8Proxy.h \
1435         bindings/v8/V8SVGPODTypeWrapper.h \
1436         bindings/v8/V8Utilities.h \
1437         bindings/v8/V8WorkerContextEventListener.h \
1438         bindings/v8/WorkerContextExecutionProxy.h \
1439         bindings/v8/WorkerScriptController.h \
1440         bindings/v8/WorldContextHandle.h
1441 } else {
1442     HEADERS += \
1443         bindings/js/CachedScriptSourceProvider.h \
1444         bindings/js/GCController.h \
1445         bindings/js/DOMObjectHashTableMap.h \
1446         bindings/js/DOMWrapperWorld.h \
1447         bindings/js/JSCallbackData.h \
1448         bindings/js/JSAudioConstructor.h \
1449         bindings/js/JSCSSStyleDeclarationCustom.h \
1450         bindings/js/JSCustomPositionCallback.h \
1451         bindings/js/JSCustomPositionErrorCallback.h \
1452         bindings/js/JSCustomVoidCallback.h \
1453         bindings/js/JSCustomXPathNSResolver.h \
1454         bindings/js/JSDataGridDataSource.h \
1455         bindings/js/JSDebugWrapperSet.h \
1456         bindings/js/JSDOMBinding.h \
1457         bindings/js/JSDOMGlobalObject.h \
1458         bindings/js/JSDOMStringMapCustom.h \
1459         bindings/js/JSDOMWindowBase.h \
1460         bindings/js/JSDOMWindowCustom.h \
1461         bindings/js/JSDOMWindowShell.h \
1462         bindings/js/JSDOMWrapper.h \
1463         bindings/js/JSEventListener.h \
1464         bindings/js/JSEventTarget.h \
1465         bindings/js/JSHistoryCustom.h \
1466         bindings/js/JSHTMLAppletElementCustom.h \
1467         bindings/js/JSHTMLEmbedElementCustom.h \
1468         bindings/js/JSHTMLInputElementCustom.h \
1469         bindings/js/JSHTMLObjectElementCustom.h \
1470         bindings/js/JSHTMLSelectElementCustom.h \
1471         bindings/js/JSImageConstructor.h \
1472         bindings/js/JSLazyEventListener.h \
1473         bindings/js/JSLocationCustom.h \
1474         bindings/js/JSNodeCustom.h \
1475         bindings/js/JSNodeFilterCondition.h \
1476         bindings/js/JSOptionConstructor.h \
1477         bindings/js/JSPluginElementFunctions.h \
1478         bindings/js/JSStorageCustom.h \
1479         bindings/js/JSWorkerContextBase.h \
1480         bindings/js/JSWorkerContextErrorHandler.h \
1481         bindings/js/JavaScriptCallFrame.h \
1482         bindings/js/ScheduledAction.h \
1483         bindings/js/ScriptCachedFrameData.h \
1484         bindings/js/ScriptController.h \
1485         bindings/js/ScriptEventListener.h \
1486         bindings/js/ScriptFunctionCall.h \
1487         bindings/js/ScriptGCEvent.h \
1488         bindings/js/ScriptHeapSnapshot.h \
1489         bindings/js/ScriptObject.h \
1490         bindings/js/ScriptProfile.h \
1491         bindings/js/ScriptProfileNode.h \
1492         bindings/js/ScriptProfiler.h \
1493         bindings/js/ScriptSourceCode.h \
1494         bindings/js/ScriptSourceProvider.h \
1495         bindings/js/ScriptState.h \
1496         bindings/js/ScriptValue.h \
1497         bindings/js/ScriptWrappable.h \
1498         bindings/js/SerializedScriptValue.h \
1499         bindings/js/StringSourceProvider.h \
1500         bindings/js/WebCoreJSClientData.h \
1501         bindings/js/WorkerScriptController.h \
1502         bridge/Bridge.h \
1503         bridge/c/CRuntimeObject.h \
1504         bridge/c/c_class.h \
1505         bridge/c/c_instance.h \
1506         bridge/c/c_runtime.h \
1507         bridge/c/c_utility.h \
1508         bridge/jsc/BridgeJSC.h \
1509         bridge/IdentifierRep.h \
1510         bridge/NP_jsobject.h \
1511         bridge/npruntime.h \
1512         bridge/qt/qt_class.h \
1513         bridge/qt/qt_instance.h \
1514         bridge/qt/qt_runtime.h \
1515         bridge/qt/qt_pixmapruntime.h \
1516         bridge/runtime_array.h \
1517         bridge/runtime_method.h \
1518         bridge/runtime_object.h \
1519         bridge/runtime_root.h
1520 }
1521
1522 HEADERS += \
1523     css/CSSBorderImageValue.h \
1524     css/CSSCanvasValue.h \
1525     css/CSSCharsetRule.h \
1526     css/CSSComputedStyleDeclaration.h \
1527     css/CSSCursorImageValue.h \
1528     css/CSSFontFace.h \
1529     css/CSSFontFaceRule.h \
1530     css/CSSFontFaceSource.h \
1531     css/CSSFontFaceSrcValue.h \
1532     css/CSSFontSelector.h \
1533     css/CSSFunctionValue.h \
1534     css/CSSGradientValue.h \
1535     css/CSSHelper.h \
1536     css/CSSImageGeneratorValue.h \
1537     css/CSSImageValue.h \
1538     css/CSSImportRule.h \
1539     css/CSSInheritedValue.h \
1540     css/CSSInitialValue.h \
1541     css/CSSMediaRule.h \
1542     css/CSSMutableStyleDeclaration.h \
1543     css/CSSOMUtils.h \
1544     css/CSSPageRule.h \
1545     css/CSSParser.h \
1546     css/CSSParserValues.h \
1547     css/CSSPrimitiveValue.h \
1548     css/CSSProperty.h \
1549     css/CSSPropertyLonghand.h \
1550     css/CSSReflectValue.h \
1551     css/CSSRule.h \
1552     css/CSSRuleList.h \
1553     css/CSSSegmentedFontFace.h \
1554     css/CSSSelector.h \
1555     css/CSSSelectorList.h \
1556     css/CSSStyleDeclaration.h \
1557     css/CSSStyleRule.h \
1558     css/CSSStyleSelector.h \
1559     css/CSSStyleSheet.h \
1560     css/CSSTimingFunctionValue.h \
1561     css/CSSUnicodeRangeValue.h \
1562     css/CSSValueList.h \
1563     css/FontFamilyValue.h \
1564     css/FontValue.h \
1565     css/MediaFeatureNames.h \
1566     css/MediaList.h \
1567     css/MediaQueryEvaluator.h \
1568     css/MediaQueryExp.h \
1569     css/MediaQuery.h \
1570     css/RGBColor.h \
1571     css/ShadowValue.h \
1572     css/StyleBase.h \
1573     css/StyleList.h \
1574     css/StyleMedia.h \
1575     css/StyleSheet.h \
1576     css/StyleSheetList.h \
1577     css/WebKitCSSKeyframeRule.h \
1578     css/WebKitCSSKeyframesRule.h \
1579     css/WebKitCSSMatrix.h \
1580     css/WebKitCSSTransformValue.h \
1581     dom/ActiveDOMObject.h \
1582     dom/Attr.h \
1583     dom/Attribute.h \
1584     dom/BeforeTextInsertedEvent.h \
1585     dom/BeforeUnloadEvent.h \
1586     dom/CDATASection.h \
1587     dom/CharacterData.h \
1588     dom/CheckedRadioButtons.h \
1589     dom/ChildNodeList.h \
1590     dom/ClassNodeList.h \
1591     dom/ClientRect.h \
1592     dom/ClientRectList.h \
1593     dom/ClipboardEvent.h \
1594     dom/Clipboard.h \
1595     dom/Comment.h \
1596     dom/ContainerNode.h \
1597     dom/CSSMappedAttributeDeclaration.h \
1598     dom/CustomEvent.h \
1599     dom/default/PlatformMessagePortChannel.h \
1600     dom/DeviceMotionClient.h \
1601     dom/DeviceMotionController.h \
1602     dom/DeviceMotionData.h \
1603     dom/DeviceMotionEvent.h \
1604     dom/DeviceOrientation.h \
1605     dom/DeviceOrientationClient.h \
1606     dom/DeviceOrientationController.h \
1607     dom/DeviceOrientationEvent.h \
1608     dom/Document.h \
1609     dom/DocumentFragment.h \
1610     dom/DocumentMarker.h \
1611     dom/DocumentMarkerController.h \
1612     dom/DocumentType.h \
1613     dom/DOMImplementation.h \
1614     dom/DOMStringList.h \
1615     dom/DOMStringMap.h \
1616     dom/DOMTimeStamp.h \
1617     dom/DatasetDOMStringMap.h \
1618     dom/DynamicNodeList.h \
1619     dom/EditingText.h \
1620     dom/Element.h \
1621     dom/Entity.h \
1622     dom/EntityReference.h \
1623     dom/Event.h \
1624     dom/EventNames.h \
1625     dom/EventTarget.h \
1626     dom/ExceptionBase.h \
1627     dom/ExceptionCode.h \
1628     dom/FragmentScriptingPermission.h \
1629     dom/InputElement.h \
1630     dom/KeyboardEvent.h \
1631     dom/MessageChannel.h \
1632     dom/MessageEvent.h \
1633     dom/MessagePortChannel.h \
1634     dom/MessagePort.h \
1635     dom/MouseEvent.h \
1636     dom/MouseRelatedEvent.h \
1637     dom/MutationEvent.h \
1638     dom/NamedNodeMap.h \
1639     dom/NameNodeList.h \
1640     dom/NodeFilterCondition.h \
1641     dom/NodeFilter.h \
1642     dom/Node.h \
1643     dom/NodeIterator.h \
1644     dom/Notation.h \
1645     dom/OptionElement.h \
1646     dom/OptionGroupElement.h \
1647     dom/StaticHashSetNodeList.h \
1648     dom/OverflowEvent.h \
1649     dom/PageTransitionEvent.h \
1650     dom/Position.h \
1651     dom/PositionIterator.h \
1652     dom/ProcessingInstruction.h \
1653     dom/ProgressEvent.h \
1654     dom/QualifiedName.h \
1655     dom/Range.h \
1656     dom/RegisteredEventListener.h \
1657     dom/ScriptElement.h \
1658     dom/ScriptExecutionContext.h \
1659     dom/SelectElement.h \
1660     dom/SelectorNodeList.h \
1661     dom/SpaceSplitString.h \
1662     dom/StaticNodeList.h \
1663     dom/StyledElement.h \
1664     dom/StyleElement.h \
1665     dom/TagNodeList.h \
1666     dom/TextEvent.h \
1667     dom/Text.h \
1668     dom/Touch.h \
1669     dom/TouchEvent.h \
1670     dom/TouchList.h \
1671     dom/TransformSource.h \
1672     dom/Traversal.h \
1673     dom/TreeDepthLimit.h \
1674     dom/TreeWalker.h \
1675     dom/UIEvent.h \
1676     dom/UIEventWithKeyState.h \
1677     dom/UserGestureIndicator.h \
1678     dom/ViewportArguments.h \
1679     dom/WebKitAnimationEvent.h \
1680     dom/WebKitTransitionEvent.h \
1681     dom/WheelEvent.h \
1682     dom/XMLDocumentParser.h \
1683     editing/AppendNodeCommand.h \
1684     editing/ApplyBlockElementCommand.h \
1685     editing/ApplyStyleCommand.h \
1686     editing/BreakBlockquoteCommand.h \
1687     editing/CompositeEditCommand.h \
1688     editing/CorrectionPanelInfo.h \
1689     editing/CreateLinkCommand.h \
1690     editing/DeleteButtonController.h \
1691     editing/DeleteButton.h \
1692     editing/DeleteFromTextNodeCommand.h \
1693     editing/DeleteSelectionCommand.h \
1694     editing/EditCommand.h \
1695     editing/EditingStyle.h \
1696     editing/EditingBehavior.h \
1697     editing/Editor.h \
1698     editing/FormatBlockCommand.h \
1699     editing/htmlediting.h \
1700     editing/HTMLInterchange.h \
1701     editing/IndentOutdentCommand.h \
1702     editing/InsertIntoTextNodeCommand.h \
1703     editing/InsertLineBreakCommand.h \
1704     editing/InsertListCommand.h \
1705     editing/InsertNodeBeforeCommand.h \
1706     editing/InsertParagraphSeparatorCommand.h \
1707     editing/InsertTextCommand.h \
1708     editing/JoinTextNodesCommand.h \
1709     editing/markup.h \
1710     editing/MergeIdenticalElementsCommand.h \
1711     editing/ModifySelectionListLevel.h \
1712     editing/MoveSelectionCommand.h \
1713     editing/RemoveCSSPropertyCommand.h \
1714     editing/RemoveFormatCommand.h \
1715     editing/RemoveNodeCommand.h \
1716     editing/RemoveNodePreservingChildrenCommand.h \
1717     editing/ReplaceNodeWithSpanCommand.h \
1718     editing/ReplaceSelectionCommand.h \
1719     editing/SelectionController.h \
1720     editing/SetNodeAttributeCommand.h \
1721     editing/SmartReplace.h \
1722     editing/SplitElementCommand.h \
1723     editing/SplitTextNodeCommand.h \
1724     editing/SplitTextNodeContainingElementCommand.h \
1725     editing/TextIterator.h \
1726     editing/TypingCommand.h \
1727     editing/UnlinkCommand.h \
1728     editing/VisiblePosition.h \
1729     editing/VisibleSelection.h \
1730     editing/visible_units.h \
1731     editing/WrapContentsInDummySpanCommand.h \
1732     fileapi/Blob.h \
1733     fileapi/BlobBuilder.h \
1734     fileapi/BlobURL.h \
1735     fileapi/File.h \
1736     fileapi/FileError.h \
1737     fileapi/FileException.h \
1738     fileapi/FileList.h \
1739     fileapi/FileReader.h \
1740     fileapi/FileReaderLoader.h \
1741     fileapi/FileReaderLoaderClient.h \
1742     fileapi/FileReaderSync.h \
1743     fileapi/FileStreamProxy.h \
1744     fileapi/FileThread.h \
1745     fileapi/FileThreadTask.h \
1746     history/BackForwardController.h \
1747     history/BackForwardListImpl.h \
1748     history/BackForwardList.h \
1749     history/CachedFrame.h \
1750     history/CachedPage.h \
1751     history/HistoryItem.h \
1752     history/PageCache.h \
1753     html/AsyncImageResizer.h \
1754     html/canvas/CanvasGradient.h \
1755     html/canvas/CanvasPattern.h \
1756     html/canvas/CanvasPixelArray.h \
1757     html/canvas/CanvasRenderingContext.h \
1758     html/canvas/CanvasRenderingContext2D.h \
1759     html/canvas/CanvasStyle.h \
1760     html/ClassList.h \
1761     html/CollectionCache.h \
1762     html/DataGridColumn.h \
1763     html/DataGridColumnList.h \
1764     html/DateComponents.h \
1765     html/DOMDataGridDataSource.h \
1766     html/DOMFormData.h \
1767     html/DOMSettableTokenList.h \
1768     html/DOMTokenList.h \
1769     html/FormDataList.h \
1770     html/FTPDirectoryDocument.h \
1771     html/HTMLAllCollection.h \
1772     html/HTMLAnchorElement.h \
1773     html/HTMLAppletElement.h \
1774     html/HTMLAreaElement.h \
1775     html/HTMLAudioElement.h \
1776     html/HTMLBaseElement.h \
1777     html/HTMLBaseFontElement.h \
1778     html/HTMLBlockquoteElement.h \
1779     html/HTMLBodyElement.h \
1780     html/HTMLBRElement.h \
1781     html/HTMLButtonElement.h \
1782     html/HTMLCanvasElement.h \
1783     html/HTMLCollection.h \
1784     html/HTMLDataGridCellElement.h \
1785     html/HTMLDataGridColElement.h \
1786     html/HTMLDataGridElement.h \
1787     html/HTMLDataGridRowElement.h \
1788     html/HTMLDirectoryElement.h \
1789     html/HTMLDivElement.h \
1790     html/HTMLDListElement.h \
1791     html/HTMLDocument.h \
1792     html/HTMLElement.h \
1793     html/HTMLEmbedElement.h \
1794     html/HTMLFieldSetElement.h \
1795     html/HTMLFontElement.h \
1796     html/HTMLFormCollection.h \
1797     html/HTMLFormControlElement.h \
1798     html/HTMLFormElement.h \
1799     html/HTMLFrameElementBase.h \
1800     html/HTMLFrameElement.h \
1801     html/HTMLFrameOwnerElement.h \
1802     html/HTMLFrameSetElement.h \
1803     html/HTMLHeadElement.h \
1804     html/HTMLHeadingElement.h \
1805     html/HTMLHRElement.h \
1806     html/HTMLHtmlElement.h \
1807     html/HTMLIFrameElement.h \
1808     html/HTMLImageElement.h \
1809     html/HTMLImageLoader.h \
1810     html/HTMLInputElement.h \
1811     html/HTMLIsIndexElement.h \
1812     html/HTMLKeygenElement.h \
1813     html/HTMLLabelElement.h \
1814     html/HTMLLegendElement.h \
1815     html/HTMLLIElement.h \
1816     html/HTMLLinkElement.h \
1817     html/HTMLMapElement.h \
1818     html/HTMLMarqueeElement.h \
1819     html/HTMLMediaElement.h \
1820     html/HTMLMenuElement.h \
1821     html/HTMLMetaElement.h \
1822     html/HTMLMeterElement.h \
1823     html/HTMLModElement.h \
1824     html/HTMLNameCollection.h \
1825     html/HTMLNoScriptElement.h \
1826     html/HTMLObjectElement.h \
1827     html/HTMLOListElement.h \
1828     html/HTMLOptGroupElement.h \
1829     html/HTMLOptionElement.h \
1830     html/HTMLOptionsCollection.h \
1831     html/HTMLOutputElement.h \
1832     html/HTMLParagraphElement.h \
1833     html/HTMLParamElement.h \
1834     html/HTMLParserErrorCodes.h \
1835     html/HTMLPlugInElement.h \
1836     html/HTMLPlugInImageElement.h \
1837     html/HTMLPreElement.h \
1838     html/HTMLProgressElement.h \
1839     html/HTMLQuoteElement.h \
1840     html/HTMLScriptElement.h \
1841     html/HTMLSelectElement.h \
1842     html/HTMLSourceElement.h \
1843     html/HTMLStyleElement.h \
1844     html/HTMLTableCaptionElement.h \
1845     html/HTMLTableCellElement.h \
1846     html/HTMLTableColElement.h \
1847     html/HTMLTableElement.h \
1848     html/HTMLTablePartElement.h \
1849     html/HTMLTableRowElement.h \
1850     html/HTMLTableRowsCollection.h \
1851     html/HTMLTableSectionElement.h \
1852     html/HTMLTextAreaElement.h \
1853     html/HTMLTitleElement.h \
1854     html/HTMLUListElement.h \
1855     html/HTMLVideoElement.h \
1856     html/HTMLViewSourceDocument.h \
1857     html/ImageData.h \
1858     html/ImageDocument.h \
1859     html/ImageResizerThread.h \
1860     html/LabelsNodeList.h \
1861     html/MediaDocument.h \
1862     html/PluginDocument.h \
1863     html/StepRange.h \
1864     html/TextDocument.h \
1865     html/TimeRanges.h \
1866     html/ValidityState.h \
1867     html/parser/CSSPreloadScanner.h \
1868     html/parser/HTMLConstructionSite.h \
1869     html/parser/HTMLDocumentParser.h \
1870     html/parser/HTMLElementStack.h \
1871     html/parser/HTMLEntityParser.h \
1872     html/parser/HTMLEntitySearch.h \
1873     html/parser/HTMLEntityTable.h \
1874     html/parser/HTMLFormattingElementList.h \
1875     html/parser/HTMLParserScheduler.h \
1876     html/parser/HTMLPreloadScanner.h \
1877     html/parser/HTMLScriptRunner.h \
1878     html/parser/HTMLScriptRunnerHost.h \
1879     html/parser/HTMLToken.h \
1880     html/parser/HTMLTokenizer.h \
1881     html/parser/HTMLTreeBuilder.h \
1882     html/parser/HTMLViewSourceParser.h \
1883     inspector/ConsoleMessage.h \
1884     inspector/InjectedScript.h \
1885     inspector/InjectedScriptHost.h \
1886     inspector/InspectorApplicationCacheAgent.h \
1887     inspector/InspectorBackend.h \
1888     inspector/InspectorController.h \
1889     inspector/InspectorCSSAgent.h \
1890     inspector/InspectorDatabaseResource.h \
1891     inspector/InspectorDebuggerAgent.h \
1892     inspector/InspectorDOMStorageResource.h \
1893     inspector/InspectorFileSystemAgent.h \
1894     inspector/InspectorFrontendClient.h \
1895     inspector/InspectorFrontendClientLocal.h \
1896     inspector/InspectorFrontendHost.h \
1897     inspector/InspectorInstrumentation.h \
1898     inspector/InspectorProfilerAgent.h \
1899     inspector/InspectorResourceAgent.h \
1900     inspector/InspectorState.h \
1901     inspector/InspectorStorageAgent.h \
1902     inspector/InspectorStyleSheet.h \
1903     inspector/InspectorTimelineAgent.h \
1904     inspector/ScriptGCEventListener.h \
1905     inspector/TimelineRecordFactory.h \
1906     loader/appcache/ApplicationCacheGroup.h \
1907     loader/appcache/ApplicationCacheHost.h \
1908     loader/appcache/ApplicationCache.h \
1909     loader/appcache/ApplicationCacheResource.h \
1910     loader/appcache/ApplicationCacheStorage.h \
1911     loader/appcache/DOMApplicationCache.h \
1912     loader/appcache/ManifestParser.h \
1913     loader/archive/ArchiveFactory.h \
1914     loader/archive/ArchiveResourceCollection.h \
1915     loader/archive/ArchiveResource.h \
1916     loader/cache/CachedCSSStyleSheet.h \
1917     loader/cache/CachedFont.h \
1918     loader/cache/CachedImage.h \
1919     loader/cache/CachedResourceClientWalker.h \
1920     loader/cache/CachedResource.h \
1921     loader/cache/CachedResourceHandle.h \
1922     loader/cache/CachedScript.h \
1923     loader/cache/CachedXSLStyleSheet.h \
1924     loader/cache/MemoryCache.h \
1925     loader/CrossOriginAccessControl.h \
1926     loader/CrossOriginPreflightResultCache.h \
1927     loader/cache/CachedResourceLoader.h \
1928     loader/DocumentLoader.h \
1929     loader/DocumentThreadableLoader.h \
1930     loader/FormState.h \
1931     loader/FrameLoader.h \
1932     loader/FrameLoaderStateMachine.h \
1933     loader/FTPDirectoryParser.h \
1934     loader/icon/IconDatabase.h \
1935     loader/icon/IconLoader.h \
1936     loader/icon/IconRecord.h \
1937     loader/icon/PageURLRecord.h \
1938     loader/ImageLoader.h \
1939     loader/loader.h \
1940     loader/MainResourceLoader.h \
1941     loader/NavigationAction.h \
1942     loader/NetscapePlugInStreamLoader.h \
1943     loader/PlaceholderDocument.h \
1944     loader/ProgressTracker.h \
1945     loader/Request.h \
1946     loader/ResourceLoader.h \
1947     loader/SubresourceLoader.h \
1948     loader/TextResourceDecoder.h \
1949     loader/ThreadableLoader.h \
1950     loader/WorkerThreadableLoader.h \
1951     mathml/MathMLElement.h \
1952     mathml/MathMLInlineContainerElement.h \
1953     mathml/MathMLMathElement.h \
1954     mathml/MathMLTextElement.h \
1955     mathml/RenderMathMLBlock.h \
1956     mathml/RenderMathMLFenced.h \
1957     mathml/RenderMathMLFraction.h \
1958     mathml/RenderMathMLMath.h \
1959     mathml/RenderMathMLOperator.h \
1960     mathml/RenderMathMLRoot.h \
1961     mathml/RenderMathMLRow.h \
1962     mathml/RenderMathMLSquareRoot.h \
1963     mathml/RenderMathMLSubSup.h \
1964     mathml/RenderMathMLUnderOver.h \
1965     notifications/Notification.h \
1966     notifications/NotificationCenter.h \
1967     notifications/NotificationPresenter.h \
1968     notifications/NotificationContents.h \
1969     page/animation/AnimationBase.h \
1970     page/animation/AnimationController.h \
1971     page/animation/CompositeAnimation.h \
1972     page/animation/ImplicitAnimation.h \
1973     page/animation/KeyframeAnimation.h \
1974     page/BarInfo.h \
1975     page/Chrome.h \
1976     page/Console.h \
1977     page/ContextMenuController.h \
1978     page/ContextMenuProvider.h \
1979     page/Coordinates.h \
1980     page/DOMSelection.h \
1981     page/DOMTimer.h \
1982     page/DOMWindow.h \
1983     page/DragController.h \
1984     page/EventHandler.h \
1985     page/EventSource.h \
1986     page/FocusController.h \
1987     page/Frame.h \
1988     page/FrameTree.h \
1989     page/FrameView.h \
1990     page/Geolocation.h \
1991     page/GeolocationPositionCache.h \
1992     page/Geoposition.h \
1993     page/GroupSettings.h \
1994     page/HaltablePlugin.h \
1995     page/History.h \
1996     page/Location.h \
1997     page/MouseEventWithHitTestResults.h \
1998     page/NavigatorBase.h \
1999     page/Navigator.h \
2000     page/PageGroup.h \
2001     page/PageGroupLoadDeferrer.h \
2002     page/Page.h \
2003     page/PluginHalter.h \
2004     page/PluginHalterClient.h \
2005     page/PrintContext.h \
2006     page/Screen.h \
2007     page/SecurityOrigin.h \
2008     page/Settings.h \
2009     page/SpatialNavigation.h \
2010     page/SpeechInput.h \
2011     page/SpeechInputClient.h \
2012     page/SpeechInputListener.h \
2013     page/SpeechInputResult.h \
2014     page/WindowFeatures.h \
2015     page/WorkerNavigator.h \
2016     page/XSSAuditor.h \
2017     platform/animation/Animation.h \
2018     platform/animation/AnimationList.h \
2019     platform/Arena.h \
2020     platform/AsyncFileStream.h \
2021     platform/ContentType.h \
2022     platform/ContextMenu.h \
2023     platform/CrossThreadCopier.h \
2024     platform/DeprecatedPtrListImpl.h \
2025     platform/DragData.h \
2026     platform/DragImage.h \
2027     platform/FileChooser.h \
2028     platform/FileStream.h \
2029     platform/FileStreamClient.h \
2030     platform/FileSystem.h \
2031     platform/GeolocationService.h \
2032     platform/image-decoders/ImageDecoder.h \
2033     platform/mock/DeviceOrientationClientMock.h \
2034     platform/mock/GeolocationServiceMock.h \
2035     platform/mock/SpeechInputClientMock.h \
2036     platform/graphics/BitmapImage.h \
2037     platform/graphics/Color.h \
2038     platform/graphics/ContextShadow.h \
2039     platform/graphics/filters/FEBlend.h \
2040     platform/graphics/filters/FEColorMatrix.h \
2041     platform/graphics/filters/FEComponentTransfer.h \
2042     platform/graphics/filters/FEComposite.h \
2043     platform/graphics/filters/FEConvolveMatrix.h \
2044     platform/graphics/filters/FEDiffuseLighting.h \
2045     platform/graphics/filters/FEDisplacementMap.h \
2046     platform/graphics/filters/FEFlood.h \
2047     platform/graphics/filters/FEGaussianBlur.h \
2048     platform/graphics/filters/FELighting.h \
2049     platform/graphics/filters/FEMerge.h \
2050     platform/graphics/filters/FEMorphology.h \
2051     platform/graphics/filters/FEOffset.h \
2052     platform/graphics/filters/FESpecularLighting.h \
2053     platform/graphics/filters/FETile.h \
2054     platform/graphics/filters/FETurbulence.h \
2055     platform/graphics/filters/FilterEffect.h \
2056     platform/graphics/filters/LightSource.h \
2057     platform/graphics/filters/SourceAlpha.h \
2058     platform/graphics/filters/SourceGraphic.h \
2059     platform/graphics/FloatPoint3D.h \
2060     platform/graphics/FloatPoint.h \
2061     platform/graphics/FloatQuad.h \
2062     platform/graphics/FloatRect.h \
2063     platform/graphics/FloatSize.h \
2064     platform/graphics/FontData.h \
2065     platform/graphics/FontDescription.h \
2066     platform/graphics/FontFamily.h \
2067     platform/graphics/Font.h \
2068     platform/graphics/GeneratedImage.h \
2069     platform/graphics/Gradient.h \
2070     platform/graphics/GraphicsContext.h \
2071     platform/graphics/GraphicsLayer.h \
2072     platform/graphics/GraphicsLayerClient.h \
2073     platform/graphics/GraphicsTypes.h \
2074     platform/graphics/Image.h \
2075     platform/graphics/ImageSource.h \
2076     platform/graphics/IntPoint.h \
2077     platform/graphics/IntPointHash.h \
2078     platform/graphics/IntRect.h \
2079     platform/graphics/MediaPlayer.h \
2080     platform/graphics/Path.h \
2081     platform/graphics/PathTraversalState.h \
2082     platform/graphics/Pattern.h \
2083     platform/graphics/Pen.h \
2084     platform/graphics/qt/FontCustomPlatformData.h \
2085     platform/graphics/qt/ImageDecoderQt.h \
2086     platform/graphics/qt/StillImageQt.h \
2087     platform/graphics/qt/TransparencyLayer.h \
2088     platform/graphics/SegmentedFontData.h \
2089     platform/graphics/SimpleFontData.h \
2090     platform/graphics/Tile.h \
2091     platform/graphics/TiledBackingStore.h \    
2092     platform/graphics/TiledBackingStoreClient.h \
2093     platform/graphics/transforms/Matrix3DTransformOperation.h \
2094     platform/graphics/transforms/MatrixTransformOperation.h \
2095     platform/graphics/transforms/PerspectiveTransformOperation.h \
2096     platform/graphics/transforms/RotateTransformOperation.h \
2097     platform/graphics/transforms/ScaleTransformOperation.h \
2098     platform/graphics/transforms/SkewTransformOperation.h \
2099     platform/graphics/transforms/TransformationMatrix.h \
2100     platform/graphics/transforms/TransformOperations.h \
2101     platform/graphics/transforms/TranslateTransformOperation.h \
2102     platform/KillRing.h \
2103     platform/KURL.h \
2104     platform/Length.h \
2105     platform/text/LineEnding.h \
2106     platform/LinkHash.h \
2107     platform/Logging.h \
2108     platform/Language.h \
2109     platform/MIMETypeRegistry.h \
2110     platform/network/AuthenticationChallengeBase.h \
2111     platform/network/AuthenticationClient.h \
2112     platform/network/BlobData.h \
2113     platform/network/BlobRegistry.h \
2114     platform/network/BlobRegistryImpl.h \
2115     platform/network/BlobResourceHandle.h \
2116     platform/network/BlobStorageData.h \
2117     platform/network/CookieStorage.h \
2118     platform/network/Credential.h \
2119     platform/network/FormDataBuilder.h \
2120     platform/network/FormData.h \
2121     platform/network/HTTPHeaderMap.h \
2122     platform/network/HTTPParsers.h \
2123     platform/network/NetworkingContext.h \
2124     platform/network/NetworkStateNotifier.h \
2125     platform/network/ProtectionSpace.h \
2126     platform/network/ProxyServer.h \
2127     platform/network/qt/QNetworkReplyHandler.h \
2128     platform/network/ResourceErrorBase.h \
2129     platform/network/ResourceHandle.h \
2130     platform/network/ResourceLoadTiming.h \
2131     platform/network/ResourceRequestBase.h \
2132     platform/network/ResourceResponseBase.h \
2133     platform/network/ResourceRawHeaders.h \
2134     platform/PlatformTouchEvent.h \
2135     platform/PlatformTouchPoint.h \
2136     platform/PopupMenu.h \
2137     platform/qt/ClipboardQt.h \
2138     platform/qt/QWebPageClient.h \
2139     platform/qt/QtStyleOptionWebComboBox.h \
2140     platform/qt/RenderThemeQt.h \
2141     platform/qt/ScrollbarThemeQt.h \
2142     platform/ScrollAnimator.h \
2143     platform/Scrollbar.h \
2144     platform/ScrollbarClient.h \
2145     platform/ScrollbarThemeComposite.h \
2146     platform/ScrollView.h \
2147     platform/SearchPopupMenu.h \
2148     platform/SharedBuffer.h \
2149     platform/sql/SQLiteDatabase.h \
2150     platform/sql/SQLiteFileSystem.h \
2151     platform/sql/SQLiteStatement.h \
2152     platform/sql/SQLiteTransaction.h \
2153     platform/sql/SQLValue.h \
2154     platform/text/Base64.h \
2155     platform/text/BidiContext.h \
2156     platform/text/Hyphenation.h \
2157     platform/text/qt/TextCodecQt.h \
2158     platform/text/RegularExpression.h \
2159     platform/text/SegmentedString.h \
2160     platform/text/TextCodec.h \
2161     platform/text/TextCodecLatin1.h \
2162     platform/text/TextCodecUserDefined.h \
2163     platform/text/TextCodecUTF16.h \
2164     platform/text/TextEncoding.h \
2165     platform/text/TextEncodingRegistry.h \
2166     platform/text/TextStream.h \
2167     platform/text/UnicodeRange.h \
2168     platform/text/transcoder/FontTranscoder.h \
2169     platform/ThreadGlobalData.h \
2170     platform/ThreadTimers.h \
2171     platform/Timer.h \
2172     platform/Widget.h \
2173     platform/PlatformStrategies.h \
2174     platform/LocalizedStrings.h \
2175     plugins/DOMMimeTypeArray.h \
2176     plugins/DOMMimeType.h \
2177     plugins/DOMPluginArray.h \
2178     plugins/PluginDatabase.h \
2179     plugins/PluginData.h \
2180     plugins/PluginDebug.h \
2181     plugins/DOMPlugin.h \
2182     plugins/PluginMainThreadScheduler.h \
2183     plugins/PluginPackage.h \
2184     plugins/PluginStream.h \
2185     plugins/PluginView.h \
2186     plugins/win/PluginMessageThrottlerWin.h \
2187     rendering/AutoTableLayout.h \
2188     rendering/break_lines.h \
2189     rendering/CounterNode.h \
2190     rendering/EllipsisBox.h \
2191     rendering/FixedTableLayout.h \
2192     rendering/HitTestResult.h \
2193     rendering/InlineBox.h \
2194     rendering/InlineFlowBox.h \
2195     rendering/InlineTextBox.h \
2196     rendering/LayoutState.h \
2197     rendering/MediaControlElements.h \
2198     rendering/PaintInfo.h \
2199     rendering/PaintPhase.h \
2200     rendering/PointerEventsHitRules.h \
2201     rendering/RenderApplet.h \
2202     rendering/RenderArena.h \
2203     rendering/RenderBlock.h \
2204     rendering/RenderBox.h \
2205     rendering/RenderBoxModelObject.h \
2206     rendering/RenderBR.h \
2207     rendering/RenderButton.h \
2208     rendering/RenderCounter.h \
2209     rendering/RenderDataGrid.h \
2210     rendering/RenderEmbeddedObject.h \
2211     rendering/RenderFieldset.h \
2212     rendering/RenderFileUploadControl.h \
2213     rendering/RenderFlexibleBox.h \
2214     rendering/RenderForeignObject.h \
2215     rendering/RenderFrame.h \
2216     rendering/RenderFrameBase.h \
2217     rendering/RenderFrameSet.h \
2218     rendering/RenderHTMLCanvas.h \
2219     rendering/RenderIFrame.h \
2220     rendering/RenderImageResource.h \
2221     rendering/RenderImageResourceStyleImage.h \
2222     rendering/RenderImage.h \
2223     rendering/RenderIndicator.h \
2224     rendering/RenderInline.h \
2225     rendering/RenderInputSpeech.h \
2226     rendering/RenderLayer.h \
2227     rendering/RenderLayerBacking.h \
2228     rendering/RenderLayerCompositor.h \
2229     rendering/RenderLineBoxList.h \
2230     rendering/RenderListBox.h \
2231     rendering/RenderListItem.h \
2232     rendering/RenderListMarker.h \
2233     rendering/RenderMarquee.h \
2234     rendering/RenderMedia.h \
2235     rendering/RenderMenuList.h \
2236     rendering/RenderMeter.h \
2237     rendering/RenderObjectChildList.h \
2238     rendering/RenderObject.h \
2239     rendering/RenderPart.h \
2240     rendering/RenderProgress.h \
2241     rendering/RenderReplaced.h \
2242     rendering/RenderReplica.h \
2243     rendering/RenderRuby.h \
2244     rendering/RenderRubyBase.h \
2245     rendering/RenderRubyRun.h \
2246     rendering/RenderRubyText.h \
2247     rendering/RenderScrollbar.h \
2248     rendering/RenderScrollbarPart.h \
2249     rendering/RenderScrollbarTheme.h \
2250     rendering/RenderSlider.h \
2251     rendering/RenderSVGBlock.h \
2252     rendering/RenderSVGContainer.h \
2253     rendering/RenderSVGGradientStop.h \
2254     rendering/RenderSVGHiddenContainer.h \
2255     rendering/RenderSVGImage.h \
2256     rendering/RenderSVGModelObject.h \
2257     rendering/RenderSVGResource.h \
2258     rendering/RenderSVGResourceClipper.h \
2259     rendering/RenderSVGResourceContainer.h \
2260     rendering/RenderSVGResourceFilter.h \ 
2261     rendering/RenderSVGResourceFilterPrimitive.h \
2262     rendering/RenderSVGResourceGradient.h \
2263     rendering/RenderSVGResourceLinearGradient.h \
2264     rendering/RenderSVGResourceMarker.h \
2265     rendering/RenderSVGResourceMasker.h \
2266     rendering/RenderSVGResourcePattern.h \
2267     rendering/RenderSVGResourceRadialGradient.h \
2268     rendering/RenderSVGResourceSolidColor.h \
2269     rendering/RenderSVGRoot.h \
2270     rendering/RenderSVGShadowTreeRootContainer.h \
2271     rendering/RenderSVGTransformableContainer.h \
2272     rendering/RenderSVGViewportContainer.h \
2273     rendering/RenderTableCell.h \
2274     rendering/RenderTableCol.h \
2275     rendering/RenderTable.h \
2276     rendering/RenderTableRow.h \
2277     rendering/RenderTableSection.h \
2278     rendering/RenderTextControl.h \
2279     rendering/RenderTextControlMultiLine.h \
2280     rendering/RenderTextControlSingleLine.h \
2281     rendering/RenderTextFragment.h \
2282     rendering/RenderText.h \
2283     rendering/RenderTheme.h \
2284     rendering/RenderTreeAsText.h \
2285     rendering/RenderVideo.h \
2286     rendering/RenderView.h \
2287     rendering/RenderWidget.h \
2288     rendering/RenderWordBreak.h \
2289     rendering/RootInlineBox.h \
2290     rendering/ScrollBehavior.h \
2291     rendering/ShadowElement.h \
2292     rendering/style/ContentData.h \
2293     rendering/style/CounterDirectives.h \
2294     rendering/style/CursorData.h \
2295     rendering/style/CursorList.h \
2296     rendering/style/FillLayer.h \
2297     rendering/style/KeyframeList.h \
2298     rendering/style/NinePieceImage.h \
2299     rendering/style/RenderStyle.h \
2300     rendering/style/ShadowData.h \
2301     rendering/style/StyleBackgroundData.h \
2302     rendering/style/StyleBoxData.h \
2303     rendering/style/StyleCachedImage.h \
2304     rendering/style/StyleFlexibleBoxData.h \
2305     rendering/style/StyleGeneratedImage.h \
2306     rendering/style/StyleInheritedData.h \
2307     rendering/style/StyleMarqueeData.h \
2308     rendering/style/StyleMultiColData.h \
2309     rendering/style/StyleRareInheritedData.h \
2310     rendering/style/StyleRareNonInheritedData.h \
2311     rendering/style/StyleReflection.h \
2312     rendering/style/StyleSurroundData.h \
2313     rendering/style/StyleTransformData.h \
2314     rendering/style/StyleVisualData.h \
2315     rendering/style/SVGRenderStyleDefs.h \
2316     rendering/style/SVGRenderStyle.h \
2317     rendering/svg/RenderSVGInline.h \
2318     rendering/svg/RenderSVGInlineText.h \
2319     rendering/svg/RenderSVGPath.h \
2320     rendering/svg/RenderSVGTSpan.h \
2321     rendering/svg/RenderSVGText.h \
2322     rendering/svg/RenderSVGTextPath.h \
2323     rendering/svg/SVGInlineFlowBox.h \
2324     rendering/svg/SVGInlineTextBox.h \
2325     rendering/svg/SVGRootInlineBox.h \
2326     rendering/svg/SVGTextChunk.h \
2327     rendering/svg/SVGTextChunkBuilder.h \
2328     rendering/svg/SVGTextFragment.h \
2329     rendering/svg/SVGTextLayoutAttributes.h \
2330     rendering/svg/SVGTextLayoutAttributesBuilder.h \
2331     rendering/svg/SVGTextLayoutEngine.h \
2332     rendering/svg/SVGTextLayoutEngineBaseline.h \
2333     rendering/svg/SVGTextLayoutEngineSpacing.h \
2334     rendering/svg/SVGTextMetrics.h \
2335     rendering/svg/SVGTextQuery.h \
2336     rendering/SVGImageBufferTools.h \
2337     rendering/SVGMarkerData.h \
2338     rendering/SVGMarkerLayoutInfo.h \
2339     rendering/SVGRenderSupport.h \
2340     rendering/SVGRenderTreeAsText.h \
2341     rendering/SVGResources.h \
2342     rendering/SVGResourcesCache.h \
2343     rendering/SVGResourcesCycleSolver.h \
2344     rendering/SVGShadowTreeElements.h \
2345     rendering/TextControlInnerElements.h \
2346     rendering/TransformState.h \
2347     svg/animation/SMILTimeContainer.h \
2348     svg/animation/SMILTime.h \
2349     svg/animation/SVGSMILElement.h \
2350     svg/ColorDistance.h \
2351     svg/DeprecatedSVGAnimatedProperty.h \
2352     svg/DeprecatedSVGAnimatedPropertyTraits.h \
2353     svg/DeprecatedSVGAnimatedTemplate.h \
2354     svg/graphics/filters/SVGFEImage.h \
2355     svg/graphics/filters/SVGFilterBuilder.h \
2356     svg/graphics/filters/SVGFilter.h \
2357     svg/graphics/SVGImage.h \
2358     svg/properties/SVGAnimatedListPropertyTearOff.h \
2359     svg/properties/SVGAnimatedProperty.h \
2360     svg/properties/SVGAnimatedPropertyDescription.h \
2361     svg/properties/SVGAnimatedPropertyMacros.h \
2362     svg/properties/SVGAnimatedPropertySynchronizer.h \
2363     svg/properties/SVGAnimatedPropertyTearOff.h \
2364     svg/properties/SVGAnimatedStaticPropertyTearOff.h \
2365     svg/properties/SVGAnimatedTransformListPropertyTearOff.h \
2366     svg/properties/SVGListProperty.h \
2367     svg/properties/SVGListPropertyTearOff.h \
2368     svg/properties/SVGProperty.h \
2369     svg/properties/SVGPropertyTearOff.h \
2370     svg/properties/SVGPropertyTraits.h \
2371     svg/properties/SVGStaticListPropertyTearOff.h \
2372     svg/properties/SVGStaticPropertyTearOff.h \
2373     svg/properties/SVGStaticPropertyWithParentTearOff.h \
2374     svg/properties/SVGTransformListPropertyTearOff.h \
2375     svg/SVGAElement.h \
2376     svg/SVGAltGlyphElement.h \
2377     svg/SVGAngle.h \
2378     svg/SVGAnimateColorElement.h \
2379     svg/SVGAnimatedAngle.h \
2380     svg/SVGAnimatedBoolean.h \
2381     svg/SVGAnimatedEnumeration.h \
2382     svg/SVGAnimatedInteger.h \
2383     svg/SVGAnimatedLength.h \
2384     svg/SVGAnimatedLengthList.h \
2385     svg/SVGAnimatedNumber.h \
2386     svg/SVGAnimatedNumberList.h \
2387     svg/SVGAnimatedPathData.h \
2388     svg/SVGAnimatedPreserveAspectRatio.h \
2389     svg/SVGAnimatedRect.h \
2390     svg/SVGAnimatedString.h \
2391     svg/SVGAnimatedTransformList.h \
2392     svg/SVGAnimateElement.h \
2393     svg/SVGAnimateMotionElement.h \
2394     svg/SVGAnimateTransformElement.h \
2395     svg/SVGAnimationElement.h \
2396     svg/SVGCircleElement.h \
2397     svg/SVGClipPathElement.h \
2398     svg/SVGColor.h \
2399     svg/SVGComponentTransferFunctionElement.h \
2400     svg/SVGCursorElement.h \
2401     svg/SVGDefsElement.h \
2402     svg/SVGDescElement.h \
2403     svg/SVGDocumentExtensions.h \
2404     svg/SVGDocument.h \
2405     svg/SVGElement.h \
2406     svg/SVGElementInstance.h \
2407     svg/SVGElementInstanceList.h \
2408     svg/SVGElementRareData.h \
2409     svg/SVGEllipseElement.h \
2410     svg/SVGExternalResourcesRequired.h \
2411     svg/SVGFEBlendElement.h \
2412     svg/SVGFEColorMatrixElement.h \
2413     svg/SVGFEComponentTransferElement.h \
2414     svg/SVGFECompositeElement.h \
2415     svg/SVGFEConvolveMatrixElement.h \
2416     svg/SVGFEDiffuseLightingElement.h \
2417     svg/SVGFEDisplacementMapElement.h \
2418     svg/SVGFEDistantLightElement.h \
2419     svg/SVGFEFloodElement.h \
2420     svg/SVGFEFuncAElement.h \
2421     svg/SVGFEFuncBElement.h \
2422     svg/SVGFEFuncGElement.h \
2423     svg/SVGFEFuncRElement.h \
2424     svg/SVGFEGaussianBlurElement.h \
2425     svg/SVGFEImageElement.h \
2426     svg/SVGFELightElement.h \
2427     svg/SVGFEMergeElement.h \
2428     svg/SVGFEMergeNodeElement.h \
2429     svg/SVGFEMorphologyElement.h \
2430     svg/SVGFEOffsetElement.h \
2431     svg/SVGFEPointLightElement.h \
2432     svg/SVGFESpecularLightingElement.h \
2433     svg/SVGFESpotLightElement.h \
2434     svg/SVGFETileElement.h \
2435     svg/SVGFETurbulenceElement.h \
2436     svg/SVGFilterElement.h \
2437     svg/SVGFilterPrimitiveStandardAttributes.h \
2438     svg/SVGFitToViewBox.h \
2439     svg/SVGFontData.h \
2440     svg/SVGFontElement.h \
2441     svg/SVGFontFaceElement.h \
2442     svg/SVGFontFaceFormatElement.h \
2443     svg/SVGFontFaceNameElement.h \
2444     svg/SVGFontFaceSrcElement.h \
2445     svg/SVGFontFaceUriElement.h \
2446     svg/SVGForeignObjectElement.h \
2447     svg/SVGGElement.h \
2448     svg/SVGGlyphElement.h \
2449     svg/SVGGradientElement.h \
2450     svg/SVGHKernElement.h \
2451     svg/SVGImageElement.h \
2452     svg/SVGImageLoader.h \
2453     svg/SVGLangSpace.h \
2454     svg/SVGLength.h \
2455     svg/SVGLengthList.h \
2456     svg/SVGLinearGradientElement.h \
2457     svg/SVGLineElement.h \
2458     svg/SVGLocatable.h \
2459     svg/SVGMarkerElement.h \
2460     svg/SVGMaskElement.h \
2461     svg/SVGMatrix.h \
2462     svg/SVGMetadataElement.h \
2463     svg/SVGMissingGlyphElement.h \
2464     svg/SVGMPathElement.h \
2465     svg/SVGNumberList.h \
2466     svg/SVGPaint.h \
2467     svg/SVGParserUtilities.h \
2468     svg/SVGPathBuilder.h \
2469     svg/SVGPathConsumer.h \
2470     svg/SVGPathElement.h \
2471     svg/SVGPathParser.h \
2472     svg/SVGPathSegArc.h \
2473     svg/SVGPathSegClosePath.h \
2474     svg/SVGPathSegCurvetoCubic.h \
2475     svg/SVGPathSegCurvetoCubicSmooth.h \
2476     svg/SVGPathSegCurvetoQuadratic.h \
2477     svg/SVGPathSegCurvetoQuadraticSmooth.h \
2478     svg/SVGPathSegLineto.h \
2479     svg/SVGPathSegLinetoHorizontal.h \
2480     svg/SVGPathSegLinetoVertical.h \
2481     svg/SVGPathSegList.h \
2482     svg/SVGPathSegListBuilder.h \
2483     svg/SVGPathSegMoveto.h \
2484     svg/SVGPatternElement.h \
2485     svg/SVGPointList.h \
2486     svg/SVGPolyElement.h \
2487     svg/SVGPolygonElement.h \
2488     svg/SVGPolylineElement.h \
2489     svg/SVGPreserveAspectRatio.h \
2490     svg/SVGRadialGradientElement.h \
2491     svg/SVGRectElement.h \
2492     svg/SVGScriptElement.h \
2493     svg/SVGSetElement.h \
2494     svg/SVGStopElement.h \
2495     svg/SVGStringList.h \
2496     svg/SVGStylable.h \
2497     svg/SVGStyledElement.h \
2498     svg/SVGStyledLocatableElement.h \
2499     svg/SVGStyledTransformableElement.h \
2500     svg/SVGStyleElement.h \
2501     svg/SVGSVGElement.h \
2502     svg/SVGSwitchElement.h \
2503     svg/SVGSymbolElement.h \
2504     svg/SVGTests.h \
2505     svg/SVGTextContentElement.h \
2506     svg/SVGTextElement.h \
2507     svg/SVGTextPathElement.h \
2508     svg/SVGTextPositioningElement.h \
2509     svg/SVGTitleElement.h \
2510     svg/SVGTransformable.h \
2511     svg/SVGTransformDistance.h \
2512     svg/SVGTransform.h \
2513     svg/SVGTransformList.h \
2514     svg/SVGTRefElement.h \
2515     svg/SVGTSpanElement.h \
2516     svg/SVGURIReference.h \
2517     svg/SVGUseElement.h \
2518     svg/SVGViewElement.h \
2519     svg/SVGViewSpec.h \
2520     svg/SVGVKernElement.h \
2521     svg/SVGZoomAndPan.h \
2522     svg/SVGZoomEvent.h \
2523     wml/WMLAccessElement.h \
2524     wml/WMLAElement.h \
2525     wml/WMLAnchorElement.h \
2526     wml/WMLBRElement.h \
2527     wml/WMLCardElement.h \
2528     wml/WMLDocument.h \
2529     wml/WMLDoElement.h \
2530     wml/WMLElement.h \
2531     wml/WMLErrorHandling.h \
2532     wml/WMLEventHandlingElement.h \
2533     wml/WMLFieldSetElement.h \
2534     wml/WMLFormControlElement.h \
2535     wml/WMLGoElement.h \
2536     wml/WMLImageElement.h \
2537     wml/WMLImageLoader.h \
2538     wml/WMLInputElement.h \
2539     wml/WMLInsertedLegendElement.h \
2540     wml/WMLIntrinsicEvent.h \
2541     wml/WMLIntrinsicEventHandler.h \
2542     wml/WMLMetaElement.h \
2543     wml/WMLNoopElement.h \
2544     wml/WMLOnEventElement.h \
2545     wml/WMLOptGroupElement.h \
2546     wml/WMLOptionElement.h \
2547     wml/WMLPageState.h \
2548     wml/WMLPElement.h \
2549     wml/WMLPostfieldElement.h \
2550     wml/WMLPrevElement.h \
2551     wml/WMLRefreshElement.h \
2552     wml/WMLSelectElement.h \
2553     wml/WMLSetvarElement.h \
2554     wml/WMLTableElement.h \
2555     wml/WMLTaskElement.h \
2556     wml/WMLTemplateElement.h \
2557     wml/WMLTimerElement.h \
2558     wml/WMLVariables.h \
2559     workers/AbstractWorker.h \
2560     workers/DedicatedWorkerContext.h \
2561     workers/DedicatedWorkerThread.h \
2562     workers/SharedWorker.h \
2563     workers/WorkerContext.h \
2564     workers/Worker.h \
2565     workers/WorkerLocation.h \
2566     workers/WorkerMessagingProxy.h \
2567     workers/WorkerRunLoop.h \
2568     workers/WorkerScriptLoader.h \
2569     workers/WorkerThread.h \
2570     xml/DOMParser.h \
2571     xml/NativeXPathNSResolver.h \
2572     xml/XMLHttpRequest.h \
2573     xml/XMLHttpRequestUpload.h \
2574     xml/XMLSerializer.h \
2575     xml/XPathEvaluator.h \
2576     xml/XPathExpression.h \
2577     xml/XPathExpressionNode.h \
2578     xml/XPathFunctions.h \
2579     xml/XPathNamespace.h \
2580     xml/XPathNodeSet.h \
2581     xml/XPathNSResolver.h \
2582     xml/XPathParser.h \
2583     xml/XPathPath.h \
2584     xml/XPathPredicate.h \
2585     xml/XPathResult.h \
2586     xml/XPathStep.h \
2587     xml/XPathUtil.h \
2588     xml/XPathValue.h \
2589     xml/XPathVariableReference.h \
2590     xml/XSLImportRule.h \
2591     xml/XSLStyleSheet.h \
2592     xml/XSLTExtensions.h \
2593     xml/XSLTProcessor.h \
2594     xml/XSLTUnicodeSort.h \
2595     $$PWD/../WebKit/qt/Api/qwebplugindatabase_p.h \
2596     $$PWD/../WebKit/qt/WebCoreSupport/InspectorServerQt.h \
2597     $$PWD/../WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h \
2598     $$PWD/../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h \
2599     $$PWD/../WebKit/qt/WebCoreSupport/FrameNetworkingContextQt.h \
2600     $$PWD/../WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.h \
2601     $$PWD/../WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.h \
2602     $$PWD/../WebKit/qt/WebCoreSupport/PageClientQt.h \
2603     $$PWD/../WebKit/qt/WebCoreSupport/QtPlatformPlugin.h \
2604     $$PWD/../WebKit/qt/WebCoreSupport/PopupMenuQt.h \
2605     $$PWD/../WebKit/qt/WebCoreSupport/SearchPopupMenuQt.h \
2606     $$PWD/../WebKit/qt/WebCoreSupport/WebPlatformStrategies.h \
2607     $$PWD/platform/network/qt/DnsPrefetchHelper.h
2608
2609 v8 {
2610     SOURCES += \
2611        bindings/v8/ScriptControllerQt.cpp \
2612        platform/qt/PlatformBridgeQt.cpp
2613 } else {
2614     SOURCES += \
2615        bindings/js/ScriptControllerQt.cpp \
2616        bridge/qt/qt_class.cpp \
2617        bridge/qt/qt_instance.cpp \
2618        bridge/qt/qt_pixmapruntime.cpp \
2619        bridge/qt/qt_runtime.cpp
2620 }
2621
2622 SOURCES += \
2623     accessibility/qt/AccessibilityObjectQt.cpp \
2624     page/qt/DragControllerQt.cpp \
2625     page/qt/EventHandlerQt.cpp \
2626     page/qt/FrameQt.cpp \
2627     platform/graphics/qt/TransformationMatrixQt.cpp \
2628     platform/graphics/qt/ColorQt.cpp \
2629     platform/graphics/qt/ContextShadowQt.cpp \
2630     platform/graphics/qt/FontQt.cpp \
2631     platform/graphics/qt/FontPlatformDataQt.cpp \
2632     platform/graphics/qt/FloatPointQt.cpp \
2633     platform/graphics/qt/FloatRectQt.cpp \
2634     platform/graphics/qt/GradientQt.cpp \
2635     platform/graphics/qt/GraphicsContextQt.cpp \
2636     platform/graphics/qt/IconQt.cpp \
2637     platform/graphics/qt/ImageBufferQt.cpp \
2638     platform/graphics/qt/ImageDecoderQt.cpp \
2639     platform/graphics/qt/ImageQt.cpp \
2640     platform/graphics/qt/IntPointQt.cpp \
2641     platform/graphics/qt/IntRectQt.cpp \
2642     platform/graphics/qt/IntSizeQt.cpp \
2643     platform/graphics/qt/PathQt.cpp \
2644     platform/graphics/qt/PatternQt.cpp \
2645     platform/graphics/qt/StillImageQt.cpp \
2646     platform/network/qt/ResourceHandleQt.cpp \
2647     platform/network/qt/ResourceRequestQt.cpp \
2648     platform/network/qt/DnsPrefetchHelper.cpp \
2649     platform/network/qt/ProxyServerQt.cpp \
2650     platform/network/qt/QNetworkReplyHandler.cpp \
2651     editing/qt/EditorQt.cpp \
2652     editing/qt/SmartReplaceQt.cpp \
2653     platform/Cursor.cpp \
2654     platform/qt/ClipboardQt.cpp \
2655     platform/qt/ContextMenuItemQt.cpp \
2656     platform/qt/ContextMenuQt.cpp \
2657     platform/qt/CookieJarQt.cpp \
2658     platform/qt/CursorQt.cpp \
2659     platform/qt/DragDataQt.cpp \
2660     platform/qt/DragImageQt.cpp \
2661     platform/qt/EventLoopQt.cpp \
2662     platform/qt/FileChooserQt.cpp \
2663     platform/qt/FileSystemQt.cpp \
2664     platform/qt/SharedBufferQt.cpp \
2665     platform/graphics/qt/FontCacheQt.cpp \
2666     platform/graphics/qt/FontCustomPlatformDataQt.cpp \
2667     platform/graphics/qt/GlyphPageTreeNodeQt.cpp \
2668     platform/graphics/qt/SimpleFontDataQt.cpp \
2669     platform/graphics/qt/TileQt.cpp \
2670     platform/qt/KURLQt.cpp \
2671     platform/qt/MIMETypeRegistryQt.cpp \
2672     platform/qt/PasteboardQt.cpp \
2673     platform/qt/PlatformKeyboardEventQt.cpp \
2674     platform/qt/PlatformMouseEventQt.cpp \
2675     platform/qt/PlatformScreenQt.cpp \
2676     platform/qt/PlatformTouchEventQt.cpp \
2677     platform/qt/PlatformTouchPointQt.cpp \
2678     platform/qt/RenderThemeQt.cpp \
2679     platform/qt/ScrollbarQt.cpp \
2680     platform/qt/ScrollbarThemeQt.cpp \
2681     platform/qt/ScrollViewQt.cpp \
2682     platform/qt/SharedTimerQt.cpp \
2683     platform/qt/SoundQt.cpp \
2684     platform/qt/LoggingQt.cpp \
2685     platform/qt/LanguageQt.cpp \
2686     platform/qt/TemporaryLinkStubsQt.cpp \
2687     platform/text/qt/TextBoundariesQt.cpp \
2688     platform/text/qt/TextBreakIteratorQt.cpp \
2689     platform/text/qt/TextCodecQt.cpp \
2690     platform/qt/WheelEventQt.cpp \
2691     platform/qt/WidgetQt.cpp \
2692     ../WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp \
2693     ../WebKit/qt/WebCoreSupport/ChromeClientQt.cpp \
2694     ../WebKit/qt/WebCoreSupport/ContextMenuClientQt.cpp \
2695     ../WebKit/qt/WebCoreSupport/DragClientQt.cpp \
2696     ../WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.cpp \
2697     ../WebKit/qt/WebCoreSupport/EditorClientQt.cpp \
2698     ../WebKit/qt/WebCoreSupport/EditCommandQt.cpp \
2699     ../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp \
2700     ../WebKit/qt/WebCoreSupport/FrameNetworkingContextQt.cpp \
2701     ../WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp \
2702     ../WebKit/qt/WebCoreSupport/InspectorClientQt.cpp \
2703     ../WebKit/qt/WebCoreSupport/InspectorServerQt.cpp \
2704     ../WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp \
2705     ../WebKit/qt/WebCoreSupport/PageClientQt.cpp \
2706     ../WebKit/qt/WebCoreSupport/PopupMenuQt.cpp \
2707     ../WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp \
2708     ../WebKit/qt/WebCoreSupport/SearchPopupMenuQt.cpp \
2709     ../WebKit/qt/WebCoreSupport/WebPlatformStrategies.cpp \
2710     ../WebKit/qt/Api/qwebframe.cpp \
2711     ../WebKit/qt/Api/qgraphicswebview.cpp \
2712     ../WebKit/qt/Api/qwebpage.cpp \
2713     ../WebKit/qt/Api/qwebview.cpp \
2714     ../WebKit/qt/Api/qwebelement.cpp \
2715     ../WebKit/qt/Api/qwebhistory.cpp \
2716     ../WebKit/qt/Api/qwebsettings.cpp \
2717     ../WebKit/qt/Api/qwebhistoryinterface.cpp \
2718     ../WebKit/qt/Api/qwebplugindatabase.cpp \
2719     ../WebKit/qt/Api/qwebpluginfactory.cpp \
2720     ../WebKit/qt/Api/qwebsecurityorigin.cpp \
2721     ../WebKit/qt/Api/qwebscriptworld.cpp \
2722     ../WebKit/qt/Api/qwebdatabase.cpp \
2723     ../WebKit/qt/Api/qwebinspector.cpp \
2724     ../WebKit/qt/Api/qwebkitversion.cpp
2725
2726 contains(DEFINES, WTF_USE_QT_MOBILE_THEME=1) {
2727     HEADERS += platform/qt/QtMobileWebStyle.h
2728     SOURCES += platform/qt/QtMobileWebStyle.cpp
2729 }
2730
2731 maemo5 {
2732     HEADERS += ../WebKit/qt/WebCoreSupport/QtMaemoWebPopup.h
2733     SOURCES += ../WebKit/qt/WebCoreSupport/QtMaemoWebPopup.cpp
2734 }
2735
2736
2737     win32-*|wince* {
2738         HEADERS += platform/ScrollAnimatorWin.h
2739         SOURCES += platform/ScrollAnimatorWin.cpp \
2740                    platform/win/SystemTimeWin.cpp \
2741                    platform/graphics/win/TransformationMatrixWin.cpp
2742     }
2743
2744     mac {
2745         SOURCES += \
2746             platform/text/cf/StringCF.cpp \
2747             platform/text/cf/StringImplCF.cpp
2748         LIBS_PRIVATE += -framework Carbon -framework AppKit
2749     }
2750
2751     win32-* {
2752         LIBS += -lgdi32
2753         LIBS += -lole32
2754         LIBS += -luser32
2755     }
2756     wince* {
2757         LIBS += -lmmtimer
2758         LIBS += -lole32
2759     }
2760
2761 contains (CONFIG, text_breaking_with_icu) {
2762     SOURCES += platform/text/TextBreakIteratorICU.cpp
2763     LIBS += -licuuc
2764 }
2765
2766 contains(DEFINES, ENABLE_NETSCAPE_PLUGIN_API=1) {
2767
2768     SOURCES += plugins/npapi.cpp
2769
2770     symbian {
2771         SOURCES += \
2772         plugins/symbian/PluginPackageSymbian.cpp \
2773         plugins/symbian/PluginDatabaseSymbian.cpp \
2774         plugins/symbian/PluginViewSymbian.cpp \
2775         plugins/symbian/PluginContainerSymbian.cpp
2776
2777         HEADERS += \
2778         plugins/symbian/PluginContainerSymbian.h \
2779         plugins/symbian/npinterface.h
2780
2781         LIBS += -lefsrv
2782
2783     } else {
2784
2785         unix {
2786     
2787             mac {
2788                 SOURCES += \
2789                     plugins/mac/PluginPackageMac.cpp
2790                 OBJECTIVE_SOURCES += \
2791                     platform/text/mac/StringImplMac.mm \
2792                     platform/mac/WebCoreNSStringExtras.mm \
2793                     plugins/mac/PluginViewMac.mm
2794                 INCLUDEPATH += platform/mac
2795                 # Note: XP_MACOSX is defined in npapi.h
2796             } else {
2797                 !embedded {
2798                     CONFIG += x11
2799                     LIBS += -lXrender
2800                 }
2801                 maemo5 {
2802                     DEFINES += MOZ_PLATFORM_MAEMO=5
2803                 }
2804                 contains(DEFINES, Q_WS_MAEMO_6) {
2805                     DEFINES += MOZ_PLATFORM_MAEMO=6
2806                 }
2807                 SOURCES += \
2808                     plugins/qt/PluginContainerQt.cpp \
2809                     plugins/qt/PluginPackageQt.cpp \
2810                     plugins/qt/PluginViewQt.cpp
2811                 HEADERS += \
2812                     plugins/qt/PluginContainerQt.h
2813                 DEFINES += XP_UNIX
2814                 DEFINES += ENABLE_NETSCAPE_PLUGIN_METADATA_CACHE=1
2815             }
2816         }
2817     
2818         win32-* {
2819             INCLUDEPATH += $$PWD/plugins/win \
2820                            $$PWD/platform/win \
2821                            $$PWD/platform/graphics/win
2822     
2823             SOURCES += plugins/win/PluginDatabaseWin.cpp \
2824                        plugins/win/PluginPackageWin.cpp \
2825                        plugins/win/PluginMessageThrottlerWin.cpp \
2826                        plugins/win/PluginViewWin.cpp \
2827                        platform/win/BitmapInfo.cpp \
2828                        platform/win/WebCoreInstanceHandle.cpp
2829     
2830             LIBS += \
2831                 -ladvapi32 \
2832                 -lgdi32 \
2833                 -lshell32 \
2834                 -lshlwapi \
2835                 -luser32 \
2836                 -lversion
2837         }
2838     }
2839
2840 } else {
2841     SOURCES += \
2842         plugins/PluginPackageNone.cpp \
2843         plugins/PluginViewNone.cpp
2844 }
2845
2846 contains(DEFINES, ENABLE_SQLITE=1) {
2847     !system-sqlite:exists( $${SQLITE3SRCDIR}/sqlite3.c ) {
2848             # Build sqlite3 into WebCore from source
2849             # somewhat copied from $$QT_SOURCE_TREE/src/plugins/sqldrivers/sqlite/sqlite.pro
2850             INCLUDEPATH += $${SQLITE3SRCDIR}
2851             SOURCES += $${SQLITE3SRCDIR}/sqlite3.c
2852             DEFINES += SQLITE_CORE SQLITE_OMIT_LOAD_EXTENSION SQLITE_OMIT_COMPLETE
2853             CONFIG(release, debug|release): DEFINES *= NDEBUG
2854             contains(DEFINES, ENABLE_SINGLE_THREADED=1): DEFINES += SQLITE_THREADSAFE=0
2855     } else {
2856         # Use sqlite3 from the underlying OS
2857         CONFIG(QTDIR_build) {
2858             QMAKE_CXXFLAGS *= $$QT_CFLAGS_SQLITE
2859             LIBS *= $$QT_LFLAGS_SQLITE
2860         } else {
2861             INCLUDEPATH += $${SQLITE3SRCDIR}
2862             LIBS += -lsqlite3
2863         }
2864     }
2865
2866     wince*:DEFINES += HAVE_LOCALTIME_S=0
2867
2868     SOURCES += \
2869         platform/sql/SQLiteAuthorizer.cpp \
2870         platform/sql/SQLiteDatabase.cpp \
2871         platform/sql/SQLiteFileSystem.cpp \
2872         platform/sql/SQLiteStatement.cpp \
2873         platform/sql/SQLiteTransaction.cpp \
2874         platform/sql/SQLValue.cpp \
2875         storage/AbstractDatabase.cpp \
2876         storage/Database.cpp \
2877         storage/DatabaseAuthorizer.cpp \
2878         storage/DatabaseSync.cpp
2879 }
2880
2881
2882 contains(DEFINES, ENABLE_DATABASE=1) {
2883     SOURCES += \
2884         storage/ChangeVersionWrapper.cpp \
2885         storage/DatabaseTask.cpp \
2886         storage/DatabaseThread.cpp \
2887         storage/DatabaseTracker.cpp \
2888         storage/OriginQuotaManager.cpp \
2889         storage/OriginUsageRecord.cpp \
2890         storage/SQLResultSet.cpp \
2891         storage/SQLResultSetRowList.cpp \
2892         storage/SQLStatement.cpp \
2893         storage/SQLStatementSync.cpp \
2894         storage/SQLTransaction.cpp \
2895         storage/SQLTransactionClient.cpp \
2896         storage/SQLTransactionCoordinator.cpp \
2897         storage/SQLTransactionSync.cpp
2898
2899     !v8 {
2900         SOURCES += \
2901             bindings/js/JSCustomSQLStatementErrorCallback.cpp \
2902             bindings/js/JSSQLResultSetRowListCustom.cpp \
2903             bindings/js/JSSQLTransactionCustom.cpp \
2904             bindings/js/JSSQLTransactionSyncCustom.cpp
2905     }
2906 }
2907
2908 contains(DEFINES, ENABLE_INDEXED_DATABASE=1) {
2909     !v8 {
2910         HEADERS += \
2911             bindings/js/IDBBindingUtilities.h \
2912     }
2913
2914     HEADERS += \
2915         storage/IDBAny.h \
2916         storage/IDBCallbacks.h \
2917         storage/IDBCursor.h \
2918         storage/IDBCursorBackendImpl.h \
2919         storage/IDBCursorBackendInterface.h \
2920         storage/IDBDatabase.h \
2921         storage/IDBDatabaseBackendImpl.h \
2922         storage/IDBDatabaseBackendInterface.h \
2923         storage/IDBDatabaseError.h \
2924         storage/IDBDatabaseException.h \
2925         storage/IDBErrorEvent.h \
2926         storage/IDBEvent.h \
2927         storage/IDBFactory.h \
2928         storage/IDBFactoryBackendInterface.h \
2929         storage/IDBFactoryBackendImpl.h \
2930         storage/IDBIndex.h \
2931         storage/IDBIndexBackendInterface.h \
2932         storage/IDBIndexBackendImpl.h \
2933         storage/IDBKey.h \
2934         storage/IDBKeyRange.h \
2935         storage/IDBObjectStore.h \
2936         storage/IDBObjectStoreBackendImpl.h \
2937         storage/IDBObjectStoreBackendInterface.h \
2938         storage/IDBRequest.h \
2939         storage/IDBSuccessEvent.h \
2940         storage/IDBTransaction.h \
2941         storage/IDBTransactionBackendInterface.h
2942
2943     !v8 {
2944         SOURCES += \
2945             bindings/js/IDBBindingUtilities.cpp \
2946             bindings/js/JSIDBAnyCustom.cpp \
2947             bindings/js/JSIDBKeyCustom.cpp
2948     }
2949
2950     SOURCES += \
2951         storage/IDBAny.cpp \
2952         storage/IDBCursor.cpp \
2953         storage/IDBCursorBackendImpl.cpp \
2954         storage/IDBDatabase.cpp \
2955         storage/IDBDatabaseBackendImpl.cpp \
2956         storage/IDBErrorEvent.cpp \
2957         storage/IDBEvent.cpp \
2958         storage/IDBFactory.cpp \
2959         storage/IDBFactoryBackendInterface.cpp \
2960         storage/IDBFactoryBackendImpl.cpp \
2961         storage/IDBIndex.cpp \
2962         storage/IDBIndexBackendImpl.cpp \
2963         storage/IDBKey.cpp \
2964         storage/IDBKeyRange.cpp \
2965         storage/IDBObjectStore.cpp \
2966         storage/IDBObjectStoreBackendImpl.cpp \
2967         storage/IDBRequest.cpp \
2968         storage/IDBSuccessEvent.cpp \
2969         storage/IDBTransaction.cpp
2970 }
2971
2972 contains(DEFINES, ENABLE_DOM_STORAGE=1) {
2973     HEADERS += \
2974         storage/AbstractDatabase.h \
2975         storage/ChangeVersionWrapper.h \
2976         storage/DatabaseAuthorizer.h \
2977         storage/Database.h \
2978         storage/DatabaseCallback.h \
2979         storage/DatabaseSync.h \
2980         storage/DatabaseTask.h \
2981         storage/DatabaseThread.h \
2982         storage/DatabaseTracker.h \
2983         storage/LocalStorageTask.h \
2984         storage/LocalStorageThread.h \
2985         storage/OriginQuotaManager.h \
2986         storage/OriginUsageRecord.h \
2987         storage/SQLResultSet.h \
2988         storage/SQLResultSetRowList.h \
2989         storage/SQLStatement.h \
2990         storage/SQLStatementSync.h \
2991         storage/SQLTransaction.h \
2992         storage/SQLTransactionClient.h \
2993         storage/SQLTransactionCoordinator.h \
2994         storage/SQLTransactionSync.h \
2995         storage/SQLTransactionSyncCallback.h \
2996         storage/StorageArea.h \
2997         storage/StorageAreaImpl.h \
2998         storage/StorageAreaSync.h \
2999         storage/StorageEvent.h \
3000         storage/StorageEventDispatcher.h \
3001         storage/Storage.h \
3002         storage/StorageMap.h \
3003         storage/StorageNamespace.h \
3004         storage/StorageNamespaceImpl.h \
3005         storage/StorageSyncManager.h
3006
3007     !v8 {
3008         SOURCES += \
3009             bindings/js/JSStorageCustom.cpp
3010     }
3011     SOURCES += \
3012         storage/LocalStorageTask.cpp \
3013         storage/LocalStorageThread.cpp \
3014         storage/Storage.cpp \
3015         storage/StorageAreaImpl.cpp \
3016         storage/StorageAreaSync.cpp \
3017         storage/StorageEvent.cpp \
3018         storage/StorageEventDispatcher.cpp \
3019         storage/StorageMap.cpp \
3020         storage/StorageNamespace.cpp \
3021         storage/StorageNamespaceImpl.cpp \
3022         storage/StorageSyncManager.cpp
3023 }
3024
3025 contains(DEFINES, ENABLE_FILE_SYSTEM=1) {
3026     HEADERS += \
3027         fileapi/AsyncFileWriter.h \
3028         fileapi/DirectoryEntry.h \
3029         fileapi/DirectoryEntrySync.h \
3030         fileapi/DirectoryReader.h \
3031         fileapi/DirectoryReaderBase.h \
3032         fileapi/DirectoryReaderSync.h \
3033         fileapi/DOMFilePath.h \
3034         fileapi/DOMFileSystem.h \
3035         fileapi/DOMFileSystemBase.h \
3036         fileapi/DOMFileSystemSync.h \
3037         fileapi/EntriesCallback.h \
3038         fileapi/Entry.h \
3039         fileapi/EntryArray.h \
3040         fileapi/EntryArraySync.h \
3041         fileapi/EntryBase.h \
3042         fileapi/EntryCallback.h \
3043         fileapi/EntrySync.h \
3044         fileapi/ErrorCallback.h \
3045         fileapi/FileCallback.h \
3046         fileapi/FileEntry.h \
3047         fileapi/FileEntrySync.h \
3048         fileapi/FileSystemCallback.h \
3049         fileapi/FileSystemCallbacks.h \
3050         fileapi/FileWriter.h \
3051         fileapi/FileWriterCallback.h \
3052         fileapi/FileWriterClient.h \
3053         fileapi/FileWriterSync.h \
3054         fileapi/Flags.h \
3055         fileapi/LocalFileSystem.h \
3056         fileapi/Metadata.h \
3057         fileapi/MetadataCallback.h \
3058         platform/AsyncFileSystem.h \
3059         platform/AsyncFileSystemCallbacks.h \
3060         platform/FileMetadata.h
3061
3062     SOURCES += \
3063         bindings/js/JSDirectoryEntryCustom.cpp \
3064         bindings/js/JSDirectoryEntrySyncCustom.cpp \
3065         bindings/js/JSEntryCustom.cpp \
3066         bindings/js/JSEntrySyncCustom.cpp \
3067         fileapi/DirectoryEntry.cpp \
3068         fileapi/DirectoryEntrySync.cpp \
3069         fileapi/DirectoryReader.cpp \
3070         fileapi/DirectoryReaderSync.cpp \
3071         fileapi/DOMFilePath.cpp \
3072         fileapi/DOMFileSystem.cpp \
3073         fileapi/DOMFileSystemBase.cpp \
3074         fileapi/DOMFileSystemSync.cpp \
3075         fileapi/Entry.cpp \
3076         fileapi/EntryArray.cpp \
3077         fileapi/EntryArraySync.cpp \
3078         fileapi/EntrySync.cpp \
3079         fileapi/FileEntry.cpp \
3080         fileapi/FileEntrySync.cpp \
3081         fileapi/FileSystemCallbacks.cpp \
3082         fileapi/FileWriter.cpp \
3083         fileapi/FileWriterSync.cpp \
3084         fileapi/LocalFileSystem.cpp \
3085         platform/AsyncFileSystem.cpp
3086 }
3087
3088 contains(DEFINES, ENABLE_ICONDATABASE=1) {
3089     SOURCES += \
3090         loader/icon/IconDatabase.cpp \
3091         loader/icon/IconRecord.cpp \
3092         loader/icon/PageURLRecord.cpp
3093 } else {
3094     SOURCES += \
3095         loader/icon/IconDatabaseNone.cpp
3096 }
3097
3098 contains(DEFINES, ENABLE_WORKERS=1) {
3099     !v8 {
3100         SOURCES += \
3101             bindings/js/JSDedicatedWorkerContextCustom.cpp \
3102             bindings/js/JSWorkerContextBase.cpp \
3103             bindings/js/JSWorkerContextCustom.cpp \
3104             bindings/js/JSWorkerCustom.cpp \
3105             bindings/js/WorkerScriptController.cpp
3106     }
3107     SOURCES += \
3108         loader/WorkerThreadableLoader.cpp \
3109         page/WorkerNavigator.cpp \
3110         workers/AbstractWorker.cpp \
3111         workers/DedicatedWorkerContext.cpp \
3112         workers/DedicatedWorkerThread.cpp \
3113         workers/Worker.cpp \
3114         workers/WorkerContext.cpp \
3115         workers/WorkerLocation.cpp \
3116         workers/WorkerMessagingProxy.cpp \
3117         workers/WorkerRunLoop.cpp \
3118         workers/WorkerThread.cpp \
3119         workers/WorkerScriptLoader.cpp
3120 }
3121
3122 contains(DEFINES, ENABLE_SHARED_WORKERS=1) {
3123     !v8 {
3124         SOURCES += \
3125             bindings/js/JSSharedWorkerCustom.cpp
3126     }
3127     SOURCES += \
3128         workers/DefaultSharedWorkerRepository.cpp \
3129         workers/SharedWorker.cpp \
3130         workers/SharedWorkerContext.cpp \
3131         workers/SharedWorkerThread.cpp
3132 }
3133
3134 contains(DEFINES, ENABLE_INPUT_SPEECH=1) {
3135     SOURCES += \
3136         page/SpeechInput.cpp \
3137         page/SpeechInputResult.cpp \
3138         rendering/RenderInputSpeech.cpp
3139 }
3140
3141 contains(DEFINES, ENABLE_VIDEO=1) {
3142     SOURCES += \
3143         html/HTMLAudioElement.cpp \
3144         html/HTMLMediaElement.cpp \
3145         html/HTMLSourceElement.cpp \
3146         html/HTMLVideoElement.cpp \
3147         html/TimeRanges.cpp \
3148         platform/graphics/MediaPlayer.cpp \
3149         rendering/MediaControlElements.cpp \
3150         rendering/RenderVideo.cpp \
3151         rendering/RenderMedia.cpp
3152
3153     !v8 {
3154         SOURCES += \
3155             bindings/js/JSAudioConstructor.cpp
3156     }
3157
3158     contains(DEFINES, USE_GSTREAMER=1) {
3159         HEADERS += \
3160             platform/graphics/gstreamer/DataSourceGStreamer.h \
3161             platform/graphics/gstreamer/GOwnPtrGStreamer.h \
3162             platform/graphics/gstreamer/GStreamerGWorld.h \
3163             platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h \
3164             platform/graphics/gstreamer/VideoSinkGStreamer.h \
3165             platform/graphics/gstreamer/WebKitWebSourceGStreamer.h \
3166             platform/graphics/gstreamer/PlatformVideoWindow.h \
3167             platform/graphics/gstreamer/PlatformVideoWindowPrivate.h \
3168             platform/graphics/gstreamer/ImageGStreamer.h
3169         SOURCES += \
3170             platform/graphics/gstreamer/DataSourceGStreamer.cpp \
3171             platform/graphics/gstreamer/GOwnPtrGStreamer.cpp \
3172             platform/graphics/gstreamer/GStreamerGWorld.cpp \
3173             platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp \
3174             platform/graphics/gstreamer/VideoSinkGStreamer.cpp \
3175             platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp \
3176             platform/graphics/gstreamer/PlatformVideoWindowQt.cpp \
3177             platform/graphics/gstreamer/ImageGStreamerQt.cpp
3178
3179         DEFINES += WTF_USE_GSTREAMER=1
3180         DEFINES += ENABLE_GLIB_SUPPORT=1
3181
3182         INCLUDEPATH += $$PWD/platform/graphics/gstreamer
3183
3184         PKGCONFIG += glib-2.0 gio-2.0 gstreamer-0.10 gstreamer-app-0.10 gstreamer-base-0.10 gstreamer-interfaces-0.10 gstreamer-pbutils-0.10 gstreamer-plugins-base-0.10 gstreamer-video-0.10
3185      } else:contains(MOBILITY_CONFIG, multimedia) {
3186         HEADERS += platform/graphics/qt/MediaPlayerPrivateQt.h
3187         SOURCES += platform/graphics/qt/MediaPlayerPrivateQt.cpp
3188
3189         CONFIG *= mobility
3190         MOBILITY += multimedia
3191         DEFINES += WTF_USE_QT_MULTIMEDIA
3192      } else:contains(QT_CONFIG, phonon) {
3193         HEADERS += \
3194             platform/graphics/qt/MediaPlayerPrivatePhonon.h
3195
3196         SOURCES += \
3197             platform/graphics/qt/MediaPlayerPrivatePhonon.cpp
3198
3199         # Add phonon manually to prevent it from coming first in
3200         # the include paths, as Phonon's path.h conflicts with
3201         # WebCore's Path.h on case-insensitive filesystems.
3202         qtAddLibrary(phonon)
3203         INCLUDEPATH -= $$QMAKE_INCDIR_QT/phonon
3204         INCLUDEPATH += $$QMAKE_INCDIR_QT/phonon
3205         mac {
3206             INCLUDEPATH -= $$QMAKE_LIBDIR_QT/phonon.framework/Headers
3207             INCLUDEPATH += $$QMAKE_LIBDIR_QT/phonon.framework/Headers
3208         }
3209     }
3210 }
3211
3212 contains(DEFINES, ENABLE_XPATH=1) {
3213     SOURCES += \
3214         xml/NativeXPathNSResolver.cpp \
3215         xml/XPathEvaluator.cpp \
3216         xml/XPathExpression.cpp \
3217         xml/XPathExpressionNode.cpp \
3218         xml/XPathFunctions.cpp \
3219         xml/XPathNamespace.cpp \
3220         xml/XPathNodeSet.cpp \
3221         xml/XPathNSResolver.cpp \
3222         xml/XPathParser.cpp \
3223         xml/XPathPath.cpp \
3224         xml/XPathPredicate.cpp \
3225         xml/XPathResult.cpp \
3226         xml/XPathStep.cpp \
3227         xml/XPathUtil.cpp \
3228         xml/XPathValue.cpp \
3229         xml/XPathVariableReference.cpp
3230 }
3231
3232 unix:!mac:CONFIG += link_pkgconfig
3233
3234 contains(DEFINES, ENABLE_XSLT=1) {
3235     tobe|!tobe: QT += xmlpatterns
3236
3237     v8 {
3238         SOURCES += \
3239             bindings/v8/custom/V8XSLTProcessorCustom.cpp
3240     } else {
3241          SOURCES += \
3242             bindings/js/JSXSLTProcessorCustom.cpp
3243     }
3244     SOURCES += \
3245         dom/TransformSourceQt.cpp \
3246         xml/XSLStyleSheetQt.cpp \
3247         xml/XSLTProcessor.cpp \
3248         xml/XSLTProcessorQt.cpp
3249 }
3250
3251 contains(DEFINES, ENABLE_FILTERS=1) {
3252     SOURCES += \
3253         platform/graphics/filters/FEBlend.cpp \
3254         platform/graphics/filters/FEColorMatrix.cpp \
3255         platform/graphics/filters/FEComponentTransfer.cpp \
3256         platform/graphics/filters/FEComposite.cpp \
3257         platform/graphics/filters/FEConvolveMatrix.cpp \
3258         platform/graphics/filters/FEDiffuseLighting.cpp \
3259         platform/graphics/filters/FEDisplacementMap.cpp \
3260         platform/graphics/filters/FEFlood.cpp \
3261         platform/graphics/filters/FEGaussianBlur.cpp \
3262         platform/graphics/filters/FELighting.cpp \
3263         platform/graphics/filters/FEMerge.cpp \
3264         platform/graphics/filters/FEMorphology.cpp \
3265         platform/graphics/filters/FEOffset.cpp \
3266         platform/graphics/filters/FESpecularLighting.cpp \
3267         platform/graphics/filters/FETile.cpp \
3268         platform/graphics/filters/FETurbulence.cpp \
3269         platform/graphics/filters/FilterEffect.cpp \
3270         platform/graphics/filters/LightSource.cpp \
3271         platform/graphics/filters/SourceAlpha.cpp \
3272         platform/graphics/filters/SourceGraphic.cpp
3273 }
3274
3275 contains(DEFINES, ENABLE_MATHML=1) {
3276     SOURCES += \
3277         mathml/MathMLElement.cpp \
3278         mathml/MathMLInlineContainerElement.cpp \
3279         mathml/MathMLMathElement.cpp \
3280         mathml/MathMLTextElement.cpp \
3281         mathml/RenderMathMLBlock.cpp \
3282         mathml/RenderMathMLFenced.cpp \
3283         mathml/RenderMathMLFraction.cpp \
3284         mathml/RenderMathMLMath.cpp \
3285         mathml/RenderMathMLOperator.cpp \
3286         mathml/RenderMathMLRoot.cpp \
3287         mathml/RenderMathMLRow.cpp \
3288         mathml/RenderMathMLSquareRoot.cpp \
3289         mathml/RenderMathMLSubSup.cpp \
3290         mathml/RenderMathMLUnderOver.cpp
3291 }
3292
3293 contains(DEFINES, ENABLE_WML=1) {
3294     SOURCES += \
3295         wml/WMLAElement.cpp \
3296         wml/WMLAccessElement.cpp \
3297         wml/WMLAnchorElement.cpp \
3298         wml/WMLBRElement.cpp \
3299         wml/WMLCardElement.cpp \
3300         wml/WMLDoElement.cpp \
3301         wml/WMLDocument.cpp \
3302         wml/WMLElement.cpp \
3303         wml/WMLErrorHandling.cpp \
3304         wml/WMLEventHandlingElement.cpp \
3305         wml/WMLFormControlElement.cpp \
3306         wml/WMLFieldSetElement.cpp \
3307         wml/WMLGoElement.cpp \
3308         wml/WMLImageElement.cpp \
3309         wml/WMLImageLoader.cpp \
3310         wml/WMLInputElement.cpp \
3311         wml/WMLInsertedLegendElement.cpp \
3312         wml/WMLIntrinsicEvent.cpp \
3313         wml/WMLIntrinsicEventHandler.cpp \
3314         wml/WMLMetaElement.cpp \
3315         wml/WMLNoopElement.cpp \
3316         wml/WMLOnEventElement.cpp \
3317         wml/WMLPElement.cpp \
3318         wml/WMLOptGroupElement.cpp \
3319         wml/WMLOptionElement.cpp \
3320         wml/WMLPageState.cpp \
3321         wml/WMLPostfieldElement.cpp \
3322         wml/WMLPrevElement.cpp \
3323         wml/WMLRefreshElement.cpp \
3324         wml/WMLSelectElement.cpp \
3325         wml/WMLSetvarElement.cpp \
3326         wml/WMLTableElement.cpp \
3327         wml/WMLTaskElement.cpp \
3328         wml/WMLTemplateElement.cpp \
3329         wml/WMLTimerElement.cpp \
3330         wml/WMLVariables.cpp
3331 }
3332
3333 contains(DEFINES, ENABLE_XHTMLMP=1) {
3334     SOURCES += \
3335         html/HTMLNoScriptElement.cpp
3336 }
3337
3338 contains(DEFINES, ENABLE_QT_BEARER=1) {
3339     HEADERS += \
3340         platform/network/qt/NetworkStateNotifierPrivate.h
3341
3342     SOURCES += \
3343         platform/network/qt/NetworkStateNotifierQt.cpp
3344
3345     # Bearer management is part of Qt 4.7, so don't accidentially
3346     # pull in Qt Mobility when building against >= 4.7
3347     !greaterThan(QT_MINOR_VERSION, 6) {
3348         CONFIG += mobility
3349         MOBILITY += bearer
3350     }
3351 }
3352
3353 contains(DEFINES, ENABLE_GEOLOCATION=1) {
3354     DEFINES += WTF_USE_PREEMPT_GEOLOCATION_PERMISSION
3355     HEADERS += \
3356         platform/qt/GeolocationServiceQt.h
3357     SOURCES += \
3358         platform/qt/GeolocationServiceQt.cpp
3359
3360     CONFIG += mobility
3361     MOBILITY += location
3362
3363     v8 {
3364         SOURCES += \
3365             bindings/v8/custom/V8CustomPositionCallback.cpp \
3366             bindings/v8/custom/V8CustomPositionErrorCallback.cpp \
3367             bindings/v8/custom/V8GeolocationCustom.cpp
3368     }
3369 }
3370
3371 contains(DEFINES, ENABLE_DEVICE_ORIENTATION=1) {
3372     HEADERS += \
3373         ../WebKit/qt/WebCoreSupport/DeviceMotionClientQt.h \
3374         ../WebKit/qt/WebCoreSupport/DeviceMotionProviderQt.h \
3375         ../WebKit/qt/WebCoreSupport/DeviceOrientationClientQt.h \
3376         ../WebKit/qt/WebCoreSupport/DeviceOrientationProviderQt.h \
3377         bindings/generic/RuntimeEnabledFeatures.h
3378     SOURCES += \
3379         ../WebKit/qt/WebCoreSupport/DeviceMotionClientQt.cpp \
3380         ../WebKit/qt/WebCoreSupport/DeviceMotionProviderQt.cpp \
3381         ../WebKit/qt/WebCoreSupport/DeviceOrientationClientQt.cpp \
3382         ../WebKit/qt/WebCoreSupport/DeviceOrientationProviderQt.cpp \
3383         bindings/generic/RuntimeEnabledFeatures.cpp
3384
3385     CONFIG += mobility
3386     MOBILITY += sensors
3387 }
3388
3389 contains(DEFINES, ENABLE_SVG=1) {
3390     !v8 {
3391         SOURCES += \
3392     # TODO: this-one-is-not-auto-added! FIXME! tmp/SVGElementFactory.cpp \
3393             bindings/js/JSSVGElementInstanceCustom.cpp \
3394             bindings/js/JSSVGLengthCustom.cpp \
3395             bindings/js/JSSVGPathSegCustom.cpp \
3396             bindings/js/JSSVGPathSegListCustom.cpp
3397     }
3398
3399     SOURCES += \
3400         css/SVGCSSComputedStyleDeclaration.cpp \
3401         css/SVGCSSParser.cpp \
3402         css/SVGCSSStyleSelector.cpp \
3403         rendering/style/SVGRenderStyle.cpp \
3404         rendering/style/SVGRenderStyleDefs.cpp \
3405         rendering/svg/RenderSVGInline.cpp \
3406         rendering/svg/RenderSVGInlineText.cpp \
3407         rendering/svg/RenderSVGPath.cpp \
3408         rendering/svg/RenderSVGTSpan.cpp \
3409         rendering/svg/RenderSVGText.cpp \
3410         rendering/svg/RenderSVGTextPath.cpp \
3411         rendering/svg/SVGInlineFlowBox.cpp \
3412         rendering/svg/SVGInlineTextBox.cpp \
3413         rendering/svg/SVGRootInlineBox.cpp \
3414         rendering/svg/SVGTextChunk.cpp \
3415         rendering/svg/SVGTextChunkBuilder.cpp \
3416         rendering/svg/SVGTextLayoutAttributes.cpp \
3417         rendering/svg/SVGTextLayoutAttributesBuilder.cpp \
3418         rendering/svg/SVGTextLayoutEngine.cpp \
3419         rendering/svg/SVGTextLayoutEngineBaseline.cpp \
3420         rendering/svg/SVGTextLayoutEngineSpacing.cpp \
3421         rendering/svg/SVGTextMetrics.cpp \
3422         rendering/svg/SVGTextQuery.cpp \
3423         rendering/PointerEventsHitRules.cpp \
3424         svg/SVGDocumentExtensions.cpp \
3425         svg/SVGImageLoader.cpp \
3426         svg/ColorDistance.cpp \
3427         svg/SVGAElement.cpp \
3428         svg/SVGAltGlyphElement.cpp \
3429         svg/SVGAngle.cpp \
3430         svg/SVGAnimateColorElement.cpp \
3431         svg/SVGAnimatedPathData.cpp \
3432         svg/SVGAnimateElement.cpp \
3433         svg/SVGAnimateMotionElement.cpp \
3434         svg/SVGAnimateTransformElement.cpp \
3435         svg/SVGAnimationElement.cpp \
3436         svg/SVGCircleElement.cpp \
3437         svg/SVGClipPathElement.cpp \
3438         svg/SVGColor.cpp \
3439         svg/SVGComponentTransferFunctionElement.cpp \
3440         svg/SVGCursorElement.cpp \
3441         svg/SVGDefsElement.cpp \
3442         svg/SVGDescElement.cpp \
3443         svg/SVGDocument.cpp \
3444         svg/SVGElement.cpp \
3445         svg/SVGElementInstance.cpp \
3446         svg/SVGElementInstanceList.cpp \
3447         svg/SVGEllipseElement.cpp \
3448         svg/SVGExternalResourcesRequired.cpp \
3449         svg/SVGFEBlendElement.cpp \
3450         svg/SVGFEColorMatrixElement.cpp \
3451         svg/SVGFEComponentTransferElement.cpp \
3452         svg/SVGFECompositeElement.cpp \
3453         svg/SVGFEConvolveMatrixElement.cpp \
3454         svg/SVGFEDiffuseLightingElement.cpp \
3455         svg/SVGFEDisplacementMapElement.cpp \
3456         svg/SVGFEDistantLightElement.cpp \
3457         svg/SVGFEFloodElement.cpp \
3458         svg/SVGFEFuncAElement.cpp \
3459         svg/SVGFEFuncBElement.cpp \
3460         svg/SVGFEFuncGElement.cpp \
3461         svg/SVGFEFuncRElement.cpp \
3462         svg/SVGFEGaussianBlurElement.cpp \
3463         svg/SVGFEImageElement.cpp \
3464         svg/SVGFELightElement.cpp \
3465         svg/SVGFEMergeElement.cpp \
3466         svg/SVGFEMergeNodeElement.cpp \
3467         svg/SVGFEMorphologyElement.cpp \
3468         svg/SVGFEOffsetElement.cpp \
3469         svg/SVGFEPointLightElement.cpp \
3470         svg/SVGFESpecularLightingElement.cpp \
3471         svg/SVGFESpotLightElement.cpp \
3472         svg/SVGFETileElement.cpp \
3473         svg/SVGFETurbulenceElement.cpp \
3474         svg/SVGFilterElement.cpp \
3475         svg/SVGFilterPrimitiveStandardAttributes.cpp \
3476         svg/SVGFitToViewBox.cpp \
3477         svg/SVGFont.cpp \
3478         svg/SVGFontData.cpp \
3479         svg/SVGFontElement.cpp \
3480         svg/SVGFontFaceElement.cpp \
3481         svg/SVGFontFaceFormatElement.cpp \
3482         svg/SVGFontFaceNameElement.cpp \
3483         svg/SVGFontFaceSrcElement.cpp \
3484         svg/SVGFontFaceUriElement.cpp \
3485         svg/SVGForeignObjectElement.cpp \
3486         svg/SVGGElement.cpp \
3487         svg/SVGGlyphElement.cpp \
3488         svg/SVGGradientElement.cpp \
3489         svg/SVGHKernElement.cpp \
3490         svg/SVGImageElement.cpp \
3491         svg/SVGLangSpace.cpp \
3492         svg/SVGLength.cpp \
3493         svg/SVGLengthList.cpp \
3494         svg/SVGLinearGradientElement.cpp \
3495         svg/SVGLineElement.cpp \
3496         svg/SVGLocatable.cpp \
3497         svg/SVGMarkerElement.cpp \
3498         svg/SVGMaskElement.cpp \
3499         svg/SVGMetadataElement.cpp \
3500         svg/SVGMissingGlyphElement.cpp \
3501         svg/SVGMPathElement.cpp \
3502         svg/SVGNumberList.cpp \
3503         svg/SVGPaint.cpp \
3504         svg/SVGParserUtilities.cpp \
3505         svg/SVGPathBlender.cpp \
3506         svg/SVGPathBuilder.cpp \
3507         svg/SVGPathByteStreamBuilder.cpp \
3508         svg/SVGPathByteStreamSource.cpp \
3509         svg/SVGPathElement.cpp \
3510         svg/SVGPathParser.cpp \
3511         svg/SVGPathParserFactory.cpp \
3512         svg/SVGPathSeg.cpp \
3513         svg/SVGPathSegArc.cpp \
3514         svg/SVGPathSegClosePath.cpp \
3515         svg/SVGPathSegCurvetoCubic.cpp \
3516         svg/SVGPathSegCurvetoCubicSmooth.cpp \
3517         svg/SVGPathSegCurvetoQuadratic.cpp \
3518         svg/SVGPathSegCurvetoQuadraticSmooth.cpp \
3519         svg/SVGPathSegLineto.cpp \
3520         svg/SVGPathSegLinetoHorizontal.cpp \
3521         svg/SVGPathSegLinetoVertical.cpp \
3522         svg/SVGPathSegList.cpp \
3523         svg/SVGPathSegListBuilder.cpp \
3524         svg/SVGPathSegListSource.cpp \
3525         svg/SVGPathSegMoveto.cpp \
3526         svg/SVGPathStringBuilder.cpp \
3527         svg/SVGPathStringSource.cpp \
3528         svg/SVGPathTraversalStateBuilder.cpp \
3529         svg/SVGPatternElement.cpp \
3530         svg/SVGPointList.cpp \
3531         svg/SVGPolyElement.cpp \
3532         svg/SVGPolygonElement.cpp \
3533         svg/SVGPolylineElement.cpp \
3534         svg/SVGPreserveAspectRatio.cpp \
3535         svg/SVGRadialGradientElement.cpp \
3536         svg/SVGRectElement.cpp \
3537         svg/SVGScriptElement.cpp \
3538         svg/SVGSetElement.cpp \
3539         svg/SVGStopElement.cpp \
3540         svg/SVGStringList.cpp \
3541         svg/SVGStylable.cpp \
3542         svg/SVGStyledElement.cpp \
3543         svg/SVGStyledLocatableElement.cpp \
3544         svg/SVGStyledTransformableElement.cpp \
3545         svg/SVGStyleElement.cpp \
3546         svg/SVGSVGElement.cpp \
3547         svg/SVGSwitchElement.cpp \
3548         svg/SVGSymbolElement.cpp \
3549         svg/SVGTests.cpp \
3550         svg/SVGTextContentElement.cpp \
3551         svg/SVGTextElement.cpp \
3552         svg/SVGTextPathElement.cpp \
3553         svg/SVGTextPositioningElement.cpp \
3554         svg/SVGTitleElement.cpp \
3555         svg/SVGTransformable.cpp \
3556         svg/SVGTransform.cpp \
3557         svg/SVGTransformDistance.cpp \
3558         svg/SVGTransformList.cpp \
3559         svg/SVGTRefElement.cpp \
3560         svg/SVGTSpanElement.cpp \
3561         svg/SVGURIReference.cpp \
3562         svg/SVGUseElement.cpp \
3563         svg/SVGViewElement.cpp \
3564         svg/SVGViewSpec.cpp \
3565         svg/SVGVKernElement.cpp \
3566         svg/SVGZoomAndPan.cpp \
3567         svg/SVGZoomEvent.cpp \
3568         svg/animation/SMILTime.cpp \
3569         svg/animation/SMILTimeContainer.cpp \
3570         svg/animation/SVGSMILElement.cpp \
3571         svg/graphics/filters/SVGFEImage.cpp \
3572         svg/graphics/filters/SVGFilter.cpp \
3573         svg/graphics/filters/SVGFilterBuilder.cpp \
3574         svg/graphics/SVGImage.cpp \
3575         rendering/RenderForeignObject.cpp \
3576         rendering/RenderSVGBlock.cpp \
3577         rendering/RenderSVGContainer.cpp \
3578         rendering/RenderSVGGradientStop.cpp \
3579         rendering/RenderSVGHiddenContainer.cpp \
3580         rendering/RenderSVGImage.cpp \
3581         rendering/RenderSVGModelObject.cpp \
3582         rendering/RenderSVGResource.cpp \
3583         rendering/RenderSVGResourceClipper.cpp \
3584         rendering/RenderSVGResourceContainer.cpp \
3585         rendering/RenderSVGResourceFilter.cpp \
3586         rendering/RenderSVGResourceFilterPrimitive.cpp \
3587         rendering/RenderSVGResourceGradient.cpp \
3588         rendering/RenderSVGResourceLinearGradient.cpp \
3589         rendering/RenderSVGResourceMarker.cpp \
3590         rendering/RenderSVGResourceMasker.cpp \
3591         rendering/RenderSVGResourcePattern.cpp \
3592         rendering/RenderSVGResourceRadialGradient.cpp \
3593         rendering/RenderSVGResourceSolidColor.cpp \
3594         rendering/RenderSVGRoot.cpp \
3595         rendering/RenderSVGShadowTreeRootContainer.cpp \
3596         rendering/RenderSVGTransformableContainer.cpp \
3597         rendering/RenderSVGViewportContainer.cpp \
3598         rendering/SVGImageBufferTools.cpp \
3599         rendering/SVGMarkerLayoutInfo.cpp \
3600         rendering/SVGRenderSupport.cpp \
3601         rendering/SVGResources.cpp \
3602         rendering/SVGResourcesCache.cpp \
3603         rendering/SVGResourcesCycleSolver.cpp \
3604         rendering/SVGShadowTreeElements.cpp
3605 }
3606
3607 contains(DEFINES, ENABLE_JAVASCRIPT_DEBUGGER=1) {
3608     v8 {
3609         SOURCES += \
3610             bindings/v8/ScriptDebugServer.cpp \
3611             bindings/v8/ScriptProfiler.cpp \
3612             bindings/v8/ScriptHeapSnapshot.cpp \
3613             bindings/v8/JavaScriptCallFrame.cpp \
3614             bindings/v8/custom/V8ScriptProfileCustom.cpp \
3615             bindings/v8/custom/V8JavaScriptCallFrameCustom.cpp \
3616             bindings/v8/custom/V8ScriptProfileNodeCustom.cpp \
3617             bindings/v8/ScriptProfileNode.cpp \
3618             bindings/v8/ScriptProfile.cpp
3619     } else {
3620         SOURCES += \
3621             bindings/js/JSJavaScriptCallFrameCustom.cpp \
3622             bindings/js/ScriptProfiler.cpp \
3623             bindings/js/JavaScriptCallFrame.cpp
3624     }
3625 }
3626
3627 contains(DEFINES, ENABLE_OFFLINE_WEB_APPLICATIONS=1) {
3628 SOURCES += \
3629     loader/appcache/ApplicationCache.cpp \
3630     loader/appcache/ApplicationCacheGroup.cpp \
3631     loader/appcache/ApplicationCacheHost.cpp \
3632     loader/appcache/ApplicationCacheStorage.cpp \
3633     loader/appcache/ApplicationCacheResource.cpp \
3634     loader/appcache/DOMApplicationCache.cpp \
3635     loader/appcache/ManifestParser.cpp
3636
3637     !v8 {
3638         SOURCES += \
3639             bindings/js/JSDOMApplicationCacheCustom.cpp
3640     }
3641 }
3642
3643 contains(DEFINES, ENABLE_WEB_SOCKETS=1) {
3644     HEADERS += \
3645         websockets/ThreadableWebSocketChannel.h \
3646         websockets/ThreadableWebSocketChannelClientWrapper.h \
3647         websockets/WebSocket.h \
3648         websockets/WebSocketChannel.h \
3649         websockets/WebSocketChannelClient.h \
3650         websockets/WebSocketHandshake.h \
3651         websockets/WebSocketHandshakeRequest.h \
3652         websockets/WebSocketHandshakeResponse.h \
3653         platform/network/qt/SocketStreamHandlePrivate.h
3654
3655     SOURCES += \
3656         websockets/WebSocket.cpp \
3657         websockets/WebSocketChannel.cpp \
3658         websockets/WebSocketHandshake.cpp \
3659         websockets/WebSocketHandshakeRequest.cpp \
3660         websockets/WebSocketHandshakeResponse.cpp \
3661         websockets/ThreadableWebSocketChannel.cpp \
3662         platform/network/SocketStreamErrorBase.cpp \
3663         platform/network/SocketStreamHandleBase.cpp \
3664         platform/network/qt/SocketStreamHandleQt.cpp
3665
3666     !v8 {
3667         SOURCES += \
3668             bindings/js/JSWebSocketCustom.cpp
3669     }
3670
3671     contains(DEFINES, ENABLE_WORKERS=1) {
3672         HEADERS += \
3673             websockets/WorkerThreadableWebSocketChannel.h
3674
3675         SOURCES += \
3676             websockets/WorkerThreadableWebSocketChannel.cpp
3677     }
3678 }
3679
3680 contains(DEFINES, ENABLE_3D_CANVAS=1) {
3681 tobe|!tobe: QT += opengl
3682     !v8 {
3683         HEADERS += \
3684             bindings/js/JSArrayBufferViewHelper.h
3685     }
3686
3687 HEADERS += \
3688         html/canvas/CanvasContextAttributes.h \
3689         html/canvas/WebGLObject.h \
3690         html/canvas/WebGLActiveInfo.h \
3691         html/canvas/ArrayBuffer.h \
3692         html/canvas/ArrayBufferView.h \
3693         html/canvas/WebGLBuffer.h \
3694         html/canvas/Int8Array.h \
3695         html/canvas/WebGLContextAttributes.h \
3696         html/canvas/Float32Array.h \
3697         html/canvas/WebGLFramebuffer.h \
3698         html/canvas/WebGLGetInfo.h \
3699         html/canvas/Int32Array.h \
3700         html/canvas/WebGLProgram.h \
3701         html/canvas/WebGLRenderbuffer.h \
3702         html/canvas/WebGLRenderingContext.h \
3703         html/canvas/WebGLShader.h \
3704         html/canvas/Int16Array.h \
3705         html/canvas/WebGLTexture.h \
3706         html/canvas/WebGLUniformLocation.h \
3707         html/canvas/Uint8Array.h \
3708         html/canvas/Uint32Array.h \
3709         html/canvas/Uint16Array.h \
3710         platform/graphics/Extensions3D.h \
3711         platform/graphics/GraphicsContext3D.h \
3712         platform/graphics/qt/Extensions3DQt.h
3713
3714     !v8 {
3715         SOURCES += \
3716                 bindings/js/JSArrayBufferCustom.cpp \
3717                 bindings/js/JSArrayBufferViewCustom.cpp \
3718                 bindings/js/JSInt8ArrayCustom.cpp \
3719                 bindings/js/JSFloat32ArrayCustom.cpp \
3720                 bindings/js/JSInt32ArrayCustom.cpp \
3721                 bindings/js/JSWebGLRenderingContextCustom.cpp \
3722                 bindings/js/JSInt16ArrayCustom.cpp \
3723                 bindings/js/JSUint8ArrayCustom.cpp \
3724                 bindings/js/JSUint32ArrayCustom.cpp \
3725                 bindings/js/JSUint16ArrayCustom.cpp
3726     }
3727 SOURCES += \
3728         html/canvas/CanvasContextAttributes.cpp \
3729         html/canvas/WebGLObject.cpp \
3730         html/canvas/ArrayBuffer.cpp \
3731         html/canvas/ArrayBufferView.cpp \
3732         html/canvas/WebGLBuffer.cpp \
3733         html/canvas/Int8Array.cpp \
3734         html/canvas/WebGLContextAttributes.cpp \
3735         html/canvas/Float32Array.cpp \
3736         html/canvas/WebGLFramebuffer.cpp \
3737         html/canvas/WebGLGetInfo.cpp \
3738         html/canvas/Int32Array.cpp \
3739         html/canvas/WebGLProgram.cpp \
3740         html/canvas/WebGLRenderbuffer.cpp \
3741         html/canvas/WebGLRenderingContext.cpp \
3742         html/canvas/WebGLShader.cpp \
3743         html/canvas/Int16Array.cpp \
3744         html/canvas/WebGLTexture.cpp \
3745         html/canvas/WebGLUniformLocation.cpp \
3746         html/canvas/Uint8Array.cpp \
3747         html/canvas/Uint32Array.cpp \
3748         html/canvas/Uint16Array.cpp \
3749         platform/graphics/GraphicsContext3D.cpp \
3750         platform/graphics/qt/Extensions3DQt.cpp \
3751         platform/graphics/qt/GraphicsContext3DQt.cpp
3752
3753 }
3754
3755 contains(DEFINES, ENABLE_SYMBIAN_DIALOG_PROVIDERS) {
3756     # this feature requires the S60 platform private BrowserDialogsProvider.h header file
3757     # and is therefore not enabled by default but only meant for platform builds.
3758     symbian {
3759         LIBS += -lbrowserdialogsprovider
3760     }
3761 }
3762
3763 !symbian-abld:!symbian-sbsv2 {
3764     modfile.files = $$moduleFile
3765     modfile.path = $$[QMAKE_MKSPECS]/modules
3766
3767     INSTALLS += modfile
3768 } else {
3769     # INSTALLS is not implemented in qmake's mmp generators, copy headers manually
3770
3771     inst_modfile.commands = $$QMAKE_COPY ${QMAKE_FILE_NAME} ${QMAKE_FILE_OUT}
3772     inst_modfile.input = moduleFile
3773     inst_modfile.output = $$[QMAKE_MKSPECS]/modules
3774     inst_modfile.CONFIG = no_clean
3775
3776     QMAKE_EXTRA_COMPILERS += inst_modfile
3777
3778     install.depends += compiler_inst_modfile_make_all
3779     QMAKE_EXTRA_TARGETS += install
3780 }
3781
3782 include($$PWD/../WebKit/qt/Api/headers.pri)
3783
3784 HEADERS += $$WEBKIT_API_HEADERS
3785
3786 !CONFIG(QTDIR_build) {
3787     exists($$OUTPUT_DIR/include/QtWebKit/classheaders.pri): include($$OUTPUT_DIR/include/QtWebKit/classheaders.pri)
3788     WEBKIT_INSTALL_HEADERS = $$WEBKIT_API_HEADERS $$WEBKIT_CLASS_HEADERS
3789
3790     !symbian-abld:!symbian-sbsv2 {
3791         headers.files = $$WEBKIT_INSTALL_HEADERS
3792
3793         !isEmpty(INSTALL_HEADERS): headers.path = $$INSTALL_HEADERS/QtWebKit
3794         else: headers.path = $$[QT_INSTALL_HEADERS]/QtWebKit
3795
3796         !isEmpty(INSTALL_LIBS): target.path = $$INSTALL_LIBS
3797         else: target.path = $$[QT_INSTALL_LIBS]
3798
3799         INSTALLS += target headers
3800     } else {
3801         # INSTALLS is not implemented in qmake's mmp generators, copy headers manually
3802         inst_headers.commands = $$QMAKE_COPY ${QMAKE_FILE_NAME} ${QMAKE_FILE_OUT}
3803         inst_headers.input = WEBKIT_INSTALL_HEADERS
3804         inst_headers.CONFIG = no_clean
3805
3806         !isEmpty(INSTALL_HEADERS): inst_headers.output = $$INSTALL_HEADERS/QtWebKit/${QMAKE_FILE_BASE}${QMAKE_FILE_EXT}
3807         else: inst_headers.output = $$[QT_INSTALL_HEADERS]/QtWebKit/${QMAKE_FILE_BASE}${QMAKE_FILE_EXT}
3808
3809         QMAKE_EXTRA_COMPILERS += inst_headers
3810
3811         install.depends += compiler_inst_headers_make_all
3812     }
3813
3814     win32-*|wince* {
3815         DLLDESTDIR = $$OUTPUT_DIR/bin
3816         build_pass: TARGET = $$qtLibraryTarget($$TARGET)
3817
3818         dlltarget.commands = $(COPY_FILE) $(DESTDIR_TARGET) $$[QT_INSTALL_BINS]
3819         dlltarget.CONFIG = no_path
3820         INSTALLS += dlltarget
3821     }
3822
3823     unix {
3824         CONFIG += create_pc create_prl
3825         QMAKE_PKGCONFIG_LIBDIR = $$target.path
3826         QMAKE_PKGCONFIG_INCDIR = $$headers.path
3827         QMAKE_PKGCONFIG_DESTDIR = pkgconfig
3828         lib_replace.match = $$re_escape($$DESTDIR)
3829         lib_replace.replace = $$[QT_INSTALL_LIBS]
3830         QMAKE_PKGCONFIG_INSTALL_REPLACE += lib_replace
3831     }
3832
3833     mac {
3834         !static:contains(QT_CONFIG, qt_framework):!CONFIG(webkit_no_framework) {
3835             !build_pass {
3836                 message("Building QtWebKit as a framework, as that's how Qt was built. You can")
3837                 message("override this by passing CONFIG+=webkit_no_framework to build-webkit.")
3838
3839                 CONFIG += build_all
3840             } else {
3841                 debug_and_release:TARGET = $$qtLibraryTarget($$TARGET)
3842             }
3843
3844             CONFIG += lib_bundle qt_no_framework_direct_includes qt_framework
3845             FRAMEWORK_HEADERS.version = Versions
3846             FRAMEWORK_HEADERS.files = $${headers.files}
3847             FRAMEWORK_HEADERS.path = Headers
3848             QMAKE_BUNDLE_DATA += FRAMEWORK_HEADERS
3849         }
3850
3851         QMAKE_LFLAGS_SONAME = "$${QMAKE_LFLAGS_SONAME}$${DESTDIR}$${QMAKE_DIR_SEP}"
3852         LIBS += -framework Carbon -framework AppKit
3853     }
3854 }
3855
3856 !CONFIG(webkit-debug):CONFIG(QTDIR_build) {
3857     # Remove the following 2 lines if you want debug information in WebCore
3858     CONFIG -= separate_debug_info
3859     CONFIG += no_debug_info
3860 }
3861
3862 win32:!win32-g++*:contains(QMAKE_HOST.arch, x86_64):{
3863     asm_compiler.commands = ml64 /c
3864     asm_compiler.commands +=  /Fo ${QMAKE_FILE_OUT} ${QMAKE_FILE_IN}
3865     asm_compiler.output = ${QMAKE_VAR_OBJECTS_DIR}${QMAKE_FILE_BASE}$${first(QMAKE_EXT_OBJ)}
3866     asm_compiler.input = ASM_SOURCES
3867     asm_compiler.variable_out = OBJECTS
3868     asm_compiler.name = compiling[asm] ${QMAKE_FILE_IN}
3869     silent:asm_compiler.commands = @echo compiling[asm] ${QMAKE_FILE_IN} && $$asm_compiler.commands
3870     QMAKE_EXTRA_COMPILERS += asm_compiler
3871
3872     ASM_SOURCES += \
3873         plugins/win/PaintHooks.asm
3874    if(win32-msvc2005|win32-msvc2008):equals(TEMPLATE_PREFIX, "vc") {
3875         SOURCES += \
3876             plugins/win/PaintHooks.asm
3877     }
3878 }
3879
3880 # Uncomment this to enable Texture Mapper.
3881 # CONFIG += texmap
3882
3883 contains(CONFIG, texmap) {
3884     DEFINES += WTF_USE_TEXTURE_MAPPER=1
3885     HEADERS += \
3886         platform/graphics/qt/TextureMapperQt.h \
3887         platform/graphics/texmap/GraphicsLayerTextureMapper.h \
3888         platform/graphics/texmap/TextureMapper.h \
3889         platform/graphics/texmap/TextureMapperNode.h \
3890         platform/graphics/texmap/TextureMapperPlatformLayer.h
3891
3892     SOURCES += \
3893         platform/graphics/qt/TextureMapperQt.cpp \
3894         platform/graphics/texmap/TextureMapperNode.cpp \
3895         platform/graphics/texmap/GraphicsLayerTextureMapper.cpp
3896
3897     contains(QT_CONFIG, opengl) {
3898         QT += opengl
3899         HEADERS += platform/graphics/opengl/TextureMapperGL.h
3900         SOURCES += platform/graphics/opengl/TextureMapperGL.cpp
3901     }
3902 } else {
3903     HEADERS += platform/graphics/qt/GraphicsLayerQt.h
3904     SOURCES += platform/graphics/qt/GraphicsLayerQt.cpp
3905 }
3906
3907 symbian {
3908     shared {
3909         contains(CONFIG, def_files) {
3910             DEF_FILE=../WebKit/qt/symbian
3911             # defFilePath is for Qt4.6 compatibility
3912             defFilePath=../WebKit/qt/symbian
3913         } else {
3914             MMP_RULES += EXPORTUNFROZEN
3915         }
3916     }
3917 }
3918
3919 # Disable C++0x mode in WebCore for those who enabled it in their Qt's mkspec
3920 *-g++*:QMAKE_CXXFLAGS -= -std=c++0x -std=gnu++0x