1 # -*- Mode:makefile -*-
2 # WebCore - qmake build info
3 CONFIG += building-libs
4 # do not use implicit rules in nmake Makefiles to avoid the clash
5 # of API/Node.c and dom/Node.cpp
7 include($$PWD/../WebKit.pri)
12 contains(QT_CONFIG, embedded):CONFIG += embedded
15 GENERATED_SOURCES_DIR = $$PWD/generated
16 include($$QT_SOURCE_TREE/src/qbase.pri)
17 PRECOMPILED_HEADER = $$PWD/../WebKit/qt/WebKit_pch.h
21 isEmpty(GENERATED_SOURCES_DIR):GENERATED_SOURCES_DIR = tmp
22 GENERATED_SOURCES_DIR_SLASH = $$GENERATED_SOURCES_DIR/
23 win32-*: GENERATED_SOURCES_DIR_SLASH ~= s|/|\|
25 INCLUDEPATH += $$GENERATED_SOURCES_DIR
27 !CONFIG(QTDIR_build) {
29 DESTDIR = $$OUTPUT_DIR/lib
32 DEPENDPATH += css dom loader editing history html \
33 loader/icon page platform platform/graphics platform/graphics/filters platform/network platform/text plugins rendering rendering/style xml \
34 bindings/js bridge bridge/c bridge/qt
36 include($$OUTPUT_DIR/config.pri)
39 *-g++*:QMAKE_CXXFLAGS += -Wreturn-type -fno-strict-aliasing
40 #QMAKE_CXXFLAGS += -Wall -Wno-undef -Wno-unused-parameter
42 CONFIG(release):!CONFIG(QTDIR_build) {
43 contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
44 unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
47 linux-*: DEFINES += HAVE_STDINT_H
48 freebsd-*: DEFINES += HAVE_PTHREAD_NP_H
50 # PRE-BUILD: make the required config.h file
51 #config_h.target = config.h
52 #config_h.commands = cp config.h.qmake config.h
53 #config_h.depends = config.h.qmake
54 #QMAKE_EXTRA_TARGETS += config_h
55 #PRE_TARGETDEPS += config.h
57 DEFINES += BUILD_WEBKIT
59 !CONFIG(QTDIR_build):win32-*: DEFINES += ENABLE_ICONDATABASE=0 ENABLE_DATABASE=0
61 # Pick up 3rdparty libraries from INCLUDE/LIB just like with MSVC
63 TMPPATH = $$quote($$(INCLUDE))
64 QMAKE_INCDIR_POST += $$split(TMPPATH,";")
65 TMPPATH = $$quote($$(LIB))
66 QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
69 # Optional components (look for defs in config.h and included files!)
70 !contains(DEFINES, ENABLE_CROSS_DOCUMENT_MESSAGING=.): DEFINES += ENABLE_CROSS_DOCUMENT_MESSAGING=1
71 !contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=.): DEFINES += ENABLE_DASHBOARD_SUPPORT=0
72 !contains(DEFINES, ENABLE_DATABASE=.): DEFINES += ENABLE_DATABASE=1
73 !contains(DEFINES, ENABLE_ICONDATABASE=.): DEFINES += ENABLE_ICONDATABASE=1
74 !contains(DEFINES, ENABLE_XPATH=.): DEFINES += ENABLE_XPATH=1
75 #!contains(DEFINES, ENABLE_XBL=.): DEFINES += ENABLE_XBL=1
76 !contains(DEFINES, ENABLE_SVG=.): DEFINES += ENABLE_SVG=1
77 #!contains(DEFINES, ENABLE_SVG_FONTS=.): DEFINES += ENABLE_SVG_FONTS=1
78 !contains(DEFINES, ENABLE_SVG_FILTERS=.): DEFINES += ENABLE_SVG_FILTERS=1
79 !contains(DEFINES, ENABLE_SVG_FOREIGN_OBJECT=.): DEFINES += ENABLE_SVG_FOREIGN_OBJECT=1
80 !contains(DEFINES, ENABLE_SVG_ANIMATION=.): DEFINES += ENABLE_SVG_ANIMATION=1
81 !contains(DEFINES, ENABLE_SVG_AS_IMAGE=.): DEFINES += ENABLE_SVG_AS_IMAGE=1
82 !contains(DEFINES, ENABLE_SVG_USE=.): DEFINES += ENABLE_SVG_USE=1
83 contains(QT_CONFIG, phonon):DEFINES += ENABLE_VIDEO=1
84 else:DEFINES += ENABLE_VIDEO=0
85 unix:!mac:!embedded: DEFINES += XP_UNIX ENABLE_NETSCAPE_PLUGIN_API=1
86 win32: DEFINES += ENABLE_NETSCAPE_PLUGIN_API=1
87 DEFINES += WTF_USE_JAVASCRIPTCORE_BINDINGS=1
89 DEFINES += WTF_CHANGES=1
92 # For builds inside Qt we interpret the output rule and the input of each extra compiler manually
93 # and add the resulting sources to the SOURCES variable, because the build inside Qt contains already
94 # all the generated files. We do not need to generate any extra compiler rules in that case.
96 # In addition this function adds a new target called 'generated_files' that allows manually calling
97 # all the extra compilers to generate all the necessary files for the build using 'make generated_files'
99 defineTest(addExtraCompiler) {
100 CONFIG(QTDIR_build) {
101 outputRule = $$eval($${1}.output)
103 input = $$eval($${1}.input)
104 input = $$eval($$input)
107 base = $$basename(file)
109 newfile=$$replace(outputRule,\\$\\{QMAKE_FILE_BASE\\},$$base)
115 QMAKE_EXTRA_COMPILERS += $$1
116 generated_files.depends += compiler_$${1}_make_all
117 export(QMAKE_EXTRA_COMPILERS)
118 export(generated_files.depends)
123 include($$PWD/../JavaScriptCore/JavaScriptCore.pri)
125 #INCLUDEPATH += $$PWD/../JavaScriptCore
126 #LIBS += -L$$OUTPUT_DIR/lib -lJavaScriptCore
129 $$PWD/../WebCore/page/inspector/WebKit.qrc \
130 $$PWD/../WebCore/Resources/WebKitResources.qrc \
131 $$PWD/../WebCore/platform/qt/WebCoreResources.qrc
134 $$PWD/platform/network/qt \
135 $$PWD/platform/graphics/filters \
136 $$PWD/platform/graphics/qt \
137 $$PWD/svg/graphics/qt \
140 $$PWD/../WebKit/qt/WebCoreSupport \
141 $$PWD/../WebKit/qt/Api \
144 DEPENDPATH += editing/qt history/qt loader/qt page/qt \
145 platform/graphics/qt ../WebKit/qt/Api ../WebKit/qt/WebCoreSupport
147 # Make sure storage/ appears before JavaScriptCore/kjs. Both provide LocalStorage.h
148 # but the header from the former include path is included across directories while
149 # kjs/LocalStorage.h is included only from files within the same directory
150 INCLUDEPATH = $$PWD/storage $$INCLUDEPATH
152 INCLUDEPATH += $$PWD \
153 $$PWD/ForwardingHeaders \
155 $$PWD/../JavaScriptCore/VM \
156 $$PWD/../JavaScriptCore/kjs \
157 $$PWD/../JavaScriptCore/bindings \
158 $$PWD/../JavaScriptCore/wtf \
160 $$PWD/platform/network \
161 $$PWD/platform/graphics \
162 $$PWD/svg/animation \
164 $$PWD/svg/graphics/filters \
166 $$PWD/platform/text \
168 $$PWD/loader/appcache \
169 $$PWD/loader/archive \
177 $$PWD/rendering/style \
183 $$PWD/platform/image-decoders \
190 lessThan(QT_MINOR_VERSION, 4): QT += xml
192 QMAKE_EXTRA_TARGETS += generated_files
194 FEATURE_DEFINES_JAVASCRIPT = LANGUAGE_JAVASCRIPT=1
196 TOKENIZER = $$PWD/css/tokenizer.flex
198 DOCTYPESTRINGS = $$PWD/html/DocTypeStrings.gperf
200 CSSBISON = $$PWD/css/CSSGrammar.y
202 HTML_NAMES = $$PWD/html/HTMLTagNames.in
204 XML_NAMES = $$PWD/xml/xmlattrs.in
206 ENTITIES_GPERF = $$PWD/html/HTMLEntityNames.gperf
208 COLORDAT_GPERF = $$PWD/platform/ColorData.gperf
210 WALDOCSSPROPS = $$PWD/css/CSSPropertyNames.in
212 WALDOCSSVALUES = $$PWD/css/CSSValueKeywords.in
214 DASHBOARDSUPPORTCSSPROPERTIES = $$PWD/css/DashboardSupportCSSPropertyNames.in
216 SVGCSSPROPERTIES = $$PWD/css/SVGCSSPropertyNames.in
218 SVGCSSVALUES = $$PWD/css/SVGCSSValueKeywords.in
220 STYLESHEETS_EMBED = $$PWD/css/html4.css
223 bindings/js/JSDOMWindowBase.cpp \
224 bindings/js/JSEventTargetBase.cpp \
225 bindings/js/JSRGBColor.cpp
228 bindings/js/JSHTMLInputElementBase.cpp
232 css/CSSCharsetRule.idl \
233 css/CSSFontFaceRule.idl \
234 css/CSSImportRule.idl \
235 css/CSSMediaRule.idl \
236 css/CSSPageRule.idl \
237 css/CSSPrimitiveValue.idl \
239 css/CSSRuleList.idl \
240 css/CSSStyleDeclaration.idl \
241 css/CSSStyleRule.idl \
242 css/CSSStyleSheet.idl \
244 css/CSSValueList.idl \
245 css/CSSVariablesDeclaration.idl \
246 css/CSSVariablesRule.idl \
250 css/StyleSheetList.idl \
251 css/WebKitCSSTransformValue.idl \
253 dom/CharacterData.idl \
255 dom/CDATASection.idl \
257 dom/DocumentFragment.idl \
259 dom/DocumentType.idl \
260 dom/DOMCoreException.idl \
261 dom/DOMImplementation.idl \
264 dom/EntityReference.idl \
266 dom/EventException.idl \
267 # dom/EventListener.idl \
268 # dom/EventTarget.idl \
269 dom/KeyboardEvent.idl \
271 dom/MutationEvent.idl \
272 dom/NamedNodeMap.idl \
275 dom/NodeIterator.idl \
278 dom/OverflowEvent.idl \
279 dom/ProcessingInstruction.idl \
280 dom/ProgressEvent.idl \
281 dom/RangeException.idl \
288 html/CanvasGradient.idl \
289 html/CanvasPattern.idl \
290 html/CanvasPixelArray.idl \
291 html/CanvasRenderingContext2D.idl \
294 html/HTMLAnchorElement.idl \
295 html/HTMLAppletElement.idl \
296 html/HTMLAreaElement.idl \
297 html/HTMLBaseElement.idl \
298 html/HTMLBaseFontElement.idl \
299 html/HTMLBlockquoteElement.idl \
300 html/HTMLBodyElement.idl \
301 html/HTMLBRElement.idl \
302 html/HTMLButtonElement.idl \
303 html/HTMLCanvasElement.idl \
304 html/HTMLCollection.idl \
305 html/HTMLDirectoryElement.idl \
306 html/HTMLDivElement.idl \
307 html/HTMLDListElement.idl \
308 html/HTMLDocument.idl \
309 html/HTMLElement.idl \
310 html/HTMLEmbedElement.idl \
311 html/HTMLFieldSetElement.idl \
312 html/HTMLFontElement.idl \
313 html/HTMLFormElement.idl \
314 html/HTMLFrameElement.idl \
315 html/HTMLFrameSetElement.idl \
316 html/HTMLHeadElement.idl \
317 html/HTMLHeadingElement.idl \
318 html/HTMLHRElement.idl \
319 html/HTMLHtmlElement.idl \
320 html/HTMLIFrameElement.idl \
321 html/HTMLImageElement.idl \
322 html/HTMLInputElement.idl \
323 html/HTMLIsIndexElement.idl \
324 html/HTMLLabelElement.idl \
325 html/HTMLLegendElement.idl \
326 html/HTMLLIElement.idl \
327 html/HTMLLinkElement.idl \
328 html/HTMLMapElement.idl \
329 html/HTMLMarqueeElement.idl \
330 html/HTMLMenuElement.idl \
331 html/HTMLMetaElement.idl \
332 html/HTMLModElement.idl \
333 html/HTMLObjectElement.idl \
334 html/HTMLOListElement.idl \
335 html/HTMLOptGroupElement.idl \
336 html/HTMLOptionElement.idl \
337 html/HTMLOptionsCollection.idl \
338 html/HTMLParagraphElement.idl \
339 html/HTMLParamElement.idl \
340 html/HTMLPreElement.idl \
341 html/HTMLQuoteElement.idl \
342 html/HTMLScriptElement.idl \
343 html/HTMLSelectElement.idl \
344 html/HTMLStyleElement.idl \
345 html/HTMLTableCaptionElement.idl \
346 html/HTMLTableCellElement.idl \
347 html/HTMLTableColElement.idl \
348 html/HTMLTableElement.idl \
349 html/HTMLTableRowElement.idl \
350 html/HTMLTableSectionElement.idl \
351 html/HTMLTextAreaElement.idl \
352 html/HTMLTitleElement.idl \
353 html/HTMLUListElement.idl \
357 page/DOMSelection.idl \
360 page/JavaScriptCallFrame.idl \
365 plugins/MimeType.idl \
366 plugins/PluginArray.idl \
367 plugins/MimeTypeArray.idl \
369 xml/XMLHttpRequest.idl \
370 xml/XMLHttpRequestException.idl \
371 xml/XMLHttpRequestProgressEvent.idl \
372 xml/XMLSerializer.idl \
373 xml/XSLTProcessor.idl
377 bindings/js/GCController.cpp \
378 bindings/js/JSAttrCustom.cpp \
379 bindings/js/JSCanvasPixelArrayCustom.cpp \
380 bindings/js/JSCanvasRenderingContext2DCustom.cpp \
381 bindings/js/JSClipboardCustom.cpp \
382 bindings/js/JSConsoleCustom.cpp \
383 bindings/js/JSCSSRuleCustom.cpp \
384 bindings/js/JSCSSStyleDeclarationCustom.cpp \
385 bindings/js/JSCSSValueCustom.cpp \
386 bindings/js/JSCustomVoidCallback.cpp \
387 bindings/js/JSCustomXPathNSResolver.cpp \
388 bindings/js/JSDocumentCustom.cpp \
389 bindings/js/JSDocumentFragmentCustom.cpp \
390 bindings/js/JSDOMWindowBase.cpp \
391 bindings/js/JSDOMWindowCustom.cpp \
392 bindings/js/JSDOMWindowShell.cpp \
393 bindings/js/JSElementCustom.cpp \
394 bindings/js/JSEventCustom.cpp \
395 bindings/js/JSEventTargetBase.cpp \
396 bindings/js/JSEventTargetNode.cpp \
397 bindings/js/JSHistoryCustom.cpp \
398 bindings/js/JSJavaScriptCallFrameCustom.cpp \
399 bindings/js/JSHTMLAppletElementCustom.cpp \
400 bindings/js/JSHTMLCollectionCustom.cpp \
401 bindings/js/JSHTMLDocumentCustom.cpp \
402 bindings/js/JSHTMLElementCustom.cpp \
403 bindings/js/JSHTMLEmbedElementCustom.cpp \
404 bindings/js/JSHTMLFormElementCustom.cpp \
405 bindings/js/JSHTMLFrameElementCustom.cpp \
406 bindings/js/JSHTMLFrameSetElementCustom.cpp \
407 bindings/js/JSHTMLIFrameElementCustom.cpp \
408 bindings/js/JSHTMLInputElementBase.cpp \
409 bindings/js/JSHTMLObjectElementCustom.cpp \
410 bindings/js/JSHTMLOptionElementConstructor.cpp \
411 bindings/js/JSHTMLOptionsCollectionCustom.cpp \
412 bindings/js/JSHTMLSelectElementCustom.cpp \
413 bindings/js/JSImageConstructor.cpp \
414 bindings/js/JSInspectedObjectWrapper.cpp \
415 bindings/js/JSInspectorCallbackWrapper.cpp \
416 bindings/js/JSLocationCustom.cpp \
417 bindings/js/JSNamedNodeMapCustom.cpp \
418 bindings/js/JSNamedNodesCollection.cpp \
419 bindings/js/JSNavigatorCustom.cpp \
420 bindings/js/JSNodeCustom.cpp \
421 bindings/js/JSNodeFilterCondition.cpp \
422 bindings/js/JSNodeFilterCustom.cpp \
423 bindings/js/JSNodeIteratorCustom.cpp \
424 bindings/js/JSNodeListCustom.cpp \
425 bindings/js/JSNSResolver.cpp \
426 bindings/js/JSQuarantinedObjectWrapper.cpp \
427 bindings/js/JSRGBColor.cpp \
428 bindings/js/JSStyleSheetCustom.cpp \
429 bindings/js/JSStyleSheetListCustom.cpp \
430 bindings/js/JSTreeWalkerCustom.cpp \
431 bindings/js/JSXMLHttpRequestConstructor.cpp \
432 bindings/js/JSXMLHttpRequestCustom.cpp \
433 bindings/js/JSXSLTProcessorConstructor.cpp \
434 bindings/js/JSXSLTProcessorCustom.cpp \
435 bindings/js/JSPluginCustom.cpp \
436 bindings/js/JSPluginArrayCustom.cpp \
437 bindings/js/JSMimeTypeArrayCustom.cpp \
438 bindings/js/JSDOMBinding.cpp \
439 bindings/js/JSEventListener.cpp \
440 bindings/js/JSPluginElementFunctions.cpp \
441 bindings/js/ScriptController.cpp \
442 bindings/js/PausedTimeouts.cpp \
443 bindings/js/ScheduledAction.cpp \
444 bridge/NP_jsobject.cpp \
445 bridge/npruntime.cpp \
446 bridge/runtime_array.cpp \
448 bridge/runtime_method.cpp \
449 bridge/runtime_object.cpp \
450 bridge/runtime_root.cpp \
451 bridge/c/c_class.cpp \
452 bridge/c/c_instance.cpp \
453 bridge/c/c_runtime.cpp \
454 bridge/c/c_utility.cpp \
455 css/CSSBorderImageValue.cpp \
456 css/CSSCanvasValue.cpp \
457 css/CSSCharsetRule.cpp \
458 css/CSSComputedStyleDeclaration.cpp \
459 css/CSSCursorImageValue.cpp \
460 css/CSSFontFace.cpp \
461 css/CSSFontFaceRule.cpp \
462 css/CSSFontFaceSrcValue.cpp \
463 css/CSSFontSelector.cpp \
464 css/CSSFontFaceSource.cpp \
465 css/CSSFunctionValue.cpp \
466 css/CSSGradientValue.cpp \
468 css/CSSImageValue.cpp \
469 css/CSSImageGeneratorValue.cpp \
470 css/CSSImportRule.cpp \
471 css/CSSInheritedValue.cpp \
472 css/CSSInitialValue.cpp \
473 css/CSSMediaRule.cpp \
474 css/CSSMutableStyleDeclaration.cpp \
475 css/CSSPageRule.cpp \
477 css/CSSParserValues.cpp \
478 css/CSSPrimitiveValue.cpp \
479 css/CSSProperty.cpp \
480 css/CSSReflectValue.cpp \
482 css/CSSRuleList.cpp \
483 css/CSSSelector.cpp \
484 css/CSSSegmentedFontFace.cpp \
485 css/CSSStyleDeclaration.cpp \
486 css/CSSStyleRule.cpp \
487 css/CSSStyleSelector.cpp \
488 css/CSSStyleSheet.cpp \
489 css/CSSTimingFunctionValue.cpp \
490 css/CSSUnicodeRangeValue.cpp \
491 css/CSSValueList.cpp \
492 css/CSSVariableDependentValue.cpp \
493 css/CSSVariablesDeclaration.cpp \
494 css/CSSVariablesRule.cpp \
495 css/FontFamilyValue.cpp \
497 css/MediaFeatureNames.cpp \
500 css/MediaQueryEvaluator.cpp \
501 css/MediaQueryExp.cpp \
502 css/ShadowValue.cpp \
506 css/StyleSheetList.cpp \
507 css/WebKitCSSTransformValue.cpp \
510 dom/BeforeTextInsertedEvent.cpp \
511 dom/BeforeUnloadEvent.cpp \
512 dom/CDATASection.cpp \
513 dom/CharacterData.cpp \
514 dom/ChildNodeList.cpp \
516 dom/ClassNodeList.cpp \
518 dom/ClipboardEvent.cpp \
520 dom/ContainerNode.cpp \
521 dom/CSSMappedAttributeDeclaration.cpp \
523 dom/DocumentFragment.cpp \
524 dom/DocumentType.cpp \
525 dom/DOMImplementation.cpp \
526 dom/DynamicNodeList.cpp \
527 dom/EditingText.cpp \
530 dom/EntityReference.cpp \
533 dom/EventTarget.cpp \
534 dom/EventTargetNode.cpp \
535 dom/ExceptionBase.cpp \
536 dom/ExceptionCode.cpp \
537 dom/KeyboardEvent.cpp \
538 dom/MappedAttribute.cpp \
540 dom/MouseRelatedEvent.cpp \
541 dom/MutationEvent.cpp \
542 dom/NamedAttrMap.cpp \
543 dom/NamedMappedAttrMap.cpp \
544 dom/NameNodeList.cpp \
546 dom/NodeFilterCondition.cpp \
548 dom/NodeIterator.cpp \
550 dom/OverflowEvent.cpp \
552 dom/PositionIterator.cpp \
553 dom/ProcessingInstruction.cpp \
554 dom/ProgressEvent.cpp \
555 dom/QualifiedName.cpp \
557 dom/RegisteredEventListener.cpp \
558 dom/SelectorNodeList.cpp \
559 dom/StaticNodeList.cpp \
560 dom/StyledElement.cpp \
561 dom/StyleElement.cpp \
562 dom/TagNodeList.cpp \
568 dom/UIEventWithKeyState.cpp \
570 dom/XMLTokenizer.cpp \
571 editing/AppendNodeCommand.cpp \
572 editing/ApplyStyleCommand.cpp \
573 editing/BreakBlockquoteCommand.cpp \
574 editing/CompositeEditCommand.cpp \
575 editing/CreateLinkCommand.cpp \
576 editing/DeleteButtonController.cpp \
577 editing/DeleteButton.cpp \
578 editing/DeleteFromTextNodeCommand.cpp \
579 editing/DeleteSelectionCommand.cpp \
580 editing/EditCommand.cpp \
582 editing/EditorCommand.cpp \
583 editing/FormatBlockCommand.cpp \
584 editing/htmlediting.cpp \
585 editing/HTMLInterchange.cpp \
586 editing/IndentOutdentCommand.cpp \
587 editing/InsertIntoTextNodeCommand.cpp \
588 editing/InsertLineBreakCommand.cpp \
589 editing/InsertListCommand.cpp \
590 editing/InsertNodeBeforeCommand.cpp \
591 editing/InsertParagraphSeparatorCommand.cpp \
592 editing/InsertTextCommand.cpp \
593 editing/JoinTextNodesCommand.cpp \
595 editing/MergeIdenticalElementsCommand.cpp \
596 editing/ModifySelectionListLevel.cpp \
597 editing/MoveSelectionCommand.cpp \
598 editing/RemoveCSSPropertyCommand.cpp \
599 editing/RemoveFormatCommand.cpp \
600 editing/RemoveNodeAttributeCommand.cpp \
601 editing/RemoveNodeCommand.cpp \
602 editing/RemoveNodePreservingChildrenCommand.cpp \
603 editing/ReplaceSelectionCommand.cpp \
604 editing/SelectionController.cpp \
605 editing/Selection.cpp \
606 editing/SetNodeAttributeCommand.cpp \
607 editing/SmartReplace.cpp \
608 editing/SmartReplaceICU.cpp \
609 editing/SplitElementCommand.cpp \
610 editing/SplitTextNodeCommand.cpp \
611 editing/SplitTextNodeContainingElementCommand.cpp \
612 editing/TextIterator.cpp \
613 editing/TypingCommand.cpp \
614 editing/UnlinkCommand.cpp \
615 editing/VisiblePosition.cpp \
616 editing/visible_units.cpp \
617 editing/WrapContentsInDummySpanCommand.cpp \
618 history/BackForwardList.cpp \
619 history/CachedPage.cpp \
620 history/HistoryItem.cpp \
621 history/PageCache.cpp \
622 html/CanvasGradient.cpp \
623 html/CanvasPattern.cpp \
624 html/CanvasPixelArray.cpp \
625 html/CanvasRenderingContext2D.cpp \
626 html/CanvasStyle.cpp \
629 html/FormDataList.cpp \
630 html/HTMLAnchorElement.cpp \
631 html/HTMLAppletElement.cpp \
632 html/HTMLAreaElement.cpp \
633 html/HTMLBaseElement.cpp \
634 html/HTMLBaseFontElement.cpp \
635 html/HTMLBlockquoteElement.cpp \
636 html/HTMLBodyElement.cpp \
637 html/HTMLBRElement.cpp \
638 html/HTMLButtonElement.cpp \
639 html/HTMLCanvasElement.cpp \
640 html/HTMLCollection.cpp \
641 html/HTMLDirectoryElement.cpp \
642 html/HTMLDivElement.cpp \
643 html/HTMLDListElement.cpp \
644 html/HTMLDocument.cpp \
645 html/HTMLElement.cpp \
646 html/HTMLElementFactory.cpp \
647 html/HTMLEmbedElement.cpp \
648 html/HTMLFieldSetElement.cpp \
649 html/HTMLFontElement.cpp \
650 html/HTMLFormCollection.cpp \
651 html/HTMLFormElement.cpp \
652 html/HTMLFrameElementBase.cpp \
653 html/HTMLFrameElement.cpp \
654 html/HTMLFrameOwnerElement.cpp \
655 html/HTMLFrameSetElement.cpp \
656 html/HTMLFormControlElement.cpp \
657 html/HTMLHeadElement.cpp \
658 html/HTMLHeadingElement.cpp \
659 html/HTMLHRElement.cpp \
660 html/HTMLHtmlElement.cpp \
661 html/HTMLIFrameElement.cpp \
662 html/HTMLImageElement.cpp \
663 html/HTMLImageLoader.cpp \
664 html/HTMLInputElement.cpp \
665 html/HTMLIsIndexElement.cpp \
666 html/HTMLKeygenElement.cpp \
667 html/HTMLLabelElement.cpp \
668 html/HTMLLegendElement.cpp \
669 html/HTMLLIElement.cpp \
670 html/HTMLLinkElement.cpp \
671 html/HTMLMapElement.cpp \
672 html/HTMLMarqueeElement.cpp \
673 html/HTMLMenuElement.cpp \
674 html/HTMLMetaElement.cpp \
675 html/HTMLModElement.cpp \
676 html/HTMLNameCollection.cpp \
677 html/HTMLObjectElement.cpp \
678 html/HTMLOListElement.cpp \
679 html/HTMLOptGroupElement.cpp \
680 html/HTMLOptionElement.cpp \
681 html/HTMLOptionsCollection.cpp \
682 html/HTMLParagraphElement.cpp \
683 html/HTMLParamElement.cpp \
684 html/HTMLParser.cpp \
685 html/HTMLParserErrorCodes.cpp \
686 html/HTMLPlugInElement.cpp \
687 html/HTMLPreElement.cpp \
688 html/HTMLQuoteElement.cpp \
689 html/HTMLScriptElement.cpp \
690 html/HTMLSelectElement.cpp \
691 html/HTMLStyleElement.cpp \
692 html/HTMLTableCaptionElement.cpp \
693 html/HTMLTableCellElement.cpp \
694 html/HTMLTableColElement.cpp \
695 html/HTMLTableElement.cpp \
696 html/HTMLTablePartElement.cpp \
697 html/HTMLTableRowElement.cpp \
698 html/HTMLTableRowsCollection.cpp \
699 html/HTMLTableSectionElement.cpp \
700 html/HTMLTextAreaElement.cpp \
701 html/HTMLTextFieldInnerElement.cpp \
702 html/HTMLTitleElement.cpp \
703 html/HTMLTokenizer.cpp \
704 html/HTMLUListElement.cpp \
705 html/HTMLViewSourceDocument.cpp \
707 html/PreloadScanner.cpp \
708 loader/archive/ArchiveFactory.cpp \
709 loader/archive/ArchiveResource.cpp \
710 loader/archive/ArchiveResourceCollection.cpp \
712 loader/CachedCSSStyleSheet.cpp \
713 loader/CachedFont.cpp \
714 loader/CachedImage.cpp \
715 loader/CachedResourceClientWalker.cpp \
716 loader/CachedResource.cpp \
717 loader/CachedScript.cpp \
718 loader/CachedXSLStyleSheet.cpp \
719 loader/DocLoader.cpp \
720 loader/DocumentLoader.cpp \
721 loader/FormState.cpp \
722 loader/FrameLoader.cpp \
723 loader/FTPDirectoryDocument.cpp \
724 loader/FTPDirectoryParser.cpp \
725 loader/icon/IconLoader.cpp \
726 loader/ImageDocument.cpp \
728 loader/MainResourceLoader.cpp \
729 loader/MediaDocument.cpp \
730 loader/NavigationAction.cpp \
731 loader/NetscapePlugInStreamLoader.cpp \
732 loader/PluginDocument.cpp \
733 loader/ProgressTracker.cpp \
735 loader/ResourceLoader.cpp \
736 loader/SubresourceLoader.cpp \
737 loader/TextDocument.cpp \
738 loader/TextResourceDecoder.cpp \
739 page/AccessibilityImageMapLink.cpp \
740 page/AccessibilityObject.cpp \
741 page/AccessibilityListBox.cpp \
742 page/AccessibilityListBoxOption.cpp \
743 page/AccessibilityRenderObject.cpp \
744 page/AnimationController.cpp \
745 page/AXObjectCache.cpp \
749 page/ContextMenuController.cpp \
750 page/DOMSelection.cpp \
753 page/DragController.cpp \
754 page/EventHandler.cpp \
755 page/FocusController.cpp \
760 page/InspectorController.cpp \
761 page/JavaScriptCallFrame.cpp \
762 page/JavaScriptDebugServer.cpp \
763 page/JavaScriptProfile.cpp \
764 page/JavaScriptProfileNode.cpp \
766 page/MouseEventWithHitTestResults.cpp \
769 page/PrintContext.cpp \
772 page/WindowFeatures.cpp \
773 plugins/PluginData.cpp \
774 plugins/PluginArray.cpp \
776 plugins/PluginMainThreadScheduler.cpp \
777 plugins/MimeType.cpp \
778 plugins/MimeTypeArray.cpp \
780 platform/text/AtomicString.cpp \
781 platform/text/Base64.cpp \
782 platform/text/BidiContext.cpp \
783 platform/ContextMenu.cpp \
784 platform/text/CString.cpp \
785 platform/DeprecatedPtrListImpl.cpp \
786 platform/DeprecatedValueListImpl.cpp \
787 platform/DragData.cpp \
788 platform/DragImage.cpp \
789 platform/FileChooser.cpp \
790 platform/graphics/FontDescription.cpp \
791 platform/graphics/FontFamily.cpp \
792 platform/graphics/AffineTransform.cpp \
793 platform/graphics/BitmapImage.cpp \
794 platform/graphics/Color.cpp \
795 platform/graphics/FloatPoint3D.cpp \
796 platform/graphics/FloatPoint.cpp \
797 platform/graphics/FloatRect.cpp \
798 platform/graphics/FloatSize.cpp \
799 platform/graphics/FontData.cpp \
800 platform/graphics/GeneratedImage.cpp \
801 platform/graphics/Gradient.cpp \
802 platform/graphics/GraphicsContext.cpp \
803 platform/graphics/GraphicsTypes.cpp \
804 platform/graphics/Image.cpp \
805 platform/graphics/IntRect.cpp \
806 platform/graphics/Path.cpp \
807 platform/graphics/PathTraversalState.cpp \
808 platform/graphics/Pen.cpp \
809 platform/graphics/SegmentedFontData.cpp \
811 platform/Logging.cpp \
812 platform/MIMETypeRegistry.cpp \
813 platform/network/AuthenticationChallengeBase.cpp \
814 platform/network/Credential.cpp \
815 platform/network/FormData.cpp \
816 platform/network/HTTPParsers.cpp \
817 platform/network/NetworkStateNotifier.cpp \
818 platform/network/ProtectionSpace.cpp \
819 platform/network/ResourceErrorBase.cpp \
820 platform/network/ResourceHandle.cpp \
821 platform/network/ResourceRequestBase.cpp \
822 platform/network/ResourceResponseBase.cpp \
823 platform/text/RegularExpression.cpp \
824 platform/ScrollBar.cpp \
825 # platform/SearchPopupMenu.cpp \
826 platform/SecurityOrigin.cpp \
827 platform/text/SegmentedString.cpp \
828 platform/SharedBuffer.cpp \
829 platform/text/String.cpp \
830 platform/text/StringBuilder.cpp \
831 platform/text/StringImpl.cpp \
832 platform/text/TextCodec.cpp \
833 platform/text/TextCodecLatin1.cpp \
834 platform/text/TextCodecUserDefined.cpp \
835 platform/text/TextCodecUTF16.cpp \
836 platform/text/TextDecoder.cpp \
837 platform/text/TextEncoding.cpp \
838 platform/text/TextEncodingRegistry.cpp \
839 platform/text/TextStream.cpp \
841 platform/text/UnicodeRange.cpp \
842 platform/Widget.cpp \
843 plugins/PluginDatabase.cpp \
844 plugins/PluginInfoStore.cpp \
845 plugins/PluginPackage.cpp \
846 plugins/PluginStream.cpp \
847 plugins/PluginView.cpp \
848 rendering/AutoTableLayout.cpp \
850 rendering/break_lines.cpp \
851 rendering/CounterNode.cpp \
852 rendering/EllipsisBox.cpp \
853 rendering/FixedTableLayout.cpp \
854 rendering/HitTestResult.cpp \
855 rendering/InlineBox.cpp \
856 rendering/InlineFlowBox.cpp \
857 rendering/InlineTextBox.cpp \
858 rendering/LayoutState.cpp \
859 rendering/ListMarkerBox.cpp \
860 rendering/RenderApplet.cpp \
861 rendering/RenderArena.cpp \
862 rendering/RenderBlock.cpp \
863 rendering/RenderBox.cpp \
864 rendering/RenderBR.cpp \
865 rendering/RenderButton.cpp \
866 rendering/RenderContainer.cpp \
867 rendering/RenderCounter.cpp \
868 rendering/RenderFieldset.cpp \
869 rendering/RenderFileUploadControl.cpp \
870 rendering/RenderFlexibleBox.cpp \
871 rendering/RenderFlow.cpp \
872 rendering/RenderFrame.cpp \
873 rendering/RenderFrameSet.cpp \
874 rendering/RenderHTMLCanvas.cpp \
875 rendering/RenderImage.cpp \
876 rendering/RenderImageGeneratedContent.cpp \
877 rendering/RenderInline.cpp \
878 rendering/RenderLayer.cpp \
879 rendering/RenderLegend.cpp \
880 rendering/RenderListBox.cpp \
881 rendering/RenderListItem.cpp \
882 rendering/RenderListMarker.cpp \
883 rendering/RenderMenuList.cpp \
884 rendering/RenderObject.cpp \
885 rendering/RenderPart.cpp \
886 rendering/RenderPartObject.cpp \
887 rendering/RenderReplaced.cpp \
888 rendering/RenderReplica.cpp \
889 rendering/RenderSlider.cpp \
890 rendering/RenderTableCell.cpp \
891 rendering/RenderTableCol.cpp \
892 rendering/RenderTable.cpp \
893 rendering/RenderTableRow.cpp \
894 rendering/RenderTableSection.cpp \
895 rendering/RenderTextControl.cpp \
896 rendering/RenderText.cpp \
897 rendering/RenderTextFragment.cpp \
898 rendering/RenderTheme.cpp \
899 rendering/RenderTreeAsText.cpp \
900 rendering/RenderView.cpp \
901 rendering/RenderWidget.cpp \
902 rendering/RenderWordBreak.cpp \
903 rendering/RootInlineBox.cpp \
904 rendering/SVGRenderTreeAsText.cpp \
905 rendering/style/RenderStyle.cpp \
906 xml/AccessControlList.cpp \
908 xml/AccessItemRule.cpp \
910 xml/NativeXPathNSResolver.cpp \
911 xml/XMLHttpRequest.cpp \
912 xml/XMLSerializer.cpp \
913 xml/XPathEvaluator.cpp \
914 xml/XPathExpression.cpp \
915 xml/XPathExpressionNode.cpp \
916 xml/XPathFunctions.cpp \
917 xml/XPathNamespace.cpp \
918 xml/XPathNodeSet.cpp \
919 xml/XPathNSResolver.cpp \
920 xml/XPathParser.cpp \
922 xml/XPathPredicate.cpp \
923 xml/XPathResult.cpp \
927 xml/XPathVariableReference.cpp \
928 xml/XSLImportRule.cpp \
929 xml/XSLStyleSheet.cpp \
930 xml/XSLTExtensions.cpp \
931 xml/XSLTUnicodeSort.cpp \
932 xml/XSLTProcessor.cpp
935 $$PWD/platform/graphics/qt/StillImageQt.h \
936 $$PWD/platform/qt/QWebPopup.h \
937 $$PWD/platform/qt/MenuEventProxy.h \
938 $$PWD/platform/qt/SharedTimerQt.h \
939 $$PWD/../WebKit/qt/Api/qwebframe.h \
940 $$PWD/../WebKit/qt/Api/qwebpage.h \
941 $$PWD/../WebKit/qt/Api/qwebview.h \
942 $$PWD/../WebKit/qt/Api/qwebhistoryinterface.h \
943 $$PWD/../WebKit/qt/Api/qwebpluginfactory.h \
944 $$PWD/../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h \
945 $$PWD/platform/network/qt/QNetworkReplyHandler.h
948 bridge/qt/qt_class.cpp \
949 bridge/qt/qt_instance.cpp \
950 bridge/qt/qt_runtime.cpp \
951 page/qt/DragControllerQt.cpp \
952 page/qt/EventHandlerQt.cpp \
953 page/qt/FrameQt.cpp \
954 platform/graphics/qt/AffineTransformQt.cpp \
955 platform/graphics/qt/ColorQt.cpp \
956 platform/graphics/qt/FloatPointQt.cpp \
957 platform/graphics/qt/FloatRectQt.cpp \
958 platform/graphics/qt/GradientQt.cpp \
959 platform/graphics/qt/GraphicsContextQt.cpp \
960 platform/graphics/qt/IconQt.cpp \
961 platform/graphics/qt/ImageBufferQt.cpp \
962 platform/graphics/qt/ImageDecoderQt.cpp \
963 platform/graphics/qt/ImageQt.cpp \
964 platform/graphics/qt/ImageSourceQt.cpp \
965 platform/graphics/qt/IntPointQt.cpp \
966 platform/graphics/qt/IntRectQt.cpp \
967 platform/graphics/qt/IntSizeQt.cpp \
968 platform/graphics/qt/PathQt.cpp \
969 platform/graphics/qt/StillImageQt.cpp \
970 platform/network/qt/ResourceHandleQt.cpp \
971 platform/network/qt/ResourceRequestQt.cpp \
972 platform/network/qt/QNetworkReplyHandler.cpp \
973 editing/qt/EditorQt.cpp \
974 platform/qt/ClipboardQt.cpp \
975 platform/qt/ContextMenuItemQt.cpp \
976 platform/qt/ContextMenuQt.cpp \
977 platform/qt/CookieJarQt.cpp \
978 platform/qt/CursorQt.cpp \
979 platform/qt/DragDataQt.cpp \
980 platform/qt/DragImageQt.cpp \
981 platform/qt/EventLoopQt.cpp \
982 platform/qt/FileChooserQt.cpp \
983 platform/qt/FileSystemQt.cpp \
984 platform/graphics/qt/FontCacheQt.cpp \
985 platform/graphics/qt/FontCustomPlatformData.cpp \
986 platform/graphics/qt/FontQt.cpp \
987 platform/graphics/qt/GlyphPageTreeNodeQt.cpp \
988 platform/graphics/qt/SimpleFontDataQt.cpp \
989 platform/qt/KURLQt.cpp \
990 platform/qt/Localizations.cpp \
991 platform/qt/MIMETypeRegistryQt.cpp \
992 platform/qt/PasteboardQt.cpp \
993 platform/qt/PlatformKeyboardEventQt.cpp \
994 platform/qt/PlatformMouseEventQt.cpp \
995 platform/qt/PlatformScreenQt.cpp \
996 platform/qt/PlatformScrollBarQt.cpp \
997 platform/qt/PopupMenuQt.cpp \
998 platform/qt/QWebPopup.cpp \
999 platform/qt/RenderThemeQt.cpp \
1000 platform/qt/ScrollViewQt.cpp \
1001 platform/qt/SearchPopupMenuQt.cpp \
1002 platform/qt/SharedTimerQt.cpp \
1003 platform/qt/SoundQt.cpp \
1004 platform/qt/LoggingQt.cpp \
1005 platform/text/qt/StringQt.cpp \
1006 platform/qt/TemporaryLinkStubs.cpp \
1007 platform/text/qt/TextBoundaries.cpp \
1008 platform/text/qt/TextBreakIteratorQt.cpp \
1009 platform/text/qt/TextCodecQt.cpp \
1010 platform/qt/WheelEventQt.cpp \
1011 platform/qt/WidgetQt.cpp \
1012 plugins/qt/PluginDataQt.cpp \
1013 ../WebKit/qt/WebCoreSupport/ChromeClientQt.cpp \
1014 ../WebKit/qt/WebCoreSupport/ContextMenuClientQt.cpp \
1015 ../WebKit/qt/WebCoreSupport/DragClientQt.cpp \
1016 ../WebKit/qt/WebCoreSupport/EditorClientQt.cpp \
1017 ../WebKit/qt/WebCoreSupport/EditCommandQt.cpp \
1018 ../WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp \
1019 ../WebKit/qt/WebCoreSupport/InspectorClientQt.cpp \
1020 ../WebKit/qt/Api/qwebframe.cpp \
1021 ../WebKit/qt/Api/qwebpage.cpp \
1022 ../WebKit/qt/Api/qwebview.cpp \
1023 ../WebKit/qt/Api/qwebhistory.cpp \
1024 ../WebKit/qt/Api/qwebsettings.cpp \
1025 ../WebKit/qt/Api/qwebhistoryinterface.cpp \
1026 ../WebKit/qt/Api/qwebpluginfactory.cpp
1028 win32-*: SOURCES += platform/win/SystemTimeWin.cpp
1029 else: SOURCES += platform/qt/SystemTimeQt.cpp
1036 # Files belonging to the Qt 4.3 build
1037 lessThan(QT_MINOR_VERSION, 4) {
1039 $$PWD/../WebKit/qt/Api/qwebnetworkinterface.h \
1040 $$PWD/../WebKit/qt/Api/qwebnetworkinterface_p.h \
1041 $$PWD/../WebKit/qt/Api/qcookiejar.h
1044 ../WebKit/qt/Api/qwebnetworkinterface.cpp \
1045 ../WebKit/qt/Api/qcookiejar.cpp
1047 DEFINES += QT_BEGIN_NAMESPACE="" QT_END_NAMESPACE=""
1050 contains(DEFINES, ENABLE_NETSCAPE_PLUGIN_API=1) {
1052 SOURCES += plugins/npapi.cpp
1056 plugins/qt/PluginPackageQt.cpp \
1057 plugins/qt/PluginViewQt.cpp
1061 INCLUDEPATH += $$PWD/plugins/win
1063 SOURCES += page/win/PageWin.cpp \
1064 plugins/win/PluginDatabaseWin.cpp \
1065 plugins/win/PluginPackageWin.cpp \
1066 plugins/win/PluginMessageThrottlerWin.cpp \
1067 plugins/win/PluginViewWin.cpp
1080 contains(DEFINES, ENABLE_CROSS_DOCUMENT_MESSAGING=1) {
1081 FEATURE_DEFINES_JAVASCRIPT += ENABLE_CROSS_DOCUMENT_MESSAGING=1
1084 dom/MessageEvent.cpp
1087 dom/MessageEvent.idl
1090 contains(DEFINES, ENABLE_DASHBOARD_SUPPORT=0) {
1091 DASHBOARDSUPPORTCSSPROPERTIES -= $$PWD/css/DashboardSupportCSSPropertyNames.in
1094 contains(DEFINES, ENABLE_DATABASE=1) {
1095 FEATURE_DEFINES_JAVASCRIPT += ENABLE_DATABASE=1
1097 CONFIG(QTDIR_build) {
1098 # some what copied from src/plugins/sqldrivers/sqlite/sqlite.pro
1100 LIBS *= $$QT_LFLAGS_SQLITE
1101 QMAKE_CXXFLAGS *= $$QT_CFLAGS_SQLITE
1103 CONFIG(release, debug|release):DEFINES *= NDEBUG
1104 INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/sqlite/
1105 SOURCES += $$QT_SOURCE_TREE/src/3rdparty/sqlite/sqlite3.c
1108 INCLUDEPATH += $$[QT_INSTALL_PREFIX]/src/3rdparty/sqlite/
1113 platform/sql/SQLiteAuthorizer.cpp \
1114 platform/sql/SQLiteDatabase.cpp \
1115 platform/sql/SQLiteStatement.cpp \
1116 platform/sql/SQLiteTransaction.cpp \
1117 platform/sql/SQLValue.cpp \
1118 storage/ChangeVersionWrapper.cpp \
1119 storage/DatabaseAuthorizer.cpp \
1120 storage/Database.cpp \
1121 storage/DatabaseTask.cpp \
1122 storage/DatabaseThread.cpp \
1123 storage/DatabaseTracker.cpp \
1124 storage/LocalStorage.cpp \
1125 storage/LocalStorageArea.cpp \
1126 storage/LocalStorageTask.cpp \
1127 storage/LocalStorageThread.cpp \
1128 storage/OriginQuotaManager.cpp \
1129 storage/OriginUsageRecord.cpp \
1130 storage/StorageArea.cpp \
1131 storage/StorageMap.cpp \
1132 storage/SQLResultSet.cpp \
1133 storage/SQLResultSetRowList.cpp \
1134 storage/SQLStatement.cpp \
1135 storage/SQLTransaction.cpp \
1136 bindings/js/JSCustomSQLStatementCallback.cpp \
1137 bindings/js/JSCustomSQLStatementErrorCallback.cpp \
1138 bindings/js/JSCustomSQLTransactionCallback.cpp \
1139 bindings/js/JSCustomSQLTransactionErrorCallback.cpp \
1140 bindings/js/JSDatabaseCustom.cpp \
1141 bindings/js/JSSQLResultSetRowListCustom.cpp \
1142 bindings/js/JSSQLTransactionCustom.cpp
1145 storage/Database.idl \
1146 storage/SQLError.idl \
1147 storage/SQLResultSet.idl \
1148 storage/SQLResultSetRowList.idl \
1149 storage/SQLTransaction.idl
1152 contains(DEFINES, ENABLE_DOM_STORAGE=1) {
1153 FEATURE_DEFINES_JAVASCRIPT += ENABLE_DOM_STORAGE =1
1156 storage/LocalStorage.cpp \
1157 storage/LocalStorageArea.cpp \
1158 storage/Storage.cpp \
1159 storage/StorageArea.cpp \
1160 storage/StorageEvent.cpp \
1161 storage/StorageMap.cpp \
1162 storage/SessionStorage.cpp \
1163 storage/SessionStorageArea.cpp \
1164 bindings/js/JSStorage.cpp \
1165 bindings/js/JSStorageCustom.cpp \
1166 bindings/js/JSStorageEvent.cpp \
1169 storage/Storage.idl \
1170 storage/StorageEvent.idl
1173 contains(DEFINES, ENABLE_ICONDATABASE=1) {
1175 loader/icon/IconDatabase.cpp \
1176 loader/icon/IconRecord.cpp \
1177 loader/icon/PageURLRecord.cpp
1180 loader/icon/IconDatabaseNone.cpp
1183 contains(DEFINES, ENABLE_VIDEO=1) {
1184 FEATURE_DEFINES_JAVASCRIPT += ENABLE_VIDEO=1
1187 html/HTMLAudioElement.idl \
1188 html/HTMLMediaElement.idl \
1189 html/HTMLSourceElement.idl \
1190 html/HTMLVideoElement.idl \
1191 html/MediaError.idl \
1192 html/TimeRanges.idl \
1193 html/VoidCallback.idl
1196 html/HTMLAudioElement.cpp \
1197 html/HTMLMediaElement.cpp \
1198 html/HTMLSourceElement.cpp \
1199 html/HTMLVideoElement.cpp \
1200 html/TimeRanges.cpp \
1201 platform/graphics/MediaPlayer.cpp \
1202 rendering/MediaControlElements.cpp \
1203 rendering/RenderVideo.cpp \
1204 rendering/RenderMedia.cpp \
1205 bindings/js/JSAudioConstructor.cpp
1208 platform/graphics/qt/MediaPlayerPrivatePhonon.h
1211 platform/graphics/qt/MediaPlayerPrivatePhonon.cpp
1213 # Add phonon manually to prevent it from coming first in
1214 # the include paths, as Phonon's path.h conflicts with
1215 # WebCore's Path.h on case-insensitive filesystems.
1216 qtAddLibrary(phonon)
1217 INCLUDEPATH -= $$QMAKE_INCDIR_QT/phonon
1218 INCLUDEPATH += $$QMAKE_INCDIR_QT/phonon
1220 INCLUDEPATH -= $$QMAKE_LIBDIR_QT/phonon.framework/Headers
1221 INCLUDEPATH += $$QMAKE_LIBDIR_QT/phonon.framework/Headers
1226 contains(DEFINES, ENABLE_XPATH=1) {
1227 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XPATH=1
1229 XPATHBISON = $$PWD/xml/XPathGrammar.y
1232 xml/XPathNSResolver.idl \
1233 xml/XPathException.idl \
1234 xml/XPathExpression.idl \
1235 xml/XPathResult.idl \
1236 xml/XPathEvaluator.idl
1239 unix:!mac:CONFIG += link_pkgconfig
1241 contains(DEFINES, ENABLE_XSLT=1) {
1242 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XSLT=1
1243 PKGCONFIG += libxml-2.0 libxslt
1246 INCLUDEPATH += /usr/include/libxml2
1247 LIBS += -lxml2 -lxslt
1251 LIBS += -llibxml2 -llibxslt
1255 contains(DEFINES, ENABLE_XBL=1) {
1256 FEATURE_DEFINES_JAVASCRIPT += ENABLE_XBL=1
1259 contains(DEFINES, ENABLE_SVG=1) {
1260 FEATURE_DEFINES_JAVASCRIPT += ENABLE_SVG=1
1262 DEPENDPATH += svg svg/graphics
1263 DEPENDPATH += svg/graphics/qt
1265 SVG_NAMES = $$PWD/svg/svgtags.in
1267 XLINK_NAMES = $$PWD/svg/xlinkattrs.in
1270 svg/SVGZoomEvent.idl \
1271 svg/SVGAElement.idl \
1272 svg/SVGAltGlyphElement.idl \
1274 svg/SVGAnimateColorElement.idl \
1275 svg/SVGAnimatedAngle.idl \
1276 svg/SVGAnimatedBoolean.idl \
1277 svg/SVGAnimatedEnumeration.idl \
1278 svg/SVGAnimatedInteger.idl \
1279 svg/SVGAnimatedLength.idl \
1280 svg/SVGAnimatedLengthList.idl \
1281 svg/SVGAnimatedNumber.idl \
1282 svg/SVGAnimatedNumberList.idl \
1283 svg/SVGAnimatedPreserveAspectRatio.idl \
1284 svg/SVGAnimatedRect.idl \
1285 svg/SVGAnimatedString.idl \
1286 svg/SVGAnimatedTransformList.idl \
1287 svg/SVGAnimateElement.idl \
1288 svg/SVGAnimateTransformElement.idl \
1289 svg/SVGAnimationElement.idl \
1290 svg/SVGCircleElement.idl \
1291 svg/SVGClipPathElement.idl \
1293 svg/SVGComponentTransferFunctionElement.idl \
1294 svg/SVGCursorElement.idl \
1295 svg/SVGDefinitionSrcElement.idl \
1296 svg/SVGDefsElement.idl \
1297 svg/SVGDescElement.idl \
1298 svg/SVGDocument.idl \
1299 svg/SVGElement.idl \
1300 svg/SVGElementInstance.idl \
1301 svg/SVGElementInstanceList.idl \
1302 svg/SVGEllipseElement.idl \
1303 svg/SVGException.idl \
1304 svg/SVGFEBlendElement.idl \
1305 svg/SVGFEColorMatrixElement.idl \
1306 svg/SVGFEComponentTransferElement.idl \
1307 svg/SVGFECompositeElement.idl \
1308 svg/SVGFEDiffuseLightingElement.idl \
1309 svg/SVGFEDisplacementMapElement.idl \
1310 svg/SVGFEDistantLightElement.idl \
1311 svg/SVGFEFloodElement.idl \
1312 svg/SVGFEFuncAElement.idl \
1313 svg/SVGFEFuncBElement.idl \
1314 svg/SVGFEFuncGElement.idl \
1315 svg/SVGFEFuncRElement.idl \
1316 svg/SVGFEGaussianBlurElement.idl \
1317 svg/SVGFEImageElement.idl \
1318 svg/SVGFEMergeElement.idl \
1319 svg/SVGFEMergeNodeElement.idl \
1320 svg/SVGFEOffsetElement.idl \
1321 svg/SVGFEPointLightElement.idl \
1322 svg/SVGFESpecularLightingElement.idl \
1323 svg/SVGFESpotLightElement.idl \
1324 svg/SVGFETileElement.idl \
1325 svg/SVGFETurbulenceElement.idl \
1326 svg/SVGFilterElement.idl \
1327 svg/SVGFontElement.idl \
1328 svg/SVGFontFaceElement.idl \
1329 svg/SVGFontFaceFormatElement.idl \
1330 svg/SVGFontFaceNameElement.idl \
1331 svg/SVGFontFaceSrcElement.idl \
1332 svg/SVGFontFaceUriElement.idl \
1333 svg/SVGForeignObjectElement.idl \
1334 svg/SVGGElement.idl \
1335 svg/SVGGlyphElement.idl \
1336 svg/SVGGradientElement.idl \
1337 svg/SVGImageElement.idl \
1339 svg/SVGLengthList.idl \
1340 svg/SVGLinearGradientElement.idl \
1341 svg/SVGLineElement.idl \
1342 svg/SVGMarkerElement.idl \
1343 svg/SVGMaskElement.idl \
1345 svg/SVGMetadataElement.idl \
1346 svg/SVGMissingGlyphElement.idl \
1348 svg/SVGNumberList.idl \
1350 svg/SVGPathElement.idl \
1351 svg/SVGPathSegArcAbs.idl \
1352 svg/SVGPathSegArcRel.idl \
1353 svg/SVGPathSegClosePath.idl \
1354 svg/SVGPathSegCurvetoCubicAbs.idl \
1355 svg/SVGPathSegCurvetoCubicRel.idl \
1356 svg/SVGPathSegCurvetoCubicSmoothAbs.idl \
1357 svg/SVGPathSegCurvetoCubicSmoothRel.idl \
1358 svg/SVGPathSegCurvetoQuadraticAbs.idl \
1359 svg/SVGPathSegCurvetoQuadraticRel.idl \
1360 svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl \
1361 svg/SVGPathSegCurvetoQuadraticSmoothRel.idl \
1362 svg/SVGPathSeg.idl \
1363 svg/SVGPathSegLinetoAbs.idl \
1364 svg/SVGPathSegLinetoHorizontalAbs.idl \
1365 svg/SVGPathSegLinetoHorizontalRel.idl \
1366 svg/SVGPathSegLinetoRel.idl \
1367 svg/SVGPathSegLinetoVerticalAbs.idl \
1368 svg/SVGPathSegLinetoVerticalRel.idl \
1369 svg/SVGPathSegList.idl \
1370 svg/SVGPathSegMovetoAbs.idl \
1371 svg/SVGPathSegMovetoRel.idl \
1372 svg/SVGPatternElement.idl \
1374 svg/SVGPointList.idl \
1375 svg/SVGPolygonElement.idl \
1376 svg/SVGPolylineElement.idl \
1377 svg/SVGPreserveAspectRatio.idl \
1378 svg/SVGRadialGradientElement.idl \
1379 svg/SVGRectElement.idl \
1381 svg/SVGRenderingIntent.idl \
1382 svg/SVGScriptElement.idl \
1383 svg/SVGSetElement.idl \
1384 svg/SVGStopElement.idl \
1385 svg/SVGStringList.idl \
1386 svg/SVGStyleElement.idl \
1387 svg/SVGSVGElement.idl \
1388 svg/SVGSwitchElement.idl \
1389 svg/SVGSymbolElement.idl \
1390 svg/SVGTextContentElement.idl \
1391 svg/SVGTextElement.idl \
1392 svg/SVGTextPathElement.idl \
1393 svg/SVGTextPositioningElement.idl \
1394 svg/SVGTitleElement.idl \
1395 svg/SVGTransform.idl \
1396 svg/SVGTransformList.idl \
1397 svg/SVGTRefElement.idl \
1398 svg/SVGTSpanElement.idl \
1399 svg/SVGUnitTypes.idl \
1400 svg/SVGUseElement.idl \
1401 svg/SVGViewElement.idl
1404 # TODO: this-one-is-not-auto-added! FIXME! tmp/SVGElementFactory.cpp \
1405 bindings/js/JSSVGLengthCustom.cpp \
1406 bindings/js/JSSVGMatrixCustom.cpp \
1407 bindings/js/JSSVGPathSegCustom.cpp \
1408 bindings/js/JSSVGPathSegListCustom.cpp \
1409 bindings/js/JSSVGPointListCustom.cpp \
1410 bindings/js/JSSVGTransformListCustom.cpp \
1411 css/SVGCSSComputedStyleDeclaration.cpp \
1412 css/SVGCSSParser.cpp \
1413 css/SVGCSSStyleSelector.cpp \
1414 rendering/SVGRenderStyle.cpp \
1415 rendering/SVGRenderStyleDefs.cpp \
1416 bindings/js/JSSVGLazyEventListener.cpp \
1417 svg/SVGZoomEvent.cpp \
1418 rendering/PointerEventsHitRules.cpp \
1419 svg/FilterEffect.cpp \
1420 svg/SVGDocumentExtensions.cpp \
1421 svg/SVGImageLoader.cpp \
1422 svg/ColorDistance.cpp \
1423 svg/SVGAElement.cpp \
1424 svg/SVGAltGlyphElement.cpp \
1426 svg/SVGAnimateColorElement.cpp \
1427 svg/SVGAnimatedPathData.cpp \
1428 svg/SVGAnimatedPoints.cpp \
1429 svg/SVGAnimateElement.cpp \
1430 svg/SVGAnimateMotionElement.cpp \
1431 svg/SVGAnimateTransformElement.cpp \
1432 svg/SVGAnimationElement.cpp \
1433 svg/SVGCircleElement.cpp \
1434 svg/SVGClipPathElement.cpp \
1436 svg/SVGComponentTransferFunctionElement.cpp \
1437 svg/SVGCursorElement.cpp \
1438 svg/SVGDefinitionSrcElement.cpp \
1439 svg/SVGDefsElement.cpp \
1440 svg/SVGDescElement.cpp \
1441 svg/SVGDocument.cpp \
1442 svg/SVGElement.cpp \
1443 svg/SVGElementInstance.cpp \
1444 svg/SVGElementInstanceList.cpp \
1445 svg/SVGEllipseElement.cpp \
1446 svg/SVGExternalResourcesRequired.cpp \
1447 svg/SVGFEBlendElement.cpp \
1448 svg/SVGFEColorMatrixElement.cpp \
1449 svg/SVGFEComponentTransferElement.cpp \
1450 svg/SVGFECompositeElement.cpp \
1451 svg/SVGFEDiffuseLightingElement.cpp \
1452 svg/SVGFEDisplacementMapElement.cpp \
1453 svg/SVGFEDistantLightElement.cpp \
1454 svg/SVGFEFloodElement.cpp \
1455 svg/SVGFEFuncAElement.cpp \
1456 svg/SVGFEFuncBElement.cpp \
1457 svg/SVGFEFuncGElement.cpp \
1458 svg/SVGFEFuncRElement.cpp \
1459 svg/SVGFEGaussianBlurElement.cpp \
1460 svg/SVGFEImageElement.cpp \
1461 svg/SVGFELightElement.cpp \
1462 svg/SVGFEMergeElement.cpp \
1463 svg/SVGFEMergeNodeElement.cpp \
1464 svg/SVGFEOffsetElement.cpp \
1465 svg/SVGFEPointLightElement.cpp \
1466 svg/SVGFESpecularLightingElement.cpp \
1467 svg/SVGFESpotLightElement.cpp \
1468 svg/SVGFETileElement.cpp \
1469 svg/SVGFETurbulenceElement.cpp \
1470 svg/SVGFilterElement.cpp \
1471 svg/SVGFilterPrimitiveStandardAttributes.cpp \
1472 svg/SVGFitToViewBox.cpp \
1474 svg/SVGFontData.cpp \
1475 svg/SVGFontElement.cpp \
1476 svg/SVGFontFaceElement.cpp \
1477 svg/SVGFontFaceFormatElement.cpp \
1478 svg/SVGFontFaceNameElement.cpp \
1479 svg/SVGFontFaceSrcElement.cpp \
1480 svg/SVGFontFaceUriElement.cpp \
1481 svg/SVGForeignObjectElement.cpp \
1482 svg/SVGGElement.cpp \
1483 svg/SVGGlyphElement.cpp \
1484 svg/SVGGradientElement.cpp \
1485 svg/SVGImageElement.cpp \
1486 svg/SVGLangSpace.cpp \
1488 svg/SVGLengthList.cpp \
1489 svg/SVGLinearGradientElement.cpp \
1490 svg/SVGLineElement.cpp \
1491 svg/SVGLocatable.cpp \
1492 svg/SVGMarkerElement.cpp \
1493 svg/SVGMaskElement.cpp \
1494 svg/SVGMetadataElement.cpp \
1495 svg/SVGMissingGlyphElement.cpp \
1496 svg/SVGMPathElement.cpp \
1497 svg/SVGNumberList.cpp \
1499 svg/SVGParserUtilities.cpp \
1500 svg/SVGPathElement.cpp \
1501 svg/SVGPathSegArc.cpp \
1502 svg/SVGPathSegClosePath.cpp \
1503 svg/SVGPathSegCurvetoCubic.cpp \
1504 svg/SVGPathSegCurvetoCubicSmooth.cpp \
1505 svg/SVGPathSegCurvetoQuadratic.cpp \
1506 svg/SVGPathSegCurvetoQuadraticSmooth.cpp \
1507 svg/SVGPathSegLineto.cpp \
1508 svg/SVGPathSegLinetoHorizontal.cpp \
1509 svg/SVGPathSegLinetoVertical.cpp \
1510 svg/SVGPathSegList.cpp \
1511 svg/SVGPathSegMoveto.cpp \
1512 svg/SVGPatternElement.cpp \
1513 svg/SVGPointList.cpp \
1514 svg/SVGPolyElement.cpp \
1515 svg/SVGPolygonElement.cpp \
1516 svg/SVGPolylineElement.cpp \
1517 svg/SVGPreserveAspectRatio.cpp \
1518 svg/SVGRadialGradientElement.cpp \
1519 svg/SVGRectElement.cpp \
1520 svg/SVGScriptElement.cpp \
1521 svg/SVGSetElement.cpp \
1522 svg/SVGStopElement.cpp \
1523 svg/SVGStringList.cpp \
1524 svg/SVGStylable.cpp \
1525 svg/SVGStyledElement.cpp \
1526 svg/SVGStyledLocatableElement.cpp \
1527 svg/SVGStyledTransformableElement.cpp \
1528 svg/SVGStyleElement.cpp \
1529 svg/SVGSVGElement.cpp \
1530 svg/SVGSwitchElement.cpp \
1531 svg/SVGSymbolElement.cpp \
1533 svg/SVGTextContentElement.cpp \
1534 svg/SVGTextElement.cpp \
1535 svg/SVGTextPathElement.cpp \
1536 svg/SVGTextPositioningElement.cpp \
1537 svg/SVGTitleElement.cpp \
1538 svg/SVGTransformable.cpp \
1539 svg/SVGTransform.cpp \
1540 svg/SVGTransformDistance.cpp \
1541 svg/SVGTransformList.cpp \
1542 svg/SVGTRefElement.cpp \
1543 svg/SVGTSpanElement.cpp \
1544 svg/SVGURIReference.cpp \
1545 svg/SVGUseElement.cpp \
1546 svg/SVGViewElement.cpp \
1547 svg/SVGViewSpec.cpp \
1548 svg/SVGZoomAndPan.cpp \
1549 svg/animation/SMILTime.cpp \
1550 svg/animation/SMILTimeContainer.cpp \
1551 svg/animation/SVGSMILElement.cpp \
1552 platform/graphics/filters/FEBlend.cpp \
1553 platform/graphics/filters/FEColorMatrix.cpp \
1554 platform/graphics/filters/FEComponentTransfer.cpp \
1555 platform/graphics/filters/FEComposite.cpp \
1556 svg/graphics/filters/SVGFEConvolveMatrix.cpp \
1557 svg/graphics/filters/SVGFEDiffuseLighting.cpp \
1558 svg/graphics/filters/SVGFEDisplacementMap.cpp \
1559 svg/graphics/filters/SVGFEFlood.cpp \
1560 svg/graphics/filters/SVGFEGaussianBlur.cpp \
1561 svg/graphics/filters/SVGFEImage.cpp \
1562 svg/graphics/filters/SVGFEMerge.cpp \
1563 svg/graphics/filters/SVGFEMorphology.cpp \
1564 svg/graphics/filters/SVGFEOffset.cpp \
1565 svg/graphics/filters/SVGFESpecularLighting.cpp \
1566 svg/graphics/filters/SVGFETile.cpp \
1567 svg/graphics/filters/SVGFETurbulence.cpp \
1568 svg/graphics/filters/SVGFilterEffect.cpp \
1569 svg/graphics/filters/SVGLightSource.cpp \
1570 svg/graphics/SVGImage.cpp \
1571 svg/graphics/SVGPaintServer.cpp \
1572 svg/graphics/SVGPaintServerGradient.cpp \
1573 svg/graphics/SVGPaintServerLinearGradient.cpp \
1574 svg/graphics/SVGPaintServerPattern.cpp \
1575 svg/graphics/SVGPaintServerRadialGradient.cpp \
1576 svg/graphics/SVGPaintServerSolid.cpp \
1577 svg/graphics/SVGResourceClipper.cpp \
1578 svg/graphics/SVGResource.cpp \
1579 svg/graphics/SVGResourceFilter.cpp \
1580 svg/graphics/SVGResourceMarker.cpp \
1581 svg/graphics/SVGResourceMasker.cpp \
1582 rendering/RenderForeignObject.cpp \
1583 rendering/RenderPath.cpp \
1584 rendering/RenderSVGBlock.cpp \
1585 rendering/RenderSVGContainer.cpp \
1586 rendering/RenderSVGGradientStop.cpp \
1587 rendering/RenderSVGHiddenContainer.cpp \
1588 rendering/RenderSVGImage.cpp \
1589 rendering/RenderSVGInline.cpp \
1590 rendering/RenderSVGInlineText.cpp \
1591 rendering/RenderSVGRoot.cpp \
1592 rendering/RenderSVGText.cpp \
1593 rendering/RenderSVGTextPath.cpp \
1594 rendering/RenderSVGTransformableContainer.cpp \
1595 rendering/RenderSVGTSpan.cpp \
1596 rendering/RenderSVGViewportContainer.cpp \
1597 rendering/SVGCharacterLayoutInfo.cpp \
1598 rendering/SVGInlineFlowBox.cpp \
1599 rendering/SVGInlineTextBox.cpp \
1600 rendering/SVGRenderSupport.cpp \
1601 rendering/SVGRootInlineBox.cpp
1604 svg/graphics/qt/RenderPathQt.cpp \
1605 svg/graphics/qt/SVGPaintServerGradientQt.cpp \
1606 svg/graphics/qt/SVGPaintServerLinearGradientQt.cpp \
1607 svg/graphics/qt/SVGPaintServerPatternQt.cpp \
1608 svg/graphics/qt/SVGPaintServerQt.cpp \
1609 svg/graphics/qt/SVGPaintServerRadialGradientQt.cpp \
1610 svg/graphics/qt/SVGPaintServerSolidQt.cpp \
1611 svg/graphics/qt/SVGResourceClipperQt.cpp \
1612 svg/graphics/qt/SVGResourceFilterQt.cpp \
1613 svg/graphics/qt/SVGResourceMaskerQt.cpp
1617 svgnames_a.output = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1618 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}\" --namespace SVG --guardFactoryWith \"ENABLE(SVG)\" --cppNamespace WebCore --namespaceURI 'http://www.w3.org/2000/svg' --factory --wrapperFactory --attrsNullNamespace --preprocessor \"$${QMAKE_MOC} -E\" --output $$GENERATED_SOURCES_DIR
1619 svgnames_a.input = SVG_NAMES
1620 svgnames_a.dependency_type = TYPE_C
1621 svgnames_a.CONFIG = target_predeps
1622 svgnames_a.variable_out = GENERATED_SOURCES
1623 svgnames_a.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}SVGNames.h
1624 addExtraCompiler(svgnames_a)
1625 svgnames_b.output = $$GENERATED_SOURCES_DIR/SVGElementFactory.cpp
1626 svgnames_b.commands = @echo -n ''
1627 svgnames_b.input = SVG_NAMES
1628 svgnames_b.depends = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1629 svgnames_b.CONFIG = target_predeps
1630 svgnames_b.variable_out = GENERATED_SOURCES
1631 svgnames_b.clean += ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}SVGElementFactory.h ${QMAKE_FILE_OUT}
1632 addExtraCompiler(svgnames_b)
1633 svgnames_c.output = $$GENERATED_SOURCES_DIR/JSSVGElementWrapperFactory.cpp
1634 svgnames_c.commands = @echo -n ''
1635 svgnames_c.input = SVG_NAMES
1636 svgnames_c.depends = $$GENERATED_SOURCES_DIR/SVGNames.cpp
1637 svgnames_c.CONFIG = target_predeps
1638 svgnames_c.variable_out = GENERATED_SOURCES
1639 svgnames_c.clean += ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}JSSVGElementWrapperFactory.h ${QMAKE_FILE_OUT}
1640 addExtraCompiler(svgnames_c)
1643 xlinknames.output = $$GENERATED_SOURCES_DIR/XLinkNames.cpp
1644 xlinknames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --attrs $$PWD/svg/xlinkattrs.in --namespace XLink --cppNamespace WebCore --namespaceURI 'http://www.w3.org/1999/xlink' --preprocessor \"$${QMAKE_MOC} -E\" --output $$GENERATED_SOURCES_DIR
1645 xlinknames.input = XLINK_NAMES
1646 xlinknames.dependency_type = TYPE_C
1647 xlinknames.CONFIG = target_predeps
1648 xlinknames.variable_out = GENERATED_SOURCES
1649 xlinknames.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}XLinkNames.h
1650 addExtraCompiler(xlinknames)
1653 cssprops.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1654 cssprops.input = WALDOCSSPROPS
1655 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
1656 cssprops.CONFIG = target_predeps no_link
1657 cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES SVGCSSPROPERTIES
1658 cssprops.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1659 addExtraCompiler(cssprops)
1662 cssvalues.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1663 cssvalues.input = WALDOCSSVALUES
1664 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
1665 cssvalues.CONFIG = target_predeps no_link
1666 cssvalues.depend = ${QMAKE_FILE_NAME} SVGCSSVALUES
1667 cssvalues.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1668 addExtraCompiler(cssvalues)
1671 cssprops.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1672 cssprops.input = WALDOCSSPROPS
1673 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
1674 cssprops.CONFIG = target_predeps no_link
1675 cssprops.depend = ${QMAKE_FILE_NAME} DASHBOARDSUPPORTCSSPROPERTIES
1676 cssprops.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1677 addExtraCompiler(cssprops)
1680 cssvalues.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.c
1681 cssvalues.input = WALDOCSSVALUES
1682 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
1683 cssvalues.CONFIG = target_predeps no_link
1684 cssvalues.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1685 addExtraCompiler(cssvalues)
1689 # GENERATOR 1: IDL compiler
1690 idl.output = $$GENERATED_SOURCES_DIR/JS${QMAKE_FILE_BASE}.cpp
1691 idl.variable_out = GENERATED_SOURCES
1692 idl.input = IDL_BINDINGS
1693 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}
1694 idl.CONFIG += target_predeps
1695 idl.clean = ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}JS${QMAKE_FILE_BASE}.h ${QMAKE_FILE_OUT}
1696 addExtraCompiler(idl)
1698 # GENERATOR 2-A: LUT creator
1699 #lut.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.lut.h
1700 #lut.commands = perl $$PWD/../JavaScriptCore/kjs/create_hash_table ${QMAKE_FILE_NAME} -i > ${QMAKE_FILE_OUT}
1701 #lut.depend = ${QMAKE_FILE_NAME}
1702 #lut.input = LUT_FILES
1703 #lut.CONFIG += no_link
1704 #QMAKE_EXTRA_COMPILERS += lut
1706 # GENERATOR 2-B: like JavaScriptCore/LUT Generator, but rename output
1707 luttable.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}Table.cpp
1708 luttable.commands = perl $$PWD/../JavaScriptCore/kjs/create_hash_table ${QMAKE_FILE_NAME} -i > ${QMAKE_FILE_OUT}
1709 luttable.depend = ${QMAKE_FILE_NAME}
1710 luttable.input = LUT_TABLE_FILES
1711 luttable.CONFIG += no_link
1712 luttable.dependency_type = TYPE_C
1713 addExtraCompiler(luttable)
1715 # GENERATOR 3: tokenizer (flex)
1716 tokenizer.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1717 tokenizer.commands = flex -t < ${QMAKE_FILE_NAME} | perl $$PWD/css/maketokenizer > ${QMAKE_FILE_OUT}
1718 tokenizer.dependency_type = TYPE_C
1719 tokenizer.input = TOKENIZER
1720 tokenizer.CONFIG += target_predeps no_link
1721 addExtraCompiler(tokenizer)
1723 # GENERATOR 4: CSS grammar
1724 cssbison.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1725 cssbison.commands = perl $$PWD/css/makegrammar.pl ${QMAKE_FILE_NAME} $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}
1726 cssbison.depend = ${QMAKE_FILE_NAME}
1727 cssbison.input = CSSBISON
1728 cssbison.CONFIG = target_predeps
1729 cssbison.dependency_type = TYPE_C
1730 cssbison.variable_out = GENERATED_SOURCES
1731 cssbison.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1732 addExtraCompiler(cssbison)
1733 #PRE_TARGETDEPS += $$GENERATED_SOURCES_DIR/CSSGrammar.cpp
1734 grammar_h_dep.target = tmp/CSSParser.o
1735 grammar_h_dep.depends = $$GENERATED_SOURCES_DIR/CSSGrammar.cpp $$GENERATED_SOURCES_DIR/HTMLNames.cpp
1736 QMAKE_EXTRA_TARGETS += grammar_h_dep
1739 htmlnames.output = $$GENERATED_SOURCES_DIR/HTMLNames.cpp
1740 htmlnames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --tags $$PWD/html/HTMLTagNames.in --attrs $$PWD/html/HTMLAttributeNames.in --extraDefines \"$${DEFINES}\" --namespace HTML --namespacePrefix xhtml --cppNamespace WebCore --namespaceURI 'http://www.w3.org/1999/xhtml' --wrapperFactory --attrsNullNamespace --preprocessor \"$${QMAKE_MOC} -E\" --output $$GENERATED_SOURCES_DIR
1741 htmlnames.input = HTML_NAMES
1742 htmlnames.dependency_type = TYPE_C
1743 htmlnames.CONFIG = target_predeps
1744 htmlnames.variable_out = GENERATED_SOURCES
1745 htmlnames.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}HTMLNames.h
1746 addExtraCompiler(htmlnames)
1747 htmlnames_a.output = $$GENERATED_SOURCES_DIR/JSHTMLElementWrapperFactory.cpp
1748 htmlnames_a.commands = @echo -n ''
1749 htmlnames_a.input = HTML_NAMES
1750 htmlnames_a.depends = $$GENERATED_SOURCES_DIR/HTMLNames.cpp
1751 htmlnames_a.CONFIG = target_predeps
1752 htmlnames_a.variable_out = GENERATED_SOURCES
1753 htmlnames_a.clean += ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}JSHTMLElementWrapperFactory.h ${QMAKE_FILE_OUT}
1754 addExtraCompiler(htmlnames_a)
1757 xmlnames.output = $$GENERATED_SOURCES_DIR/XMLNames.cpp
1758 xmlnames.commands = perl -I$$PWD/bindings/scripts $$PWD/dom/make_names.pl --attrs $$PWD/xml/xmlattrs.in --namespace XML --cppNamespace WebCore --namespaceURI 'http://www.w3.org/XML/1998/namespace' --preprocessor \"$${QMAKE_MOC} -E\" --output $$GENERATED_SOURCES_DIR
1759 xmlnames.input = XML_NAMES
1760 xmlnames.dependency_type = TYPE_C
1761 xmlnames.CONFIG = target_predeps
1762 xmlnames.variable_out = GENERATED_SOURCES
1763 xmlnames.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}XMLNames.h
1764 addExtraCompiler(xmlnames)
1767 entities.output = $$GENERATED_SOURCES_DIR/HTMLEntityNames.c
1768 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
1769 entities.input = ENTITIES_GPERF
1770 entities.dependency_type = TYPE_C
1771 entities.CONFIG = target_predeps no_link
1772 entities.clean = ${QMAKE_FILE_OUT}
1773 addExtraCompiler(entities)
1776 doctypestrings.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1777 doctypestrings.input = DOCTYPESTRINGS
1778 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}
1779 doctypestrings.dependency_type = TYPE_C
1780 doctypestrings.CONFIG += target_predeps no_link
1781 doctypestrings.clean = ${QMAKE_FILE_OUT}
1782 addExtraCompiler(doctypestrings)
1785 colordata.output = $$GENERATED_SOURCES_DIR/ColorData.c
1786 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}
1787 colordata.input = COLORDAT_GPERF
1788 colordata.CONFIG = target_predeps no_link
1789 addExtraCompiler(colordata)
1792 stylesheets.output = $$GENERATED_SOURCES_DIR/UserAgentStyleSheetsData.cpp
1793 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
1794 stylesheets.input = STYLESHEETS_EMBED
1795 stylesheets.CONFIG = target_predeps
1796 stylesheets.variable_out = GENERATED_SOURCES
1797 stylesheets.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}UserAgentStyleSheets.h
1798 addExtraCompiler(stylesheets)
1800 # GENERATOR 10: XPATH grammar
1801 xpathbison.output = $$GENERATED_SOURCES_DIR/${QMAKE_FILE_BASE}.cpp
1802 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
1803 xpathbison.depend = ${QMAKE_FILE_NAME}
1804 xpathbison.input = XPATHBISON
1805 xpathbison.CONFIG = target_predeps
1806 xpathbison.dependency_type = TYPE_C
1807 xpathbison.variable_out = GENERATED_SOURCES
1808 xpathbison.clean = ${QMAKE_FILE_OUT} ${QMAKE_VAR_GENERATED_SOURCES_DIR_SLASH}${QMAKE_FILE_BASE}.h
1809 addExtraCompiler(xpathbison)
1811 !CONFIG(QTDIR_build) {
1812 target.path = $$[QT_INSTALL_LIBS]
1813 include($$PWD/../WebKit/qt/Api/headers.pri)
1814 headers.files = $$WEBKIT_API_HEADERS
1815 headers.path = $$[QT_INSTALL_HEADERS]/QtWebKit
1816 prf.files = $$PWD/../WebKit/qt/Api/qtwebkit.prf
1817 prf.path = $$[QT_INSTALL_PREFIX]/mkspecs/features
1819 VERSION=$${QT_MAJOR_VERSION}.$${QT_MINOR_VERSION}.$${QT_PATCH_VERSION}
1822 DLLDESTDIR = $$OUTPUT_DIR/bin
1824 dlltarget.commands = $(COPY_FILE) $(DESTDIR)$(TARGET) $$[QT_INSTALL_BINS]
1825 dlltarget.CONFIG = no_path
1826 INSTALLS += dlltarget
1830 INSTALLS += target headers prf
1833 CONFIG += create_pc create_prl
1834 QMAKE_PKGCONFIG_LIBDIR = $$target.path
1835 QMAKE_PKGCONFIG_INCDIR = $$headers.path
1836 QMAKE_PKGCONFIG_DESTDIR = pkgconfig
1837 lib_replace.match = $$DESTDIR
1838 lib_replace.replace = $$[QT_INSTALL_LIBS]
1839 QMAKE_PKGCONFIG_INSTALL_REPLACE += lib_replace
1844 linux-icc*:QMAKE_CXXFLAGS_RELEASE ~= s/-O2/-O0/