diff options
| author | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-23 15:08:59 +0100 |
|---|---|---|
| committer | Simon Hausmann <simon.hausmann@digia.com> | 2012-11-23 15:09:20 +0100 |
| commit | 061d58bc0fa016cfeed744fd3e4663460635d69b (patch) | |
| tree | ad9b8b032c803e1c9054c23fa1b7a0f1976bf98f /Source/WebKit/WebKitWidgets.pro | |
| parent | 470286ecfe79d59df14944e5b5d34630fc739391 (diff) | |
| download | qtwebkit-061d58bc0fa016cfeed744fd3e4663460635d69b.tar.gz | |
Imported WebKit commit 8eb048315f36fa33731f28694630fe4a3c2cbc99 (http://svn.webkit.org/repository/webkit/trunk@135602)
New snapshot that fixes various bugs
Change-Id: Icb6ce541a26a9f500d087821ce4b83a8d8a5474a
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
Diffstat (limited to 'Source/WebKit/WebKitWidgets.pro')
| -rw-r--r-- | Source/WebKit/WebKitWidgets.pro | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/Source/WebKit/WebKitWidgets.pro b/Source/WebKit/WebKitWidgets.pro new file mode 100644 index 000000000..5ca754192 --- /dev/null +++ b/Source/WebKit/WebKitWidgets.pro @@ -0,0 +1,75 @@ +# ------------------------------------------------------------------- +# Target file for the WebKitWidgets static library +# +# See 'Tools/qmake/README' for an overview of the build system +# ------------------------------------------------------------------- + +TEMPLATE = lib +TARGET = WebKitWidgets + +include(WebKitWidgets.pri) + +WEBKIT += wtf javascriptcore webcore webkit1 +QT += gui + +CONFIG += staticlib + +SOURCES += \ + $$PWD/qt/Api/qgraphicswebview.cpp \ + $$PWD/qt/Api/qwebframe.cpp \ + $$PWD/qt/Api/qwebpage.cpp \ + $$PWD/qt/Api/qwebview.cpp \ + $$PWD/qt/Api/qwebplugindatabase.cpp \ + $$PWD/qt/Api/qwebinspector.cpp \ + $$PWD/qt/Api/qwebkitversion.cpp \ + $$PWD/qt/WebCoreSupport/QtFallbackWebPopup.cpp \ + $$PWD/qt/WebCoreSupport/QtWebComboBox.cpp \ + $$PWD/qt/WebCoreSupport/QWebUndoCommand.cpp \ + $$PWD/qt/WebCoreSupport/DefaultFullScreenVideoHandler.cpp \ + $$PWD/qt/WebCoreSupport/InitWebKitQt.cpp \ + $$PWD/qt/WebCoreSupport/InspectorClientWebPage.cpp \ + $$PWD/qt/WebCoreSupport/PageClientQt.cpp \ + $$PWD/qt/WebCoreSupport/QStyleFacadeImp.cpp \ + $$PWD/qt/WebCoreSupport/QGraphicsWidgetPluginImpl.cpp \ + $$PWD/qt/WebCoreSupport/QWidgetPluginImpl.cpp + +HEADERS += \ + $$PWD/qt/Api/qgraphicswebview.h \ + $$PWD/qt/Api/qwebframe.h \ + $$PWD/qt/Api/qwebframe_p.h \ + $$PWD/qt/Api/qwebkitglobal.h \ + $$PWD/qt/Api/qwebkitplatformplugin.h \ + $$PWD/qt/Api/qwebpage.h \ + $$PWD/qt/Api/qwebpage_p.h \ + $$PWD/qt/Api/qwebview.h \ + $$PWD/qt/Api/qwebinspector.h \ + $$PWD/qt/Api/qwebkitversion.h \ + $$PWD/qt/Api/qwebplugindatabase_p.h \ + $$PWD/qt/WebCoreSupport/InitWebKitQt.h \ + $$PWD/qt/WebCoreSupport/InspectorClientWebPage.h \ + $$PWD/qt/WebCoreSupport/DefaultFullScreenVideoHandler.h \ + $$PWD/qt/WebCoreSupport/QtFallbackWebPopup.h \ + $$PWD/qt/WebCoreSupport/QtWebComboBox.h \ + $$PWD/qt/WebCoreSupport/QWebUndoCommand.h \ + $$PWD/qt/WebCoreSupport/PageClientQt.h \ + $$PWD/qt/WebCoreSupport/QGraphicsWidgetPluginImpl.h \ + $$PWD/qt/WebCoreSupport/QStyleFacadeImp.h \ + $$PWD/qt/WebCoreSupport/QWidgetPluginImpl.h + +contains(QT_CONFIG, accessibility) { + SOURCES += $$PWD/qt/Api/qwebviewaccessible.cpp + HEADERS += $$PWD/qt/Api/qwebviewaccessible_p.h +} + +INCLUDEPATH += \ + $$PWD/qt/Api \ + $$PWD/qt/WebCoreSupport + +enable?(VIDEO) { + !use?(QTKIT):!use?(GSTREAMER):use?(QT_MULTIMEDIA) { + HEADERS += $$PWD/qt/WebCoreSupport/FullScreenVideoWidget.h + SOURCES += $$PWD/qt/WebCoreSupport/FullScreenVideoWidget.cpp + } +} + +use?(3D_GRAPHICS): WEBKIT += angle |
