blob: 5ca754192b7420f98fceb2db9dae515953ccc5dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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
|