2008-11-04 Anders Carlsson <andersca@apple.com>
[webkit/qt.git] / WebCore / WebCore.pro
blob0ac6a0cfa43d53ae7b49905dfecd5ed77b9899dc
1 # WebCore - qmake build info
2 CONFIG += building-libs
3 CONFIG += depend_includepath
4 include($$PWD/../WebKit.pri)
6 TEMPLATE = lib
7 TARGET = QtWebKit
9 contains(QT_CONFIG, embedded):CONFIG += embedded
11 CONFIG(QTDIR_build) {
12 GENERATED_SOURCES_DIR = $$PWD/generated
13 include($$QT_SOURCE_TREE/src/qbase.pri)
14 !win32-msvc*: CONFIG -= create_prl
15 PRECOMPILED_HEADER = $$PWD/../WebKit/qt/WebKit_pch.h
16 DEFINES *= NDEBUG
19 isEmpty(GENERATED_SOURCES_DIR):GENERATED_SOURCES_DIR = tmp
20 GENERATED_SOURCES_DIR_SLASH = $$GENERATED_SOURCES_DIR/
21 win32-*: GENERATED_SOURCES_DIR_SLASH ~= s|/|\|
23 !CONFIG(QTDIR_build) {
24 OBJECTS_DIR = tmp
25 DESTDIR = $$OUTPUT_DIR/lib
28 include($$OUTPUT_DIR/config.pri)
30 CONFIG -= warn_on
31 *-g++*:QMAKE_CXXFLAGS += -Wreturn-type -fno-strict-aliasing
32 #QMAKE_CXXFLAGS += -Wall -Wno-undef -Wno-unused-parameter
34 CONFIG(release):!CONFIG(QTDIR_build) {
35 contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
36 unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
39 linux-*: DEFINES += HAVE_STDINT_H
40 freebsd-*: DEFINES += HAVE_PTHREAD_NP_H
42 # PRE-BUILD: make the required config.h file
43 #config_h.target = config.h
44 #config_h.commands = cp config.h.qmake config.h
45 #config_h.depends = config.h.qmake
46 #QMAKE_EXTRA_TARGETS += config_h
47 #PRE_TARGETDEPS += config.h
49 DEFINES += BUILD_WEBKIT
51 !CONFIG(QTDIR_build):win32-*: DEFINES += ENABLE_ICONDATABASE=0 ENABLE_DATABASE=0
52 win32-*: DEFINES += _HAS_TR1=0
54 # Pick up 3rdparty libraries from INCLUDE/LIB just like with MSVC
55 win32-g++ {
56 TMPPATH = $$quote($$(INCLUDE))
57 QMAKE_INCDIR_POST += $$split(TMPPATH,";")
58 TMPPATH = $$quote($$(LIB))
59 QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
62 # Optional components (look for defs in config.h and included files!)
63 !contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=.): DEFINES += ENABLE_DASHBOARD_SUPPORT=0
64 !contains(DEFINES, ENABLE_DATABASE=.): DEFINES += ENABLE_DATABASE=1
65 !contains(DEFINES, ENABLE_ICONDATABASE=.): DEFINES += ENABLE_ICONDATABASE=1
66 !contains(DEFINES, ENABLE_XPATH=.): DEFINES += ENABLE_XPATH=1
67 #!contains(DEFINES, ENABLE_XBL=.): DEFINES += ENABLE_XBL=1
68 !contains(DEFINES, ENABLE_SVG=.): DEFINES += ENABLE_SVG=1
69 #!contains(DEFINES, ENABLE_SVG_FONTS=.): DEFINES += ENABLE_SVG_FONTS=1
70 !contains(DEFINES, ENABLE_SVG_FILTERS=.): DEFINES += ENABLE_SVG_FILTERS=1
71 !contains(DEFINES, ENABLE_SVG_FOREIGN_OBJECT=.): DEFINES += ENABLE_SVG_FOREIGN_OBJECT=1
72 !contains(DEFINES, ENABLE_SVG_ANIMATION=.): DEFINES += ENABLE_SVG_ANIMATION=1
73 !contains(DEFINES, ENABLE_SVG_AS_IMAGE=.): DEFINES += ENABLE_SVG_AS_IMAGE=1
74 !contains(DEFINES, ENABLE_SVG_USE=.): DEFINES += ENABLE_SVG_USE=1
75 contains(QT_CONFIG, phonon):DEFINES += ENABLE_VIDEO=1
76 else:DEFINES += ENABLE_VIDEO=0
78 unix|win32-*:!mac:!embedded:!wince* {
79 DEFINES += ENABLE_NETSCAPE_PLUGIN_API=1
80 unix: DEFINES += XP_UNIX
81 } else {
82 DEFINES += ENABLE_NETSCAPE_PLUGIN_API=0
85 DEFINES += WTF_USE_JAVASCRIPTCORE_BINDINGS=1 WTF_CHANGES=1
87 INCLUDEPATH += $$PWD $$PWD/../JavaScriptCore $$PWD/../JavaScriptCore/ForwardingHeaders \
88 $$PWD/../JavaScriptCore/VM \
89 $$PWD/../JavaScriptCore/debugger \
90 $$PWD/../JavaScriptCore/kjs \
91 $$PWD/../JavaScriptCore/runtime \
92 $$PWD/../JavaScriptCore/bindings \
93 $$PWD/../JavaScriptCore/wtf
95 contains(CONFIG, debug_and_release_target) {
96 CONFIG(debug, debug|release) {
97 LIBS += -L../JavaScriptCore/debug
98 } else {
99 LIBS += -L../JavaScriptCore/release
101 } else {
102 LIBS += -L../JavaScriptCore
105 unset(JSCORE_LINKAGE)
106 CONFIG(QTDIR_build) {
107 if(!debug_and_release|build_pass):CONFIG(debug, debug|release) {
108 win32:JSCORE_LINKAGE = -lJavaScriptCored
109 mac:JSCORE_LINKAGE = -lJavaScriptCore_debug
112 isEmpty(JSCORE_LINKAGE):JSCORE_LINKAGE += -lJavaScriptCore
113 LIBS += $$JSCORE_LINKAGE
115 RESOURCES += \
116 $$PWD/../WebCore/inspector/front-end/WebKit.qrc \
117 $$PWD/../WebCore/Resources/WebKitResources.qrc \
118 $$PWD/../WebCore/platform/qt/WebCoreResources.qrc
119 INCLUDEPATH += \
120 $$PWD/platform/qt \
121 $$PWD/platform/network/qt \
122 $$PWD/platform/graphics/filters \
123 $$PWD/platform/graphics/qt \
124 $$PWD/svg/graphics/qt \
125 $$PWD/loader \
126 $$PWD/page/qt \
127 $$PWD/../WebKit/qt/WebCoreSupport \
128 $$PWD/../WebKit/qt/Api \
129 $$PWD/bridge/qt
131 # Make sure storage/ appears before JavaScriptCore/kjs. Both provide LocalStorage.h
132 # but the header from the former include path is included across directories while
133 # kjs/LocalStorage.h is included only from files within the same directory
134 INCLUDEPATH = $$PWD/storage $$INCLUDEPATH
136 INCLUDEPATH += $$PWD \
137 $$PWD/ForwardingHeaders \
138 $$PWD/.. \
139 $$PWD/platform \
140 $$PWD/platform/network \
141 $$PWD/platform/graphics \
142 $$PWD/svg/animation \
143 $$PWD/svg/graphics \
144 $$PWD/svg/graphics/filters \
145 $$PWD/platform/sql \
146 $$PWD/platform/text \
147 $$PWD/loader \
148 $$PWD/loader/appcache \
149 $$PWD/loader/archive \
150 $$PWD/loader/icon \
151 $$PWD/css \
152 $$PWD/dom \
153 $$PWD/page \
154 $$PWD/page/animation \
155 $$PWD/bridge \
156 $$PWD/editing \
157 $$PWD/rendering \
158 $$PWD/rendering/style \
159 $$PWD/history \
160 $$PWD/inspector \
161 $$PWD/xml \
162 $$PWD/html \
163 $$PWD/bindings/js \
164 $$PWD/svg \
165 $$PWD/platform/image-decoders \
166 $$PWD/plugins \
167 $$PWD/bridge \
168 $$PWD/bridge/c \
169 $$PWD/bridge/qt \
170 $$GENERATED_SOURCES_DIR
172 QT += network
173 lessThan(QT_MINOR_VERSION, 4): QT += xml
175 QMAKE_EXTRA_TARGETS += generated_files
177 FEATURE_DEFINES_JAVASCRIPT = LANGUAGE_JAVASCRIPT=1
179 TOKENIZER = $$PWD/css/tokenizer.flex
181 DOCTYPESTRINGS = $$PWD/html/DocTypeStrings.gperf
183 CSSBISON = $$PWD/css/CSSGrammar.y
185 HTML_NAMES = $$PWD/html/HTMLTagNames.in
187 XML_NAMES = $$PWD/xml/xmlattrs.in
189 ENTITIES_GPERF = $$PWD/html/HTMLEntityNames.gperf
191 COLORDAT_GPERF = $$PWD/platform/ColorData.gperf
193 WALDOCSSPROPS = $$PWD/css/CSSPropertyNames.in
195 WALDOCSSVALUES = $$PWD/css/CSSValueKeywords.in
197 DASHBOARDSUPPORTCSSPROPERTIES = $$PWD/css/DashboardSupportCSSPropertyNames.in
199 SVGCSSPROPERTIES = $$PWD/css/SVGCSSPropertyNames.in
201 SVGCSSVALUES = $$PWD/css/SVGCSSValueKeywords.in
203 STYLESHEETS_EMBED = $$PWD/css/html4.css
205 LUT_FILES += \
206 bindings/js/JSDOMWindowBase.cpp \
207 bindings/js/JSRGBColor.cpp
209 IDL_BINDINGS += \
210 css/Counter.idl \
211 css/CSSCharsetRule.idl \
212 css/CSSFontFaceRule.idl \
213 css/CSSImportRule.idl \
214 css/CSSMediaRule.idl \
215 css/CSSPageRule.idl \
216 css/CSSPrimitiveValue.idl \
217 css/CSSRule.idl \
218 css/CSSRuleList.idl \
219 css/CSSStyleDeclaration.idl \
220 css/CSSStyleRule.idl \
221 css/CSSStyleSheet.idl \
222 css/CSSValue.idl \
223 css/CSSValueList.idl \
224 css/CSSVariablesDeclaration.idl \
225 css/CSSVariablesRule.idl \
226 css/MediaList.idl \
227 css/Rect.idl \
228 css/StyleSheet.idl \
229 css/StyleSheetList.idl \
230 css/WebKitCSSKeyframeRule.idl \
231 css/WebKitCSSKeyframesRule.idl \
232 css/WebKitCSSTransformValue.idl \
233 dom/Attr.idl \
234 dom/CharacterData.idl \
235 dom/Clipboard.idl \
236 dom/CDATASection.idl \
237 dom/Comment.idl \
238 dom/DocumentFragment.idl \
239 dom/Document.idl \
240 dom/DocumentType.idl \
241 dom/DOMCoreException.idl \
242 dom/DOMImplementation.idl \
243 dom/Element.idl \
244 dom/Entity.idl \
245 dom/EntityReference.idl \
246 dom/Event.idl \
247 dom/EventException.idl \
248 # dom/EventListener.idl \
249 # dom/EventTarget.idl \
250 dom/EventTargetNode.idl \
251 dom/KeyboardEvent.idl \
252 dom/MouseEvent.idl \
253 dom/MessageChannel.idl \
254 dom/MessageEvent.idl \
255 dom/MessagePort.idl \
256 dom/MutationEvent.idl \
257 dom/NamedNodeMap.idl \
258 dom/Node.idl \
259 dom/NodeFilter.idl \
260 dom/NodeIterator.idl \
261 dom/NodeList.idl \
262 dom/Notation.idl \
263 dom/OverflowEvent.idl \
264 dom/ProcessingInstruction.idl \
265 dom/ProgressEvent.idl \
266 dom/RangeException.idl \
267 dom/Range.idl \
268 dom/Text.idl \
269 dom/TextEvent.idl \
270 dom/TreeWalker.idl \
271 dom/UIEvent.idl \
272 dom/WebKitAnimationEvent.idl \
273 dom/WebKitTransitionEvent.idl \
274 dom/WheelEvent.idl \
275 html/CanvasGradient.idl \
276 html/CanvasPattern.idl \
277 html/CanvasPixelArray.idl \
278 html/CanvasRenderingContext2D.idl \
279 html/File.idl \
280 html/FileList.idl \
281 html/HTMLAnchorElement.idl \
282 html/HTMLAppletElement.idl \
283 html/HTMLAreaElement.idl \
284 html/HTMLBaseElement.idl \
285 html/HTMLBaseFontElement.idl \
286 html/HTMLBlockquoteElement.idl \
287 html/HTMLBodyElement.idl \
288 html/HTMLBRElement.idl \
289 html/HTMLButtonElement.idl \
290 html/HTMLCanvasElement.idl \
291 html/HTMLCollection.idl \
292 html/HTMLDirectoryElement.idl \
293 html/HTMLDivElement.idl \
294 html/HTMLDListElement.idl \
295 html/HTMLDocument.idl \
296 html/HTMLElement.idl \
297 html/HTMLEmbedElement.idl \
298 html/HTMLFieldSetElement.idl \
299 html/HTMLFontElement.idl \
300 html/HTMLFormElement.idl \
301 html/HTMLFrameElement.idl \
302 html/HTMLFrameSetElement.idl \
303 html/HTMLHeadElement.idl \
304 html/HTMLHeadingElement.idl \
305 html/HTMLHRElement.idl \
306 html/HTMLHtmlElement.idl \
307 html/HTMLIFrameElement.idl \
308 html/HTMLImageElement.idl \
309 html/HTMLInputElement.idl \
310 html/HTMLIsIndexElement.idl \
311 html/HTMLLabelElement.idl \
312 html/HTMLLegendElement.idl \
313 html/HTMLLIElement.idl \
314 html/HTMLLinkElement.idl \
315 html/HTMLMapElement.idl \
316 html/HTMLMarqueeElement.idl \
317 html/HTMLMenuElement.idl \
318 html/HTMLMetaElement.idl \
319 html/HTMLModElement.idl \
320 html/HTMLObjectElement.idl \
321 html/HTMLOListElement.idl \
322 html/HTMLOptGroupElement.idl \
323 html/HTMLOptionElement.idl \
324 html/HTMLOptionsCollection.idl \
325 html/HTMLParagraphElement.idl \
326 html/HTMLParamElement.idl \
327 html/HTMLPreElement.idl \
328 html/HTMLQuoteElement.idl \
329 html/HTMLScriptElement.idl \
330 html/HTMLSelectElement.idl \
331 html/HTMLStyleElement.idl \
332 html/HTMLTableCaptionElement.idl \
333 html/HTMLTableCellElement.idl \
334 html/HTMLTableColElement.idl \
335 html/HTMLTableElement.idl \
336 html/HTMLTableRowElement.idl \
337 html/HTMLTableSectionElement.idl \
338 html/HTMLTextAreaElement.idl \
339 html/HTMLTitleElement.idl \
340 html/HTMLUListElement.idl \
341 html/ImageData.idl \
342 html/TextMetrics.idl \
343 inspector/JavaScriptCallFrame.idl \
344 page/BarInfo.idl \
345 page/Console.idl \
346 page/DOMSelection.idl \
347 page/DOMWindow.idl \
348 page/Geolocation.idl \
349 page/Geoposition.idl \
350 page/History.idl \
351 page/Location.idl \
352 page/Navigator.idl \
353 page/PositionError.idl \
354 page/PositionOptions.idl \
355 page/Screen.idl \
356 plugins/Plugin.idl \
357 plugins/MimeType.idl \
358 plugins/PluginArray.idl \
359 plugins/MimeTypeArray.idl \
360 xml/DOMParser.idl \
361 xml/XMLHttpRequest.idl \
362 xml/XMLHttpRequestException.idl \
363 xml/XMLHttpRequestProgressEvent.idl \
364 xml/XMLHttpRequestUpload.idl \
365 xml/XMLSerializer.idl \
366 xml/XSLTProcessor.idl
369 SOURCES += \
370 bindings/js/GCController.cpp \
371 bindings/js/JSAttrCustom.cpp \
372 bindings/js/JSCanvasRenderingContext2DCustom.cpp \
373 bindings/js/JSClipboardCustom.cpp \
374 bindings/js/JSConsoleCustom.cpp \
375 bindings/js/JSCSSRuleCustom.cpp \
376 bindings/js/JSCSSStyleDeclarationCustom.cpp \
377 bindings/js/JSCSSValueCustom.cpp \
378 bindings/js/JSCustomPositionCallback.cpp \
379 bindings/js/JSCustomPositionErrorCallback.cpp \
380 bindings/js/JSCustomVoidCallback.cpp \
381 bindings/js/JSCustomXPathNSResolver.cpp \
382 bindings/js/JSDocumentCustom.cpp \
383 bindings/js/JSDocumentFragmentCustom.cpp \
384 bindings/js/JSDOMGlobalObject.cpp \
385 bindings/js/JSDOMWindowBase.cpp \
386 bindings/js/JSDOMWindowCustom.cpp \
387 bindings/js/JSDOMWindowShell.cpp \
388 bindings/js/JSElementCustom.cpp \
389 bindings/js/JSEventCustom.cpp \
390 bindings/js/JSEventTarget.cpp \
391 bindings/js/JSEventTargetNodeCustom.cpp \
392 bindings/js/JSGeolocationCustom.cpp \
393 bindings/js/JSHTMLAllCollection.cpp \
394 bindings/js/JSHistoryCustom.cpp \
395 bindings/js/JSJavaScriptCallFrameCustom.cpp \
396 bindings/js/JSHTMLAppletElementCustom.cpp \
397 bindings/js/JSHTMLCollectionCustom.cpp \
398 bindings/js/JSHTMLDocumentCustom.cpp \
399 bindings/js/JSHTMLElementCustom.cpp \
400 bindings/js/JSHTMLEmbedElementCustom.cpp \
401 bindings/js/JSHTMLFormElementCustom.cpp \
402 bindings/js/JSHTMLFrameElementCustom.cpp \
403 bindings/js/JSHTMLFrameSetElementCustom.cpp \
404 bindings/js/JSHTMLIFrameElementCustom.cpp \
405 bindings/js/JSHTMLInputElementCustom.cpp \
406 bindings/js/JSHTMLObjectElementCustom.cpp \
407 bindings/js/JSHTMLOptionsCollectionCustom.cpp \
408 bindings/js/JSHTMLSelectElementCustom.cpp \
409 bindings/js/JSImageConstructor.cpp \
410 bindings/js/JSImageDataCustom.cpp \
411 bindings/js/JSInspectedObjectWrapper.cpp \
412 bindings/js/JSInspectorCallbackWrapper.cpp \
413 bindings/js/JSLocationCustom.cpp \
414 bindings/js/JSNamedNodeMapCustom.cpp \
415 bindings/js/JSNamedNodesCollection.cpp \
416 bindings/js/JSNavigatorCustom.cpp \
417 bindings/js/JSNodeCustom.cpp \
418 bindings/js/JSNodeFilterCondition.cpp \
419 bindings/js/JSNodeFilterCustom.cpp \
420 bindings/js/JSNodeIteratorCustom.cpp \
421 bindings/js/JSNodeListCustom.cpp \
422 bindings/js/JSOptionConstructor.cpp \
423 bindings/js/JSQuarantinedObjectWrapper.cpp \
424 bindings/js/JSRGBColor.cpp \
425 bindings/js/JSStyleSheetCustom.cpp \
426 bindings/js/JSStyleSheetListCustom.cpp \
427 bindings/js/JSTreeWalkerCustom.cpp \
428 bindings/js/JSXMLHttpRequestConstructor.cpp \
429 bindings/js/JSXMLHttpRequestCustom.cpp \
430 bindings/js/JSXMLHttpRequestUploadCustom.cpp \
431 bindings/js/JSXSLTProcessorConstructor.cpp \
432 bindings/js/JSXSLTProcessorCustom.cpp \
433 bindings/js/JSPluginCustom.cpp \
434 bindings/js/JSPluginArrayCustom.cpp \
435 bindings/js/JSMessageChannelConstructor.cpp \
436 bindings/js/JSMessageChannelCustom.cpp \
437 bindings/js/JSMessagePortCustom.cpp \
438 bindings/js/JSMimeTypeArrayCustom.cpp \
439 bindings/js/JSDOMBinding.cpp \
440 bindings/js/JSEventListener.cpp \
441 bindings/js/JSPluginElementFunctions.cpp \
442 bindings/js/ScriptController.cpp \
443 bindings/js/PausedTimeouts.cpp \
444 bindings/js/ScheduledAction.cpp \
445 bridge/NP_jsobject.cpp \
446 bridge/npruntime.cpp \
447 bridge/runtime_array.cpp \
448 bridge/runtime.cpp \
449 bridge/runtime_method.cpp \
450 bridge/runtime_object.cpp \
451 bridge/runtime_root.cpp \
452 bridge/c/c_class.cpp \
453 bridge/c/c_instance.cpp \
454 bridge/c/c_runtime.cpp \
455 bridge/c/c_utility.cpp \
456 css/CSSBorderImageValue.cpp \
457 css/CSSCanvasValue.cpp \
458 css/CSSCharsetRule.cpp \
459 css/CSSComputedStyleDeclaration.cpp \
460 css/CSSCursorImageValue.cpp \
461 css/CSSFontFace.cpp \
462 css/CSSFontFaceRule.cpp \
463 css/CSSFontFaceSrcValue.cpp \
464 css/CSSFontSelector.cpp \
465 css/CSSFontFaceSource.cpp \
466 css/CSSFunctionValue.cpp \
467 css/CSSGradientValue.cpp \
468 css/CSSHelper.cpp \
469 css/CSSImageValue.cpp \
470 css/CSSImageGeneratorValue.cpp \
471 css/CSSImportRule.cpp \
472 css/CSSInheritedValue.cpp \
473 css/CSSInitialValue.cpp \
474 css/CSSMediaRule.cpp \
475 css/CSSMutableStyleDeclaration.cpp \
476 css/CSSNthSelector.cpp \
477 css/CSSPageRule.cpp \
478 css/CSSParser.cpp \
479 css/CSSParserValues.cpp \
480 css/CSSPrimitiveValue.cpp \
481 css/CSSProperty.cpp \
482 css/CSSReflectValue.cpp \
483 css/CSSRule.cpp \
484 css/CSSRuleList.cpp \
485 css/CSSSelector.cpp \
486 css/CSSSegmentedFontFace.cpp \
487 css/CSSStyleDeclaration.cpp \
488 css/CSSStyleRule.cpp \
489 css/CSSStyleSelector.cpp \
490 css/CSSStyleSheet.cpp \
491 css/CSSTimingFunctionValue.cpp \
492 css/CSSUnicodeRangeValue.cpp \
493 css/CSSValueList.cpp \
494 css/CSSVariableDependentValue.cpp \
495 css/CSSVariablesDeclaration.cpp \
496 css/CSSVariablesRule.cpp \
497 css/FontFamilyValue.cpp \
498 css/FontValue.cpp \
499 css/MediaFeatureNames.cpp \
500 css/MediaList.cpp \
501 css/MediaQuery.cpp \
502 css/MediaQueryEvaluator.cpp \
503 css/MediaQueryExp.cpp \
504 css/ShadowValue.cpp \
505 css/StyleBase.cpp \
506 css/StyleList.cpp \
507 css/StyleSheet.cpp \
508 css/StyleSheetList.cpp \
509 css/WebKitCSSKeyframeRule.cpp \
510 css/WebKitCSSKeyframesRule.cpp \
511 css/WebKitCSSTransformValue.cpp \
512 dom/ActiveDOMObject.cpp \
513 dom/Attr.cpp \
514 dom/Attribute.cpp \
515 dom/BeforeTextInsertedEvent.cpp \
516 dom/BeforeUnloadEvent.cpp \
517 dom/CDATASection.cpp \
518 dom/CharacterData.cpp \
519 dom/ChildNodeList.cpp \
520 dom/ClassNames.cpp \
521 dom/ClassNodeList.cpp \
522 dom/Clipboard.cpp \
523 dom/ClipboardEvent.cpp \
524 dom/Comment.cpp \
525 dom/ContainerNode.cpp \
526 dom/CSSMappedAttributeDeclaration.cpp \
527 dom/Document.cpp \
528 dom/DocumentFragment.cpp \
529 dom/DocumentType.cpp \
530 dom/DOMImplementation.cpp \
531 dom/DynamicNodeList.cpp \
532 dom/EditingText.cpp \
533 dom/Element.cpp \
534 dom/Entity.cpp \
535 dom/EntityReference.cpp \
536 dom/Event.cpp \
537 dom/EventNames.cpp \
538 dom/EventTarget.cpp \
539 dom/EventTargetNode.cpp \
540 dom/ExceptionBase.cpp \
541 dom/ExceptionCode.cpp \
542 dom/KeyboardEvent.cpp \
543 dom/MappedAttribute.cpp \
544 dom/MessageChannel.cpp \
545 dom/MessageEvent.cpp \
546 dom/MessagePort.cpp \
547 dom/MouseEvent.cpp \
548 dom/MouseRelatedEvent.cpp \
549 dom/MutationEvent.cpp \
550 dom/NamedAttrMap.cpp \
551 dom/NamedMappedAttrMap.cpp \
552 dom/NameNodeList.cpp \
553 dom/Node.cpp \
554 dom/NodeFilterCondition.cpp \
555 dom/NodeFilter.cpp \
556 dom/NodeIterator.cpp \
557 dom/Notation.cpp \
558 dom/OverflowEvent.cpp \
559 dom/Position.cpp \
560 dom/PositionIterator.cpp \
561 dom/ProcessingInstruction.cpp \
562 dom/ProgressEvent.cpp \
563 dom/QualifiedName.cpp \
564 dom/Range.cpp \
565 dom/RegisteredEventListener.cpp \
566 dom/ScriptElement.cpp \
567 dom/ScriptExecutionContext.cpp \
568 dom/SelectorNodeList.cpp \
569 dom/StaticNodeList.cpp \
570 dom/StyledElement.cpp \
571 dom/StyleElement.cpp \
572 dom/TagNodeList.cpp \
573 dom/Text.cpp \
574 dom/TextEvent.cpp \
575 dom/Traversal.cpp \
576 dom/TreeWalker.cpp \
577 dom/UIEvent.cpp \
578 dom/UIEventWithKeyState.cpp \
579 dom/WebKitAnimationEvent.cpp \
580 dom/WebKitTransitionEvent.cpp \
581 dom/WheelEvent.cpp \
582 dom/XMLTokenizer.cpp \
583 dom/XMLTokenizerQt.cpp \
584 editing/AppendNodeCommand.cpp \
585 editing/ApplyStyleCommand.cpp \
586 editing/BreakBlockquoteCommand.cpp \
587 editing/CompositeEditCommand.cpp \
588 editing/CreateLinkCommand.cpp \
589 editing/DeleteButtonController.cpp \
590 editing/DeleteButton.cpp \
591 editing/DeleteFromTextNodeCommand.cpp \
592 editing/DeleteSelectionCommand.cpp \
593 editing/EditCommand.cpp \
594 editing/Editor.cpp \
595 editing/EditorCommand.cpp \
596 editing/FormatBlockCommand.cpp \
597 editing/htmlediting.cpp \
598 editing/HTMLInterchange.cpp \
599 editing/IndentOutdentCommand.cpp \
600 editing/InsertIntoTextNodeCommand.cpp \
601 editing/InsertLineBreakCommand.cpp \
602 editing/InsertListCommand.cpp \
603 editing/InsertNodeBeforeCommand.cpp \
604 editing/InsertParagraphSeparatorCommand.cpp \
605 editing/InsertTextCommand.cpp \
606 editing/JoinTextNodesCommand.cpp \
607 editing/markup.cpp \
608 editing/MergeIdenticalElementsCommand.cpp \
609 editing/ModifySelectionListLevel.cpp \
610 editing/MoveSelectionCommand.cpp \
611 editing/RemoveCSSPropertyCommand.cpp \
612 editing/RemoveFormatCommand.cpp \
613 editing/RemoveNodeAttributeCommand.cpp \
614 editing/RemoveNodeCommand.cpp \
615 editing/RemoveNodePreservingChildrenCommand.cpp \
616 editing/ReplaceSelectionCommand.cpp \
617 editing/SelectionController.cpp \
618 editing/Selection.cpp \
619 editing/SetNodeAttributeCommand.cpp \
620 editing/SmartReplace.cpp \
621 editing/SmartReplaceICU.cpp \
622 editing/SplitElementCommand.cpp \
623 editing/SplitTextNodeCommand.cpp \
624 editing/SplitTextNodeContainingElementCommand.cpp \
625 editing/TextIterator.cpp \
626 editing/TypingCommand.cpp \
627 editing/UnlinkCommand.cpp \
628 editing/VisiblePosition.cpp \
629 editing/visible_units.cpp \
630 editing/WrapContentsInDummySpanCommand.cpp \
631 history/BackForwardList.cpp \
632 history/CachedPage.cpp \
633 history/HistoryItem.cpp \
634 history/PageCache.cpp \
635 html/CanvasGradient.cpp \
636 html/CanvasPattern.cpp \
637 html/CanvasPixelArray.cpp \
638 html/CanvasRenderingContext2D.cpp \
639 html/CanvasStyle.cpp \
640 html/File.cpp \
641 html/FileList.cpp \
642 html/FormDataList.cpp \
643 html/HTMLAnchorElement.cpp \
644 html/HTMLAppletElement.cpp \
645 html/HTMLAreaElement.cpp \
646 html/HTMLBaseElement.cpp \
647 html/HTMLBaseFontElement.cpp \
648 html/HTMLBlockquoteElement.cpp \
649 html/HTMLBodyElement.cpp \
650 html/HTMLBRElement.cpp \
651 html/HTMLButtonElement.cpp \
652 html/HTMLCanvasElement.cpp \
653 html/HTMLCollection.cpp \
654 html/HTMLDirectoryElement.cpp \
655 html/HTMLDivElement.cpp \
656 html/HTMLDListElement.cpp \
657 html/HTMLDocument.cpp \
658 html/HTMLElement.cpp \
659 html/HTMLElementFactory.cpp \
660 html/HTMLEmbedElement.cpp \
661 html/HTMLFieldSetElement.cpp \
662 html/HTMLFontElement.cpp \
663 html/HTMLFormCollection.cpp \
664 html/HTMLFormElement.cpp \
665 html/HTMLFrameElementBase.cpp \
666 html/HTMLFrameElement.cpp \
667 html/HTMLFrameOwnerElement.cpp \
668 html/HTMLFrameSetElement.cpp \
669 html/HTMLFormControlElement.cpp \
670 html/HTMLHeadElement.cpp \
671 html/HTMLHeadingElement.cpp \
672 html/HTMLHRElement.cpp \
673 html/HTMLHtmlElement.cpp \
674 html/HTMLIFrameElement.cpp \
675 html/HTMLImageElement.cpp \
676 html/HTMLImageLoader.cpp \
677 html/HTMLInputElement.cpp \
678 html/HTMLIsIndexElement.cpp \
679 html/HTMLKeygenElement.cpp \
680 html/HTMLLabelElement.cpp \
681 html/HTMLLegendElement.cpp \
682 html/HTMLLIElement.cpp \
683 html/HTMLLinkElement.cpp \
684 html/HTMLMapElement.cpp \
685 html/HTMLMarqueeElement.cpp \
686 html/HTMLMenuElement.cpp \
687 html/HTMLMetaElement.cpp \
688 html/HTMLModElement.cpp \
689 html/HTMLNameCollection.cpp \
690 html/HTMLObjectElement.cpp \
691 html/HTMLOListElement.cpp \
692 html/HTMLOptGroupElement.cpp \
693 html/HTMLOptionElement.cpp \
694 html/HTMLOptionsCollection.cpp \
695 html/HTMLParagraphElement.cpp \
696 html/HTMLParamElement.cpp \
697 html/HTMLParser.cpp \
698 html/HTMLParserErrorCodes.cpp \
699 html/HTMLPlugInElement.cpp \
700 html/HTMLPlugInImageElement.cpp \
701 html/HTMLPreElement.cpp \
702 html/HTMLQuoteElement.cpp \
703 html/HTMLScriptElement.cpp \
704 html/HTMLSelectElement.cpp \
705 html/HTMLStyleElement.cpp \
706 html/HTMLTableCaptionElement.cpp \
707 html/HTMLTableCellElement.cpp \
708 html/HTMLTableColElement.cpp \
709 html/HTMLTableElement.cpp \
710 html/HTMLTablePartElement.cpp \
711 html/HTMLTableRowElement.cpp \
712 html/HTMLTableRowsCollection.cpp \
713 html/HTMLTableSectionElement.cpp \
714 html/HTMLTextAreaElement.cpp \
715 html/HTMLTitleElement.cpp \
716 html/HTMLTokenizer.cpp \
717 html/HTMLUListElement.cpp \
718 html/HTMLViewSourceDocument.cpp \
719 html/ImageData.cpp \
720 html/PreloadScanner.cpp \
721 inspector/InspectorController.cpp \
722 inspector/JavaScriptCallFrame.cpp \
723 inspector/JavaScriptDebugServer.cpp \
724 inspector/JavaScriptProfile.cpp \
725 inspector/JavaScriptProfileNode.cpp \
726 loader/archive/ArchiveFactory.cpp \
727 loader/archive/ArchiveResource.cpp \
728 loader/archive/ArchiveResourceCollection.cpp \
729 loader/UserStyleSheetLoader.cpp \
730 loader/Cache.cpp \
731 loader/CachedCSSStyleSheet.cpp \
732 loader/CachedFont.cpp \
733 loader/CachedImage.cpp \
734 loader/CachedResourceClientWalker.cpp \
735 loader/CachedResourceHandle.cpp \
736 loader/CachedResource.cpp \
737 loader/CachedScript.cpp \
738 loader/CachedXSLStyleSheet.cpp \
739 loader/DocLoader.cpp \
740 loader/DocumentLoader.cpp \
741 loader/FormState.cpp \
742 loader/FrameLoader.cpp \
743 loader/FTPDirectoryDocument.cpp \
744 loader/FTPDirectoryParser.cpp \
745 loader/icon/IconLoader.cpp \
746 loader/ImageDocument.cpp \
747 loader/ImageLoader.cpp \
748 loader/loader.cpp \
749 loader/MainResourceLoader.cpp \
750 loader/MediaDocument.cpp \
751 loader/NavigationAction.cpp \
752 loader/NetscapePlugInStreamLoader.cpp \
753 loader/PluginDocument.cpp \
754 loader/ProgressTracker.cpp \
755 loader/Request.cpp \
756 loader/ResourceLoader.cpp \
757 loader/SubresourceLoader.cpp \
758 loader/TextDocument.cpp \
759 loader/TextResourceDecoder.cpp \
760 page/AccessibilityImageMapLink.cpp \
761 page/AccessibilityObject.cpp \
762 page/AccessibilityList.cpp \
763 page/AccessibilityListBox.cpp \
764 page/AccessibilityListBoxOption.cpp \
765 page/AccessibilityRenderObject.cpp \
766 page/AccessibilityTable.cpp \
767 page/AccessibilityTableCell.cpp \
768 page/AccessibilityTableColumn.cpp \
769 page/AccessibilityTableHeaderContainer.cpp \
770 page/AccessibilityTableRow.cpp \
771 page/animation/AnimationBase.cpp \
772 page/animation/AnimationController.cpp \
773 page/animation/CompositeAnimation.cpp \
774 page/animation/ImplicitAnimation.cpp \
775 page/animation/KeyframeAnimation.cpp \
776 page/AXObjectCache.cpp \
777 page/BarInfo.cpp \
778 page/Chrome.cpp \
779 page/Console.cpp \
780 page/ContextMenuController.cpp \
781 page/DOMSelection.cpp \
782 page/DOMWindow.cpp \
783 page/Navigator.cpp \
784 page/DragController.cpp \
785 page/EventHandler.cpp \
786 page/FocusController.cpp \
787 page/Frame.cpp \
788 page/FrameTree.cpp \
789 page/FrameView.cpp \
790 page/Geolocation.cpp \
791 page/Geoposition.cpp \
792 page/History.cpp \
793 page/Location.cpp \
794 page/MouseEventWithHitTestResults.cpp \
795 page/Page.cpp \
796 page/PageGroup.cpp \
797 page/PrintContext.cpp \
798 page/SecurityOrigin.cpp \
799 page/Screen.cpp \
800 page/Settings.cpp \
801 page/WindowFeatures.cpp \
802 plugins/PluginData.cpp \
803 plugins/PluginArray.cpp \
804 plugins/Plugin.cpp \
805 plugins/PluginMainThreadScheduler.cpp \
806 plugins/MimeType.cpp \
807 plugins/MimeTypeArray.cpp \
808 platform/Arena.cpp \
809 platform/text/AtomicString.cpp \
810 platform/text/Base64.cpp \
811 platform/text/BidiContext.cpp \
812 platform/ContextMenu.cpp \
813 platform/text/CString.cpp \
814 platform/DeprecatedPtrListImpl.cpp \
815 platform/DeprecatedValueListImpl.cpp \
816 platform/DragData.cpp \
817 platform/DragImage.cpp \
818 platform/FileChooser.cpp \
819 platform/GeolocationService.cpp \
820 platform/graphics/FontDescription.cpp \
821 platform/graphics/FontFamily.cpp \
822 platform/graphics/AffineTransform.cpp \
823 platform/graphics/BitmapImage.cpp \
824 platform/graphics/Color.cpp \
825 platform/graphics/FloatPoint3D.cpp \
826 platform/graphics/FloatPoint.cpp \
827 platform/graphics/FloatRect.cpp \
828 platform/graphics/FloatSize.cpp \
829 platform/graphics/FontData.cpp \
830 platform/graphics/GeneratedImage.cpp \
831 platform/graphics/Gradient.cpp \
832 platform/graphics/GraphicsContext.cpp \
833 platform/graphics/GraphicsTypes.cpp \
834 platform/graphics/Image.cpp \
835 platform/graphics/IntRect.cpp \
836 platform/graphics/Path.cpp \
837 platform/graphics/PathTraversalState.cpp \
838 platform/graphics/Pattern.cpp \
839 platform/graphics/Pen.cpp \
840 platform/graphics/SegmentedFontData.cpp \
841 platform/KURL.cpp \
842 platform/Length.cpp \
843 platform/Logging.cpp \
844 platform/MIMETypeRegistry.cpp \
845 platform/network/AuthenticationChallengeBase.cpp \
846 platform/network/Credential.cpp \
847 platform/network/FormData.cpp \
848 platform/network/HTTPParsers.cpp \
849 platform/network/NetworkStateNotifier.cpp \
850 platform/network/ProtectionSpace.cpp \
851 platform/network/ResourceErrorBase.cpp \
852 platform/network/ResourceHandle.cpp \
853 platform/network/ResourceRequestBase.cpp \
854 platform/network/ResourceResponseBase.cpp \
855 platform/text/RegularExpression.cpp \
856 platform/Scrollbar.cpp \
857 platform/ScrollbarThemeComposite.cpp \
858 platform/ScrollView.cpp \
859 # platform/SearchPopupMenu.cpp \
860 platform/text/SegmentedString.cpp \
861 platform/SharedBuffer.cpp \
862 platform/text/String.cpp \
863 platform/text/StringBuilder.cpp \
864 platform/text/StringImpl.cpp \
865 platform/text/TextCodec.cpp \
866 platform/text/TextCodecLatin1.cpp \
867 platform/text/TextCodecUserDefined.cpp \
868 platform/text/TextCodecUTF16.cpp \
869 platform/text/TextDecoder.cpp \
870 platform/text/TextEncoding.cpp \
871 platform/text/TextEncodingRegistry.cpp \
872 platform/text/TextStream.cpp \
873 platform/Timer.cpp \
874 platform/text/UnicodeRange.cpp \
875 platform/Widget.cpp \
876 plugins/PluginDatabase.cpp \
877 plugins/PluginInfoStore.cpp \
878 plugins/PluginPackage.cpp \
879 plugins/PluginStream.cpp \
880 plugins/PluginView.cpp \
881 rendering/AutoTableLayout.cpp \
882 rendering/bidi.cpp \
883 rendering/break_lines.cpp \
884 rendering/CounterNode.cpp \
885 rendering/EllipsisBox.cpp \
886 rendering/FixedTableLayout.cpp \
887 rendering/HitTestResult.cpp \
888 rendering/InlineBox.cpp \
889 rendering/InlineFlowBox.cpp \
890 rendering/InlineTextBox.cpp \
891 rendering/LayoutState.cpp \
892 rendering/ListMarkerBox.cpp \
893 rendering/RenderApplet.cpp \
894 rendering/RenderArena.cpp \
895 rendering/RenderBlock.cpp \
896 rendering/RenderBox.cpp \
897 rendering/RenderBR.cpp \
898 rendering/RenderButton.cpp \
899 rendering/RenderContainer.cpp \
900 rendering/RenderCounter.cpp \
901 rendering/RenderFieldset.cpp \
902 rendering/RenderFileUploadControl.cpp \
903 rendering/RenderFlexibleBox.cpp \
904 rendering/RenderFlow.cpp \
905 rendering/RenderFrame.cpp \
906 rendering/RenderFrameSet.cpp \
907 rendering/RenderHTMLCanvas.cpp \
908 rendering/RenderImage.cpp \
909 rendering/RenderImageGeneratedContent.cpp \
910 rendering/RenderInline.cpp \
911 rendering/RenderLayer.cpp \
912 rendering/RenderLegend.cpp \
913 rendering/RenderListBox.cpp \
914 rendering/RenderListItem.cpp \
915 rendering/RenderListMarker.cpp \
916 rendering/RenderMarquee.cpp \
917 rendering/RenderMenuList.cpp \
918 rendering/RenderObject.cpp \
919 rendering/RenderPart.cpp \
920 rendering/RenderPartObject.cpp \
921 rendering/RenderReplaced.cpp \
922 rendering/RenderReplica.cpp \
923 rendering/RenderScrollbar.cpp \
924 rendering/RenderScrollbarPart.cpp \
925 rendering/RenderScrollbarTheme.cpp \
926 rendering/RenderSlider.cpp \
927 rendering/RenderTableCell.cpp \
928 rendering/RenderTableCol.cpp \
929 rendering/RenderTable.cpp \
930 rendering/RenderTableRow.cpp \
931 rendering/RenderTableSection.cpp \
932 rendering/RenderTextControl.cpp \
933 rendering/RenderText.cpp \
934 rendering/RenderTextFragment.cpp \
935 rendering/RenderTheme.cpp \
936 rendering/RenderTreeAsText.cpp \
937 rendering/RenderView.cpp \
938 rendering/RenderWidget.cpp \
939 rendering/RenderWordBreak.cpp \
940 rendering/RootInlineBox.cpp \
941 rendering/SVGRenderTreeAsText.cpp \
942 rendering/TextControlInnerElements.cpp \
943 rendering/style/Animation.cpp \
944 rendering/style/AnimationList.cpp \
945 rendering/style/BindingURI.cpp \
946 rendering/style/ContentData.cpp \
947 rendering/style/CounterDirectives.cpp \
948 rendering/style/CursorData.h \
949 rendering/style/CursorList.h \
950 rendering/style/FillLayer.cpp \
951 rendering/style/KeyframeList.cpp \
952 rendering/style/MatrixTransformOperation.cpp \
953 rendering/style/NinePieceImage.cpp \
954 rendering/style/RenderStyle.cpp \
955 rendering/style/RotateTransformOperation.cpp \
956 rendering/style/ScaleTransformOperation.cpp \
957 rendering/style/ShadowData.cpp \
958 rendering/style/SkewTransformOperation.cpp \
959 rendering/style/StyleBackgroundData.cpp \
960 rendering/style/StyleBoxData.cpp \
961 rendering/style/StyleCachedImage.cpp \
962 rendering/style/StyleFlexibleBoxData.cpp \
963 rendering/style/StyleGeneratedImage.cpp \
964 rendering/style/StyleInheritedData.cpp \
965 rendering/style/StyleInheritedData.h \
966 rendering/style/StyleMarqueeData.cpp \
967 rendering/style/StyleMultiColData.cpp \
968 rendering/style/StyleRareInheritedData.cpp \
969 rendering/style/StyleRareInheritedData.h \
970 rendering/style/StyleRareNonInheritedData.cpp \
971 rendering/style/StyleRareNonInheritedData.h \
972 rendering/style/StyleReflection.h \
973 rendering/style/StyleSurroundData.cpp \
974 rendering/style/StyleTransformData.cpp \
975 rendering/style/StyleVisualData.cpp \
976 rendering/style/TransformOperations.cpp \
977 rendering/style/TranslateTransformOperation.cpp \
978 xml/DOMParser.cpp \
979 xml/NativeXPathNSResolver.cpp \
980 xml/XMLHttpRequest.cpp \
981 xml/XMLHttpRequestUpload.cpp \
982 xml/XMLSerializer.cpp \
983 xml/XPathEvaluator.cpp \
984 xml/XPathExpression.cpp \
985 xml/XPathExpressionNode.cpp \
986 xml/XPathFunctions.cpp \
987 xml/XPathNamespace.cpp \
988 xml/XPathNodeSet.cpp \
989 xml/XPathNSResolver.cpp \
990 xml/XPathParser.cpp \
991 xml/XPathPath.cpp \
992 xml/XPathPredicate.cpp \
993 xml/XPathResult.cpp \
994 xml/XPathStep.cpp \
995 xml/XPathUtil.cpp \
996 xml/XPathValue.cpp \
997 xml/XPathVariableReference.cpp \
998 xml/XSLImportRule.cpp \
999 xml/XSLStyleSheet.cpp \
1000 xml/XSLTExtensions.cpp \
1001 xml/XSLTUnicodeSort.cpp \
1002 xml/XSLTProcessor.cpp
1004 HEADERS += \
1005 $$PWD/platform/graphics/qt/StillImageQt.h \
1006 $$PWD/platform/qt/QWebPopup.h \
1007 $$PWD/platform/qt/MenuEventProxy.h \
1008 $$PWD/platform/qt/SharedTimerQt.h \
1009 $$PWD/../WebKit/qt/Api/qwebframe.h \
1010 $$PWD/../WebKit/qt/Api/qwebpage.h \
1011 $$PWD/../WebKit/qt/Api/qwebview.h \
1012 $$PWD/../WebKit/qt/Api/qwebhistoryinterface.h \
1013 $$PWD/../WebKit/qt/Api/qwebpluginfactory.h \
1014 $$PWD/../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h \
1015 $$PWD/platform/network/qt/QNetworkReplyHandler.h
1017 SOURCES += \
1018 bindings/js/ScriptControllerQt.cpp \
1019 bridge/qt/qt_class.cpp \
1020 bridge/qt/qt_instance.cpp \
1021 bridge/qt/qt_runtime.cpp \
1022 page/qt/AccessibilityObjectQt.cpp \
1023 page/qt/DragControllerQt.cpp \
1024 page/qt/EventHandlerQt.cpp \
1025 page/qt/FrameQt.cpp \
1026 platform/graphics/qt/AffineTransformQt.cpp \
1027 platform/graphics/qt/ColorQt.cpp \
1028 platform/graphics/qt/FloatPointQt.cpp \
1029 platform/graphics/qt/FloatRectQt.cpp \
1030 platform/graphics/qt/GradientQt.cpp \
1031 platform/graphics/qt/GraphicsContextQt.cpp \
1032 platform/graphics/qt/IconQt.cpp \
1033 platform/graphics/qt/ImageBufferQt.cpp \
1034 platform/graphics/qt/ImageDecoderQt.cpp \
1035 platform/graphics/qt/ImageQt.cpp \
1036 platform/graphics/qt/ImageSourceQt.cpp \
1037 platform/graphics/qt/IntPointQt.cpp \
1038 platform/graphics/qt/IntRectQt.cpp \
1039 platform/graphics/qt/IntSizeQt.cpp \
1040 platform/graphics/qt/PathQt.cpp \
1041 platform/graphics/qt/PatternQt.cpp \
1042 platform/graphics/qt/StillImageQt.cpp \
1043 platform/network/qt/ResourceHandleQt.cpp \
1044 platform/network/qt/ResourceRequestQt.cpp \
1045 platform/network/qt/QNetworkReplyHandler.cpp \
1046 editing/qt/EditorQt.cpp \
1047 platform/qt/ClipboardQt.cpp \
1048 platform/qt/ContextMenuItemQt.cpp \
1049 platform/qt/ContextMenuQt.cpp \
1050 platform/qt/CookieJarQt.cpp \
1051 platform/qt/CursorQt.cpp \
1052 platform/qt/DragDataQt.cpp \
1053 platform/qt/DragImageQt.cpp \
1054 platform/qt/EventLoopQt.cpp \
1055 platform/qt/FileChooserQt.cpp \
1056 platform/qt/FileSystemQt.cpp \
1057 platform/qt/SharedBufferQt.cpp \
1058 platform/graphics/qt/FontCacheQt.cpp \
1059 platform/graphics/qt/FontCustomPlatformData.cpp \
1060 platform/graphics/qt/FontQt.cpp \
1061 platform/graphics/qt/GlyphPageTreeNodeQt.cpp \
1062 platform/graphics/qt/SimpleFontDataQt.cpp \
1063 platform/qt/KURLQt.cpp \
1064 platform/qt/Localizations.cpp \
1065 platform/qt/MIMETypeRegistryQt.cpp \
1066 platform/qt/PasteboardQt.cpp \
1067 platform/qt/PlatformKeyboardEventQt.cpp \
1068 platform/qt/PlatformMouseEventQt.cpp \
1069 platform/qt/PlatformScreenQt.cpp \
1070 platform/qt/PopupMenuQt.cpp \
1071 platform/qt/QWebPopup.cpp \
1072 platform/qt/RenderThemeQt.cpp \
1073 platform/qt/ScrollbarQt.cpp \
1074 platform/qt/ScrollbarThemeQt.cpp \
1075 platform/qt/ScrollViewQt.cpp \
1076 platform/qt/SearchPopupMenuQt.cpp \
1077 platform/qt/SharedTimerQt.cpp \
1078 platform/qt/SoundQt.cpp \
1079 platform/qt/LoggingQt.cpp \
1080 platform/text/qt/StringQt.cpp \
1081 platform/qt/TemporaryLinkStubs.cpp \
1082 platform/text/qt/TextBoundaries.cpp \
1083 platform/text/qt/TextBreakIteratorQt.cpp \
1084 platform/text/qt/TextCodecQt.cpp \
1085 platform/qt/WheelEventQt.cpp \
1086 platform/qt/WidgetQt.cpp \
1087 plugins/qt/PluginDataQt.cpp \
1088 ../WebKit/qt/WebCoreSupport/ChromeClientQt.cpp \
1089 ../WebKit/qt/WebCoreSupport/ContextMenuClientQt.cpp \
1090 ../WebKit/qt/WebCoreSupport/DragClientQt.cpp \
1091 ../WebKit/qt/WebCoreSupport/EditorClientQt.cpp \
1092 ../WebKit/qt/WebCoreSupport/EditCommandQt.cpp \
1093 ../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp \
1094 ../WebKit/qt/WebCoreSupport/InspectorClientQt.cpp \
1095 ../WebKit/qt/Api/qwebframe.cpp \
1096 ../WebKit/qt/Api/qwebpage.cpp \
1097 ../WebKit/qt/Api/qwebview.cpp \
1098 ../WebKit/qt/Api/qwebhistory.cpp \
1099 ../WebKit/qt/Api/qwebsettings.cpp \
1100 ../WebKit/qt/Api/qwebhistoryinterface.cpp \
1101 ../WebKit/qt/Api/qwebpluginfactory.cpp
1103 win32-*: SOURCES += platform/win/SystemTimeWin.cpp
1104 else: SOURCES += platform/qt/SystemTimeQt.cpp
1106 win32-* {
1107 LIBS += -lgdi32
1108 LIBS += -luser32
1109 LIBS += -lwinmm
1112 # Files belonging to the Qt 4.3 build
1113 lessThan(QT_MINOR_VERSION, 4) {
1114 HEADERS += \
1115 $$PWD/../WebKit/qt/Api/qwebnetworkinterface.h \
1116 $$PWD/../WebKit/qt/Api/qwebnetworkinterface_p.h \
1117 $$PWD/../WebKit/qt/Api/qcookiejar.h
1119 SOURCES += \
1120 ../WebKit/qt/Api/qwebnetworkinterface.cpp \
1121 ../WebKit/qt/Api/qcookiejar.cpp
1123 DEFINES += QT_BEGIN_NAMESPACE="" QT_END_NAMESPACE=""
1126 contains(DEFINES, ENABLE_NETSCAPE_PLUGIN_API=1) {
1128 SOURCES += plugins/npapi.cpp
1130 unix:!mac {
1131 SOURCES += \
1132 plugins/qt/PluginPackageQt.cpp \
1133 plugins/qt/PluginViewQt.cpp
1136 win32-* {
1137 INCLUDEPATH += $$PWD/plugins/win
1139 SOURCES += page/win/PageWin.cpp \
1140 plugins/win/PluginDatabaseWin.cpp \
1141 plugins/win/PluginPackageWin.cpp \
1142 plugins/win/PluginMessageThrottlerWin.cpp \
1143 plugins/win/PluginViewWin.cpp
1145 LIBS += \
1146 -ladvapi32 \
1147 -lgdi32 \
1148 -lshell32 \
1149 -lshlwapi \
1150 -luser32 \
1151 -lversion
1156 contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=0) {
1157 DASHBOARDSUPPORTCSSPROPERTIES -= $$PWD/css/DashboardSupportCSSPropertyNames.in
1160 contains(DEFINES, ENABLE_DATABASE=1) {
1161 FEATURE_DEFINES_JAVASCRIPT += ENABLE_DATABASE=1
1163 CONFIG(QTDIR_build) {
1164 # some what copied from src/plugins/sqldrivers/sqlite/sqlite.pro
1165 system-sqlite {
1166 LIBS *= $$QT_LFLAGS_SQLITE
1167 QMAKE_CXXFLAGS *= $$QT_CFLAGS_SQLITE
1168 } else {
1169 CONFIG(release, debug|release):DEFINES *= NDEBUG
1170 INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/sqlite/
1171 SOURCES += $$QT_SOURCE_TREE/src/3rdparty/sqlite/sqlite3.c
1173 } else {
1174 SQLITE3SRCDIR = $$(SQLITE3SRCDIR)
1175 isEmpty(SQLITE3SRCDIR) {
1176 INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite/
1177 LIBS += -lsqlite3
1178 } else {
1179 CONFIG(release, debug|release):DEFINES *= NDEBUG
1180 INCLUDEPATH += $${SQLITE3SRCDIR}
1181 SOURCES += $${SQLITE3SRCDIR}/sqlite3.c
1185 SOURCES += \
1186 platform/sql/SQLiteAuthorizer.cpp \
1187 platform/sql/SQLiteDatabase.cpp \
1188 platform/sql/SQLiteStatement.cpp \
1189 platform/sql/SQLiteTransaction.cpp \
1190 platform/sql/SQLValue.cpp \
1191 storage/ChangeVersionWrapper.cpp \
1192 storage/DatabaseAuthorizer.cpp \
1193 storage/Database.cpp \
1194 storage/DatabaseTask.cpp \
1195 storage/DatabaseThread.cpp \
1196 storage/DatabaseTracker.cpp \
1197 storage/LocalStorage.cpp \
1198 storage/LocalStorageArea.cpp \
1199 storage/LocalStorageTask.cpp \
1200 storage/LocalStorageThread.cpp \
1201 storage/OriginQuotaManager.cpp \
1202 storage/OriginUsageRecord.cpp \
1203 storage/StorageArea.cpp \
1204 storage/StorageMap.cpp \
1205 storage/SQLResultSet.cpp \
1206 storage/SQLResultSetRowList.cpp \
1207 storage/SQLStatement.cpp \
1208 storage/SQLTransaction.cpp \
1209 bindings/js/JSCustomSQLStatementCallback.cpp \
1210 bindings/js/JSCustomSQLStatementErrorCallback.cpp \
1211 bindings/js/JSCustomSQLTransactionCallback.cpp \
1212 bindings/js/JSCustomSQLTransactionErrorCallback.cpp \
1213 bindings/js/JSDatabaseCustom.cpp \
1214 bindings/js/JSSQLResultSetRowListCustom.cpp \
1215 bindings/js/JSSQLTransactionCustom.cpp
1217 IDL_BINDINGS += \
1218 storage/Database.idl \
1219 storage/SQLError.idl \
1220 storage/SQLResultSet.idl \
1221 storage/SQLResultSetRowList.idl \
1222 storage/SQLTransaction.idl
1225 contains(DEFINES, ENABLE_DOM_STORAGE=1) {
1226 FEATURE_DEFINES_JAVASCRIPT += ENABLE_DOM_STORAGE =1
1228 SOURCES += \
1229 storage/LocalStorage.cpp \
1230 storage/LocalStorageArea.cpp \
1231 storage/Storage.cpp \
1232 storage/StorageArea.cpp \
1233 storage/StorageEvent.cpp \
1234 storage/StorageMap.cpp \
1235 storage/SessionStorage.cpp \
1236 storage/SessionStorageArea.cpp \
1237 bindings/js/JSStorage.cpp \
1238 bindings/js/JSStorageCustom.cpp \
1239 bindings/js/JSStorageEvent.cpp \
1241 IDL_BINDINGS += \
1242 storage/Storage.idl \
1243 storage/StorageEvent.idl
1246 contains(DEFINES, ENABLE_ICONDATABASE=1) {
1247 SOURCES += \
1248 loader/icon/IconDatabase.cpp \
1249 loader/icon/IconRecord.cpp \
1250 loader/icon/PageURLRecord.cpp
1251 } else {
1252 SOURCES += \
1253 loader/icon/IconDatabaseNone.cpp
1256 contains(DEFINES, ENABLE_VIDEO=1) {
1257 FEATURE_DEFINES_JAVASCRIPT += ENABLE_VIDEO=1
1259 IDL_BINDINGS += \
1260 html/HTMLAudioElement.idl \
1261 html/HTMLMediaElement.idl \
1262 html/HTMLSourceElement.idl \
1263 html/HTMLVideoElement.idl \
1264 html/MediaError.idl \
1265 html/TimeRanges.idl \
1266 html/VoidCallback.idl
1268 SOURCES += \
1269 html/HTMLAudioElement.cpp \
1270 html/HTMLMediaElement.cpp \
1271 html/HTMLSourceElement.cpp \
1272 html/HTMLVideoElement.cpp \
1273 html/TimeRanges.cpp \
1274 platform/graphics/MediaPlayer.cpp \
1275 rendering/MediaControlElements.cpp \
1276 rendering/RenderVideo.cpp \
1277 rendering/RenderMedia.cpp \
1278 bindings/js/JSAudioConstructor.cpp
1280 HEADERS += \
1281 platform/graphics/qt/MediaPlayerPrivatePhonon.h
1283 SOURCES += \
1284 platform/graphics/qt/MediaPlayerPrivatePhonon.cpp
1286 # Add phonon manually to prevent it from coming first in
1287 # the include paths, as Phonon's path.h conflicts with
1288 # WebCore's Path.h on case-insensitive filesystems.
1289 qtAddLibrary(phonon)
1290 INCLUDEPATH -= $$QMAKE_INCDIR_QT/phonon
1291 INCLUDEPATH += $$QMAKE_INCDIR_QT/phonon
1292 mac {
1293 INCLUDEPATH -= $$QMAKE_LIBDIR_QT/phonon.framework/Headers
1294 INCLUDEPATH += $$QMAKE_LIBDIR_QT/phonon.framework/Headers
1299 contains(DEFINES, ENABLE_XPATH=1) {
1300 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XPATH=1
1302 XPATHBISON = $$PWD/xml/XPathGrammar.y
1304 IDL_BINDINGS += \
1305 xml/XPathNSResolver.idl \
1306 xml/XPathException.idl \
1307 xml/XPathExpression.idl \
1308 xml/XPathResult.idl \
1309 xml/XPathEvaluator.idl
1312 unix:!mac:CONFIG += link_pkgconfig
1314 contains(DEFINES, ENABLE_XSLT=1) {
1315 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XSLT=1
1316 PKGCONFIG += libxml-2.0 libxslt
1318 macx {
1319 INCLUDEPATH += /usr/include/libxml2
1320 LIBS += -lxml2 -lxslt
1323 win32-msvc* {
1324 LIBS += -llibxml2 -llibxslt
1328 contains(DEFINES, ENABLE_XBL=1) {
1329 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XBL=1
1332 contains(DEFINES, ENABLE_SVG=1) {
1333 FEATURE_DEFINES_JAVASCRIPT += ENABLE_SVG=1
1335 SVG_NAMES = $$PWD/svg/svgtags.in
1337 XLINK_NAMES = $$PWD/svg/xlinkattrs.in
1339 IDL_BINDINGS += \
1340 svg/SVGZoomEvent.idl \
1341 svg/SVGAElement.idl \
1342 svg/SVGAltGlyphElement.idl \
1343 svg/SVGAngle.idl \
1344 svg/SVGAnimateColorElement.idl \
1345 svg/SVGAnimatedAngle.idl \
1346 svg/SVGAnimatedBoolean.idl \
1347 svg/SVGAnimatedEnumeration.idl \
1348 svg/SVGAnimatedInteger.idl \
1349 svg/SVGAnimatedLength.idl \
1350 svg/SVGAnimatedLengthList.idl \
1351 svg/SVGAnimatedNumber.idl \
1352 svg/SVGAnimatedNumberList.idl \
1353 svg/SVGAnimatedPreserveAspectRatio.idl \
1354 svg/SVGAnimatedRect.idl \
1355 svg/SVGAnimatedString.idl \
1356 svg/SVGAnimatedTransformList.idl \
1357 svg/SVGAnimateElement.idl \
1358 svg/SVGAnimateTransformElement.idl \
1359 svg/SVGAnimationElement.idl \
1360 svg/SVGCircleElement.idl \
1361 svg/SVGClipPathElement.idl \
1362 svg/SVGColor.idl \
1363 svg/SVGComponentTransferFunctionElement.idl \
1364 svg/SVGCursorElement.idl \
1365 svg/SVGDefinitionSrcElement.idl \
1366 svg/SVGDefsElement.idl \
1367 svg/SVGDescElement.idl \
1368 svg/SVGDocument.idl \
1369 svg/SVGElement.idl \
1370 svg/SVGElementInstance.idl \
1371 svg/SVGElementInstanceList.idl \
1372 svg/SVGEllipseElement.idl \
1373 svg/SVGException.idl \
1374 svg/SVGFEBlendElement.idl \
1375 svg/SVGFEColorMatrixElement.idl \
1376 svg/SVGFEComponentTransferElement.idl \
1377 svg/SVGFECompositeElement.idl \
1378 svg/SVGFEDiffuseLightingElement.idl \
1379 svg/SVGFEDisplacementMapElement.idl \
1380 svg/SVGFEDistantLightElement.idl \
1381 svg/SVGFEFloodElement.idl \
1382 svg/SVGFEFuncAElement.idl \
1383 svg/SVGFEFuncBElement.idl \
1384 svg/SVGFEFuncGElement.idl \
1385 svg/SVGFEFuncRElement.idl \
1386 svg/SVGFEGaussianBlurElement.idl \
1387 svg/SVGFEImageElement.idl \
1388 svg/SVGFEMergeElement.idl \
1389 svg/SVGFEMergeNodeElement.idl \
1390 svg/SVGFEOffsetElement.idl \
1391 svg/SVGFEPointLightElement.idl \
1392 svg/SVGFESpecularLightingElement.idl \
1393 svg/SVGFESpotLightElement.idl \
1394 svg/SVGFETileElement.idl \
1395 svg/SVGFETurbulenceElement.idl \
1396 svg/SVGFilterElement.idl \
1397 svg/SVGFontElement.idl \
1398 svg/SVGFontFaceElement.idl \
1399 svg/SVGFontFaceFormatElement.idl \
1400 svg/SVGFontFaceNameElement.idl \
1401 svg/SVGFontFaceSrcElement.idl \
1402 svg/SVGFontFaceUriElement.idl \
1403 svg/SVGForeignObjectElement.idl \
1404 svg/SVGGElement.idl \
1405 svg/SVGGlyphElement.idl \
1406 svg/SVGGradientElement.idl \
1407 svg/SVGImageElement.idl \
1408 svg/SVGLength.idl \
1409 svg/SVGLengthList.idl \
1410 svg/SVGLinearGradientElement.idl \
1411 svg/SVGLineElement.idl \
1412 svg/SVGMarkerElement.idl \
1413 svg/SVGMaskElement.idl \
1414 svg/SVGMatrix.idl \
1415 svg/SVGMetadataElement.idl \
1416 svg/SVGMissingGlyphElement.idl \
1417 svg/SVGNumber.idl \
1418 svg/SVGNumberList.idl \
1419 svg/SVGPaint.idl \
1420 svg/SVGPathElement.idl \
1421 svg/SVGPathSegArcAbs.idl \
1422 svg/SVGPathSegArcRel.idl \
1423 svg/SVGPathSegClosePath.idl \
1424 svg/SVGPathSegCurvetoCubicAbs.idl \
1425 svg/SVGPathSegCurvetoCubicRel.idl \
1426 svg/SVGPathSegCurvetoCubicSmoothAbs.idl \
1427 svg/SVGPathSegCurvetoCubicSmoothRel.idl \
1428 svg/SVGPathSegCurvetoQuadraticAbs.idl \
1429 svg/SVGPathSegCurvetoQuadraticRel.idl \
1430 svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl \
1431 svg/SVGPathSegCurvetoQuadraticSmoothRel.idl \
1432 svg/SVGPathSeg.idl \
1433 svg/SVGPathSegLinetoAbs.idl \
1434 svg/SVGPathSegLinetoHorizontalAbs.idl \
1435 svg/SVGPathSegLinetoHorizontalRel.idl \
1436 svg/SVGPathSegLinetoRel.idl \
1437 svg/SVGPathSegLinetoVerticalAbs.idl \
1438 svg/SVGPathSegLinetoVerticalRel.idl \
1439 svg/SVGPathSegList.idl \
1440 svg/SVGPathSegMovetoAbs.idl \
1441 svg/SVGPathSegMovetoRel.idl \
1442 svg/SVGPatternElement.idl \
1443 svg/SVGPoint.idl \
1444 svg/SVGPointList.idl \
1445 svg/SVGPolygonElement.idl \
1446 svg/SVGPolylineElement.idl \
1447 svg/SVGPreserveAspectRatio.idl \
1448 svg/SVGRadialGradientElement.idl \
1449 svg/SVGRectElement.idl \
1450 svg/SVGRect.idl \
1451 svg/SVGRenderingIntent.idl \
1452 svg/SVGScriptElement.idl \
1453 svg/SVGSetElement.idl \
1454 svg/SVGStopElement.idl \
1455 svg/SVGStringList.idl \
1456 svg/SVGStyleElement.idl \
1457 svg/SVGSVGElement.idl \
1458 svg/SVGSwitchElement.idl \
1459 svg/SVGSymbolElement.idl \
1460 svg/SVGTextContentElement.idl \
1461 svg/SVGTextElement.idl \
1462 svg/SVGTextPathElement.idl \
1463 svg/SVGTextPositioningElement.idl \
1464 svg/SVGTitleElement.idl \
1465 svg/SVGTransform.idl \
1466 svg/SVGTransformList.idl \
1467 svg/SVGTRefElement.idl \
1468 svg/SVGTSpanElement.idl \
1469 svg/SVGUnitTypes.idl \
1470 svg/SVGUseElement.idl \
1471 svg/SVGViewElement.idl
1473 SOURCES += \
1474 # TODO: this-one-is-not-auto-added! FIXME! tmp/SVGElementFactory.cpp \
1475 bindings/js/JSSVGElementInstanceCustom.cpp \
1476 bindings/js/JSSVGLengthCustom.cpp \
1477 bindings/js/JSSVGMatrixCustom.cpp \
1478 bindings/js/JSSVGPathSegCustom.cpp \
1479 bindings/js/JSSVGPathSegListCustom.cpp \
1480 bindings/js/JSSVGPointListCustom.cpp \
1481 bindings/js/JSSVGTransformListCustom.cpp \
1482 css/SVGCSSComputedStyleDeclaration.cpp \
1483 css/SVGCSSParser.cpp \
1484 css/SVGCSSStyleSelector.cpp \
1485 rendering/style/SVGRenderStyle.cpp \
1486 rendering/style/SVGRenderStyleDefs.cpp \
1487 svg/SVGZoomEvent.cpp \
1488 rendering/PointerEventsHitRules.cpp \
1489 svg/FilterEffect.cpp \
1490 svg/SVGDocumentExtensions.cpp \
1491 svg/SVGImageLoader.cpp \
1492 svg/ColorDistance.cpp \
1493 svg/SVGAElement.cpp \
1494 svg/SVGAltGlyphElement.cpp \
1495 svg/SVGAngle.cpp \
1496 svg/SVGAnimateColorElement.cpp \
1497 svg/SVGAnimatedPathData.cpp \
1498 svg/SVGAnimatedPoints.cpp \
1499 svg/SVGAnimateElement.cpp \
1500 svg/SVGAnimateMotionElement.cpp \
1501 svg/SVGAnimateTransformElement.cpp \
1502 svg/SVGAnimationElement.cpp \
1503 svg/SVGCircleElement.cpp \
1504 svg/SVGClipPathElement.cpp \
1505 svg/SVGColor.cpp \
1506 svg/SVGComponentTransferFunctionElement.cpp \
1507 svg/SVGCursorElement.cpp \
1508 svg/SVGDefinitionSrcElement.cpp \
1509 svg/SVGDefsElement.cpp \
1510 svg/SVGDescElement.cpp \
1511 svg/SVGDocument.cpp \
1512 svg/SVGElement.cpp \
1513 svg/SVGElementInstance.cpp \
1514 svg/SVGElementInstanceList.cpp \
1515 svg/SVGEllipseElement.cpp \
1516 svg/SVGExternalResourcesRequired.cpp \
1517 svg/SVGFEBlendElement.cpp \
1518 svg/SVGFEColorMatrixElement.cpp \
1519 svg/SVGFEComponentTransferElement.cpp \
1520 svg/SVGFECompositeElement.cpp \
1521 svg/SVGFEDiffuseLightingElement.cpp \
1522 svg/SVGFEDisplacementMapElement.cpp \
1523 svg/SVGFEDistantLightElement.cpp \
1524 svg/SVGFEFloodElement.cpp \
1525 svg/SVGFEFuncAElement.cpp \
1526 svg/SVGFEFuncBElement.cpp \
1527 svg/SVGFEFuncGElement.cpp \
1528 svg/SVGFEFuncRElement.cpp \
1529 svg/SVGFEGaussianBlurElement.cpp \
1530 svg/SVGFEImageElement.cpp \
1531 svg/SVGFELightElement.cpp \
1532 svg/SVGFEMergeElement.cpp \
1533 svg/SVGFEMergeNodeElement.cpp \
1534 svg/SVGFEOffsetElement.cpp \
1535 svg/SVGFEPointLightElement.cpp \
1536 svg/SVGFESpecularLightingElement.cpp \
1537 svg/SVGFESpotLightElement.cpp \
1538 svg/SVGFETileElement.cpp \
1539 svg/SVGFETurbulenceElement.cpp \
1540 svg/SVGFilterElement.cpp \
1541 svg/SVGFilterPrimitiveStandardAttributes.cpp \
1542 svg/SVGFitToViewBox.cpp \
1543 svg/SVGFont.cpp \
1544 svg/SVGFontData.cpp \
1545 svg/SVGFontElement.cpp \
1546 svg/SVGFontFaceElement.cpp \
1547 svg/SVGFontFaceFormatElement.cpp \
1548 svg/SVGFontFaceNameElement.cpp \
1549 svg/SVGFontFaceSrcElement.cpp \
1550 svg/SVGFontFaceUriElement.cpp \
1551 svg/SVGForeignObjectElement.cpp \
1552 svg/SVGGElement.cpp \
1553 svg/SVGGlyphElement.cpp \
1554 svg/SVGGradientElement.cpp \
1555 svg/SVGImageElement.cpp \
1556 svg/SVGLangSpace.cpp \
1557 svg/SVGLength.cpp \
1558 svg/SVGLengthList.cpp \
1559 svg/SVGLinearGradientElement.cpp \
1560 svg/SVGLineElement.cpp \
1561 svg/SVGLocatable.cpp \
1562 svg/SVGMarkerElement.cpp \
1563 svg/SVGMaskElement.cpp \
1564 svg/SVGMetadataElement.cpp \
1565 svg/SVGMissingGlyphElement.cpp \
1566 svg/SVGMPathElement.cpp \
1567 svg/SVGNumberList.cpp \
1568 svg/SVGPaint.cpp \
1569 svg/SVGParserUtilities.cpp \
1570 svg/SVGPathElement.cpp \
1571 svg/SVGPathSegArc.cpp \
1572 svg/SVGPathSegClosePath.cpp \
1573 svg/SVGPathSegCurvetoCubic.cpp \
1574 svg/SVGPathSegCurvetoCubicSmooth.cpp \
1575 svg/SVGPathSegCurvetoQuadratic.cpp \
1576 svg/SVGPathSegCurvetoQuadraticSmooth.cpp \
1577 svg/SVGPathSegLineto.cpp \
1578 svg/SVGPathSegLinetoHorizontal.cpp \
1579 svg/SVGPathSegLinetoVertical.cpp \
1580 svg/SVGPathSegList.cpp \
1581 svg/SVGPathSegMoveto.cpp \
1582 svg/SVGPatternElement.cpp \
1583 svg/SVGPointList.cpp \
1584 svg/SVGPolyElement.cpp \
1585 svg/SVGPolygonElement.cpp \
1586 svg/SVGPolylineElement.cpp \
1587 svg/SVGPreserveAspectRatio.cpp \
1588 svg/SVGRadialGradientElement.cpp \
1589 svg/SVGRectElement.cpp \
1590 svg/SVGScriptElement.cpp \
1591 svg/SVGSetElement.cpp \
1592 svg/SVGStopElement.cpp \
1593 svg/SVGStringList.cpp \
1594 svg/SVGStylable.cpp \
1595 svg/SVGStyledElement.cpp \
1596 svg/SVGStyledLocatableElement.cpp \
1597 svg/SVGStyledTransformableElement.cpp \
1598 svg/SVGStyleElement.cpp \
1599 svg/SVGSVGElement.cpp \
1600 svg/SVGSwitchElement.cpp \
1601 svg/SVGSymbolElement.cpp \
1602 svg/SVGTests.cpp \
1603 svg/SVGTextContentElement.cpp \
1604 svg/SVGTextElement.cpp \
1605 svg/SVGTextPathElement.cpp \
1606 svg/SVGTextPositioningElement.cpp \
1607 svg/SVGTitleElement.cpp \
1608 svg/SVGTransformable.cpp \
1609 svg/SVGTransform.cpp \
1610 svg/SVGTransformDistance.cpp \
1611 svg/SVGTransformList.cpp \
1612 svg/SVGTRefElement.cpp \
1613 svg/SVGTSpanElement.cpp \
1614 svg/SVGURIReference.cpp \
1615 svg/SVGUseElement.cpp \
1616 svg/SVGViewElement.cpp \
1617 svg/SVGViewSpec.cpp \
1618 svg/SVGZoomAndPan.cpp \
1619 svg/animation/SMILTime.cpp \
1620 svg/animation/SMILTimeContainer.cpp \
1621 svg/animation/SVGSMILElement.cpp \
1622 platform/graphics/filters/FEBlend.cpp \
1623 platform/graphics/filters/FEColorMatrix.cpp \
1624 platform/graphics/filters/FEComponentTransfer.cpp \
1625 platform/graphics/filters/FEComposite.cpp \
1626 svg/graphics/filters/SVGFEConvolveMatrix.cpp \
1627 svg/graphics/filters/SVGFEDiffuseLighting.cpp \
1628 svg/graphics/filters/SVGFEDisplacementMap.cpp \
1629 svg/graphics/filters/SVGFEFlood.cpp \
1630 svg/graphics/filters/SVGFEGaussianBlur.cpp \
1631 svg/graphics/filters/SVGFEImage.cpp \
1632 svg/graphics/filters/SVGFEMerge.cpp \
1633 svg/graphics/filters/SVGFEMorphology.cpp \
1634 svg/graphics/filters/SVGFEOffset.cpp \
1635 svg/graphics/filters/SVGFESpecularLighting.cpp \
1636 svg/graphics/filters/SVGFETile.cpp \
1637 svg/graphics/filters/SVGFETurbulence.cpp \
1638 svg/graphics/filters/SVGFilterEffect.cpp \
1639 svg/graphics/filters/SVGLightSource.cpp \
1640 svg/graphics/SVGImage.cpp \
1641 svg/graphics/SVGPaintServer.cpp \
1642 svg/graphics/SVGPaintServerGradient.cpp \
1643 svg/graphics/SVGPaintServerLinearGradient.cpp \
1644 svg/graphics/SVGPaintServerPattern.cpp \
1645 svg/graphics/SVGPaintServerRadialGradient.cpp \
1646 svg/graphics/SVGPaintServerSolid.cpp \
1647 svg/graphics/SVGResourceClipper.cpp \
1648 svg/graphics/SVGResource.cpp \
1649 svg/graphics/SVGResourceFilter.cpp \
1650 svg/graphics/SVGResourceMarker.cpp \
1651 svg/graphics/SVGResourceMasker.cpp \
1652 rendering/RenderForeignObject.cpp \
1653 rendering/RenderPath.cpp \
1654 rendering/RenderSVGBlock.cpp \
1655 rendering/RenderSVGContainer.cpp \
1656 rendering/RenderSVGGradientStop.cpp \
1657 rendering/RenderSVGHiddenContainer.cpp \
1658 rendering/RenderSVGImage.cpp \
1659 rendering/RenderSVGInline.cpp \
1660 rendering/RenderSVGInlineText.cpp \
1661 rendering/RenderSVGRoot.cpp \
1662 rendering/RenderSVGText.cpp \
1663 rendering/RenderSVGTextPath.cpp \
1664 rendering/RenderSVGTransformableContainer.cpp \
1665 rendering/RenderSVGTSpan.cpp \
1666 rendering/RenderSVGViewportContainer.cpp \
1667 rendering/SVGCharacterLayoutInfo.cpp \
1668 rendering/SVGInlineFlowBox.cpp \
1669 rendering/SVGInlineTextBox.cpp \
1670 rendering/SVGRenderSupport.cpp \
1671 rendering/SVGRootInlineBox.cpp
1673 SOURCES += \
1674 svg/graphics/qt/RenderPathQt.cpp \
1675 svg/graphics/qt/SVGPaintServerGradientQt.cpp \
1676 svg/graphics/qt/SVGPaintServerLinearGradientQt.cpp \
1677 svg/graphics/qt/SVGPaintServerPatternQt.cpp \
1678 svg/graphics/qt/SVGPaintServerQt.cpp \
1679 svg/graphics/qt/SVGPaintServerRadialGradientQt.cpp \
1680 svg/graphics/qt/SVGPaintServerSolidQt.cpp \
1681 svg/graphics/qt/SVGResourceClipperQt.cpp \
1682 svg/graphics/qt/SVGResourceFilterQt.cpp \
1683 svg/graphics/qt/SVGResourceMaskerQt.cpp
1686 # GENERATOR 5-C:
1687 svgnames_a.output = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1688 svgnames_a.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --tags $$PWD/svg/svgtags.in --attrs $$PWD/svg/svgattrs.in --extraDefines \"$${DEFINES}\" --preprocessor \"$${QMAKE_MOC} -E\" --factory --wrapperFactory --outputDir $$GENERATED_SOURCES_DIR
1689 svgnames_a.input = SVG_NAMES
1690 svgnames_a.dependency_type = TYPE_C
1691 svgnames_a.CONFIG = target_predeps
1692 svgnames_a.variable_out = GENERATED_SOURCES
1693 addExtraCompilerWithHeader(svgnames_a)
1694 svgnames_b.output = $$GENERATED_SOURCES_DIR/SVGElementFactory.cpp
1695 svgnames_b.commands = @echo -n ''
1696 svgnames_b.input = SVG_NAMES
1697 svgnames_b.depends = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1698 svgnames_b.CONFIG = target_predeps
1699 svgnames_b.variable_out = GENERATED_SOURCES
1700 addExtraCompilerWithHeader(svgnames_b)
1701 svgelementwrapper.output = $$GENERATED_SOURCES_DIR/JSSVGElementWrapperFactory.cpp
1702 svgelementwrapper.commands = @echo -n ''
1703 svgelementwrapper.input = SVG_NAMES
1704 svgelementwrapper.depends = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1705 svgelementwrapper.CONFIG = target_predeps
1706 svgelementwrapper.variable_out = GENERATED_SOURCES
1707 addExtraCompiler(svgelementwrapper)
1708 svgelementwrapper_header.output = $$GENERATED_SOURCES_DIR/JSSVGElementWrapperFactory.h
1709 svgelementwrapper_header.commands = @echo -n ''
1710 svgelementwrapper_header.input = SVG_NAMES
1711 svgelementwrapper_header.depends = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1712 svgelementwrapper_header.CONFIG = target_predeps
1713 svgelementwrapper_header.variable_out = GENERATED_FILES
1714 addExtraCompiler(svgelementwrapper_header)
1716 # GENERATOR 5-D:
1717 xlinknames.output = $$GENERATED_SOURCES_DIR/XLinkNames.cpp
1718 xlinknames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --attrs $$PWD/svg/xlinkattrs.in --preprocessor \"$${QMAKE_MOC} -E\" --outputDir $$GENERATED_SOURCES_DIR
1719 xlinknames.input = XLINK_NAMES
1720 xlinknames.dependency_type = TYPE_C
1721 xlinknames.CONFIG = target_predeps
1722 xlinknames.variable_out = GENERATED_SOURCES
1723 addExtraCompilerWithHeader(xlinknames)
1725 # GENERATOR 6-A:
1726 cssprops.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1727 cssprops.input = WALDOCSSPROPS
1728 cssprops.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$DASHBOARDSUPPORTCSSPROPERTIES $$SVGCSSPROPERTIES > $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makeprop.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf
1729 cssprops.CONFIG = target_predeps no_link
1730 cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES SVGCSSPROPERTIES
1731 addExtraCompilerWithHeader(cssprops)
1733 # GENERATOR 6-B:
1734 cssvalues.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1735 cssvalues.input = WALDOCSSVALUES
1736 cssvalues.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$SVGCSSVALUES > $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makevalues.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.gperf
1737 cssvalues.CONFIG = target_predeps no_link
1738 cssvalues.depend = ${QMAKE_FILE_NAME} SVGCSSVALUES
1739 addExtraCompilerWithHeader(cssvalues)
1740 } else {
1741 # GENERATOR 6-A:
1742 cssprops.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1743 cssprops.input = WALDOCSSPROPS
1744 cssprops.commands = perl -ne \"print lc\" ${QMAKE_FILE_NAME} $$DASHBOARDSUPPORTCSSPROPERTIES > $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.in && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makeprop.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.gperf
1745 cssprops.CONFIG = target_predeps no_link
1746 cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES
1747 addExtraCompilerWithHeader(cssprops)
1749 # GENERATOR 6-B:
1750 cssvalues.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1751 cssvalues.input = WALDOCSSVALUES
1752 cssvalues.commands = $(COPY_FILE) ${QMAKE_FILE_NAME} $$GENERATED_SOURCES_DIR && cd $$GENERATED_SOURCES_DIR && perl $$PWD/css/makevalues.pl && $(DEL_FILE) ${QMAKE_FILE_BASE}.in ${QMAKE_FILE_BASE}.strip ${QMAKE_FILE_BASE}.gperf
1753 cssvalues.CONFIG = target_predeps no_link
1754 cssvalues.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1755 addExtraCompiler(cssvalues)
1759 # GENERATOR 1: IDL compiler
1760 idl.output = $$GENERATED_SOURCES_DIR/JS${QMAKE_FILE_BASE}.cpp
1761 idl.variable_out = GENERATED_SOURCES
1762 idl.input = IDL_BINDINGS
1763 idl.commands = perl -I$$PWD/bindings/scripts $$PWD/bindings/scripts/generate-bindings.pl --defines \"$${FEATURE_DEFINES_JAVASCRIPT}\" --generator JS --include $$PWD/dom --include $$PWD/html --include $$PWD/xml --include $$PWD/svg --outputDir $$GENERATED_SOURCES_DIR --preprocessor \"$${QMAKE_MOC} -E\" ${QMAKE_FILE_NAME}
1764 idl.CONFIG += target_predeps
1765 addExtraCompilerWithHeader(idl)
1767 # GENERATOR 2-A: LUT creator
1768 lut.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.lut.h
1769 lut.commands = perl $$PWD/../JavaScriptCore/kjs/create_hash_table ${QMAKE_FILE_NAME} -n WebCore > ${QMAKE_FILE_OUT}
1770 lut.depend = ${QMAKE_FILE_NAME}
1771 lut.input = LUT_FILES
1772 lut.CONFIG += no_link
1773 addExtraCompiler(lut)
1775 # GENERATOR 2-B: like JavaScriptCore/LUT Generator, but rename output
1776 luttable.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}Table.cpp
1777 luttable.commands = perl $$PWD/../JavaScriptCore/kjs/create_hash_table ${QMAKE_FILE_NAME} -n WebCore > ${QMAKE_FILE_OUT}
1778 luttable.depend = ${QMAKE_FILE_NAME}
1779 luttable.input = LUT_TABLE_FILES
1780 luttable.CONFIG += no_link
1781 luttable.dependency_type = TYPE_C
1782 addExtraCompiler(luttable)
1784 # GENERATOR 3: tokenizer (flex)
1785 tokenizer.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1786 tokenizer.commands = flex -t < ${QMAKE_FILE_NAME} | perl $$PWD/css/maketokenizer > ${QMAKE_FILE_OUT}
1787 tokenizer.dependency_type = TYPE_C
1788 tokenizer.input = TOKENIZER
1789 tokenizer.CONFIG += target_predeps no_link
1790 addExtraCompiler(tokenizer)
1792 # GENERATOR 4: CSS grammar
1793 cssbison.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1794 cssbison.commands = perl $$PWD/css/makegrammar.pl ${QMAKE_FILE_NAME} $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}
1795 cssbison.depend = ${QMAKE_FILE_NAME}
1796 cssbison.input = CSSBISON
1797 cssbison.CONFIG = target_predeps
1798 cssbison.dependency_type = TYPE_C
1799 cssbison.variable_out = GENERATED_SOURCES
1800 addExtraCompilerWithHeader(cssbison)
1802 # GENERATOR 5-A:
1803 htmlnames.output = $$GENERATED_SOURCES_DIR/HTMLNames.cpp
1804 htmlnames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --tags $$PWD/html/HTMLTagNames.in --attrs $$PWD/html/HTMLAttributeNames.in --extraDefines \"$${DEFINES}\" --preprocessor \"$${QMAKE_MOC} -E\" --wrapperFactory --outputDir $$GENERATED_SOURCES_DIR
1805 htmlnames.input = HTML_NAMES
1806 htmlnames.dependency_type = TYPE_C
1807 htmlnames.CONFIG = target_predeps
1808 htmlnames.variable_out = GENERATED_SOURCES
1809 addExtraCompilerWithHeader(htmlnames)
1811 elementwrapperfactory.output = $$GENERATED_SOURCES_DIR/JSHTMLElementWrapperFactory.cpp
1812 elementwrapperfactory.commands = @echo -n ''
1813 elementwrapperfactory.input = HTML_NAMES
1814 elementwrapperfactory.depends = $$GENERATED_SOURCES_DIR/HTMLNames.cpp
1815 elementwrapperfactory.CONFIG = target_predeps
1816 elementwrapperfactory.variable_out = GENERATED_SOURCES
1817 elementwrapperfactory.clean += ${QMAKE_FILE_OUT}
1818 addExtraCompilerWithHeader(elementwrapperfactory)
1820 # GENERATOR 5-B:
1821 xmlnames.output = $$GENERATED_SOURCES_DIR/XMLNames.cpp
1822 xmlnames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --attrs $$PWD/xml/xmlattrs.in --preprocessor \"$${QMAKE_MOC} -E\" --outputDir $$GENERATED_SOURCES_DIR
1823 xmlnames.input = XML_NAMES
1824 xmlnames.dependency_type = TYPE_C
1825 xmlnames.CONFIG = target_predeps
1826 xmlnames.variable_out = GENERATED_SOURCES
1827 addExtraCompilerWithHeader(xmlnames)
1829 # GENERATOR 8-A:
1830 entities.output = $$GENERATED_SOURCES_DIR/HTMLEntityNames.c
1831 entities.commands = gperf -a -L ANSI-C -C -G -c -o -t --key-positions="*" -N findEntity -D -s 2 < $$PWD/html/HTMLEntityNames.gperf > $$GENERATED_SOURCES_DIR/HTMLEntityNames.c
1832 entities.input = ENTITIES_GPERF
1833 entities.dependency_type = TYPE_C
1834 entities.CONFIG = target_predeps no_link
1835 entities.clean = ${QMAKE_FILE_OUT}
1836 addExtraCompiler(entities)
1838 # GENERATOR 8-B:
1839 doctypestrings.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1840 doctypestrings.input = DOCTYPESTRINGS
1841 doctypestrings.commands = perl -e \"print \'$${LITERAL_HASH}include <string.h>\';\" > ${QMAKE_FILE_OUT} && echo // bogus >> ${QMAKE_FILE_OUT} && gperf -CEot -L ANSI-C --key-positions="*" -N findDoctypeEntry -F ,PubIDInfo::eAlmostStandards,PubIDInfo::eAlmostStandards < ${QMAKE_FILE_NAME} >> ${QMAKE_FILE_OUT}
1842 doctypestrings.dependency_type = TYPE_C
1843 doctypestrings.CONFIG += target_predeps no_link
1844 doctypestrings.clean = ${QMAKE_FILE_OUT}
1845 addExtraCompiler(doctypestrings)
1847 # GENERATOR 8-C:
1848 colordata.output = $$GENERATED_SOURCES_DIR/ColorData.c
1849 colordata.commands = perl -e \"print \'$${LITERAL_HASH}include <string.h>\';\" > ${QMAKE_FILE_OUT} && echo // bogus >> ${QMAKE_FILE_OUT} && gperf -CDEot -L ANSI-C --key-positions="*" -N findColor -D -s 2 < ${QMAKE_FILE_NAME} >> ${QMAKE_FILE_OUT}
1850 colordata.input = COLORDAT_GPERF
1851 colordata.CONFIG = target_predeps no_link
1852 addExtraCompiler(colordata)
1854 # GENERATOR 9:
1855 stylesheets.output = $$GENERATED_SOURCES_DIR/UserAgentStyleSheetsData.cpp
1856 stylesheets.commands = perl $$PWD/css/make-css-file-arrays.pl --preprocessor \"$${QMAKE_MOC} -E\" $$GENERATED_SOURCES_DIR/UserAgentStyleSheets.h $$GENERATED_SOURCES_DIR/UserAgentStyleSheetsData.cpp $$PWD/css/html4.css $$PWD/css/quirks.css $$PWD/css/svg.css $$PWD/css/view-source.css
1857 stylesheets.input = STYLESHEETS_EMBED
1858 stylesheets.CONFIG = target_predeps
1859 stylesheets.variable_out = GENERATED_SOURCES
1860 stylesheets.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}UserAgentStyleSheets.h
1861 addExtraCompilerWithHeader(stylesheets, $$GENERATED_SOURCES_DIR/UserAgentStyleSheets.h)
1863 # GENERATOR 10: XPATH grammar
1864 xpathbison.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1865 xpathbison.commands = bison -d -p xpathyy ${QMAKE_FILE_NAME} -o ${QMAKE_FILE_BASE}.tab.c && $(MOVE) ${QMAKE_FILE_BASE}.tab.c $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp && $(MOVE) ${QMAKE_FILE_BASE}.tab.h $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.h
1866 xpathbison.depend = ${QMAKE_FILE_NAME}
1867 xpathbison.input = XPATHBISON
1868 xpathbison.CONFIG = target_predeps
1869 xpathbison.dependency_type = TYPE_C
1870 xpathbison.variable_out = GENERATED_SOURCES
1871 addExtraCompilerWithHeader(xpathbison)
1873 !CONFIG(QTDIR_build) {
1874 target.path = $$[QT_INSTALL_LIBS]
1875 include($$PWD/../WebKit/qt/Api/headers.pri)
1876 headers.files = $$WEBKIT_API_HEADERS
1877 headers.path = $$[QT_INSTALL_HEADERS]/QtWebKit
1878 prf.files = $$PWD/../WebKit/qt/Api/qtwebkit.prf
1879 prf.path = $$[QT_INSTALL_PREFIX]/mkspecs/features
1881 VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION}
1883 win32-* {
1884 DLLDESTDIR = $$OUTPUT_DIR/bin
1886 dlltarget.commands = $(COPY_FILE) $(DESTDIR)$(TARGET) $$[QT_INSTALL_BINS]
1887 dlltarget.CONFIG = no_path
1888 INSTALLS += dlltarget
1892 INSTALLS += target headers prf
1894 unix {
1895 CONFIG += create_pc create_prl
1896 QMAKE_PKGCONFIG_LIBDIR = $$target.path
1897 QMAKE_PKGCONFIG_INCDIR = $$headers.path
1898 QMAKE_PKGCONFIG_DESTDIR = pkgconfig
1899 lib_replace.match = $$DESTDIR
1900 lib_replace.replace = $$[QT_INSTALL_LIBS]
1901 QMAKE_PKGCONFIG_INSTALL_REPLACE += lib_replace