blob: 6dbb907364cbae7cc7c7882289d59fe2066e3c4d (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
|
# -------------------------------------------------------------------
# Target file for the WebKit1 static library
#
# See 'Tools/qmake/README' for an overview of the build system
# -------------------------------------------------------------------
TEMPLATE = lib
TARGET = WebKit1
include(WebKit1.pri)
WEBKIT += wtf javascriptcore webcore
QT += gui
# This is relied upon by our export macros and seems not to be properly
# defined by the logic in qt_module.prf as it should
DEFINES += QT_BUILD_WEBKIT_LIB
CONFIG += staticlib
SOURCES += \
$$PWD/qt/Api/qhttpheader.cpp \
$$PWD/qt/Api/qwebdatabase.cpp \
$$PWD/qt/Api/qwebelement.cpp \
$$PWD/qt/Api/qwebhistory.cpp \
$$PWD/qt/Api/qwebhistoryinterface.cpp \
$$PWD/qt/Api/qwebkitglobal.cpp \
$$PWD/qt/Api/qwebplugindatabase.cpp \
$$PWD/qt/Api/qwebpluginfactory.cpp \
$$PWD/qt/Api/qwebsecurityorigin.cpp \
$$PWD/qt/Api/qwebsettings.cpp \
$$PWD/qt/Api/qwebscriptworld.cpp \
$$PWD/qt/WebCoreSupport/ChromeClientQt.cpp \
$$PWD/qt/WebCoreSupport/ContextMenuClientQt.cpp \
$$PWD/qt/WebCoreSupport/DragClientQt.cpp \
$$PWD/qt/WebCoreSupport/DumpRenderTreeSupportQt.cpp \
$$PWD/qt/WebCoreSupport/EditorClientQt.cpp \
$$PWD/qt/WebCoreSupport/FrameLoaderClientQt.cpp \
$$PWD/qt/WebCoreSupport/FrameNetworkingContextQt.cpp \
$$PWD/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp \
$$PWD/qt/WebCoreSupport/InitWebCoreQt.cpp \
$$PWD/qt/WebCoreSupport/InspectorClientQt.cpp \
$$PWD/qt/WebCoreSupport/InspectorServerQt.cpp \
$$PWD/qt/WebCoreSupport/NotificationPresenterClientQt.cpp \
$$PWD/qt/WebCoreSupport/PlatformStrategiesQt.cpp \
$$PWD/qt/WebCoreSupport/PopupMenuQt.cpp \
$$PWD/qt/WebCoreSupport/QtPlatformPlugin.cpp \
$$PWD/qt/WebCoreSupport/QtPluginWidgetAdapter.cpp \
$$PWD/qt/WebCoreSupport/QtPrintContext.cpp \
$$PWD/qt/WebCoreSupport/QWebFrameAdapter.cpp \
$$PWD/qt/WebCoreSupport/QWebPageAdapter.cpp \
$$PWD/qt/WebCoreSupport/SearchPopupMenuQt.cpp \
$$PWD/qt/WebCoreSupport/TextCheckerClientQt.cpp \
$$PWD/qt/WebCoreSupport/TextureMapperLayerClientQt.cpp \
$$PWD/qt/WebCoreSupport/UndoStepQt.cpp \
$$PWD/qt/WebCoreSupport/WebEventConversion.cpp
HEADERS += \
$$PWD/qt/Api/qhttpheader_p.h \
$$PWD/qt/Api/qwebdatabase.h \
$$PWD/qt/Api/qwebelement.h \
$$PWD/qt/Api/qwebelement_p.h \
$$PWD/qt/Api/qwebhistory.h \
$$PWD/qt/Api/qwebhistory_p.h \
$$PWD/qt/Api/qwebhistoryinterface.h \
$$PWD/qt/Api/qwebplugindatabase_p.h \
$$PWD/qt/Api/qwebpluginfactory.h \
$$PWD/qt/Api/qwebsecurityorigin.h \
$$PWD/qt/Api/qwebsettings.h \
$$PWD/qt/Api/qwebscriptworld_p.h \
$$PWD/qt/Api/qwebkitplatformplugin.h \
$$PWD/qt/WebCoreSupport/ChromeClientQt.h \
$$PWD/qt/WebCoreSupport/ContextMenuClientQt.h \
$$PWD/qt/WebCoreSupport/DragClientQt.h \
$$PWD/qt/WebCoreSupport/EditorClientQt.h \
$$PWD/qt/WebCoreSupport/FrameLoaderClientQt.h \
$$PWD/qt/WebCoreSupport/FrameNetworkingContextQt.h \
$$PWD/qt/WebCoreSupport/GeolocationPermissionClientQt.h \
$$PWD/qt/WebCoreSupport/InitWebCoreQt.h \
$$PWD/qt/WebCoreSupport/InspectorClientQt.h \
$$PWD/qt/WebCoreSupport/InspectorServerQt.h \
$$PWD/qt/WebCoreSupport/NotificationPresenterClientQt.h \
$$PWD/qt/WebCoreSupport/PlatformStrategiesQt.h \
$$PWD/qt/WebCoreSupport/PopupMenuQt.h \
$$PWD/qt/WebCoreSupport/QtPlatformPlugin.h \
$$PWD/qt/WebCoreSupport/QtPluginWidgetAdapter.h \
$$PWD/qt/WebCoreSupport/QtPrintContext.h \
$$PWD/qt/WebCoreSupport/QWebFrameAdapter.h \
$$PWD/qt/WebCoreSupport/QWebPageAdapter.h \
$$PWD/qt/WebCoreSupport/SearchPopupMenuQt.h \
$$PWD/qt/WebCoreSupport/TextCheckerClientQt.h \
$$PWD/qt/WebCoreSupport/TextureMapperLayerClientQt.h \
$$PWD/qt/WebCoreSupport/UndoStepQt.h \
$$PWD/qt/WebCoreSupport/WebEventConversion.h
INCLUDEPATH += \
$$PWD/qt/WebCoreSupport
use?(3D_GRAPHICS): WEBKIT += angle
have?(qtpositioning):enable?(GEOLOCATION) {
HEADERS += \
$$PWD/qt/WebCoreSupport/GeolocationClientQt.h
SOURCES += \
$$PWD/qt/WebCoreSupport/GeolocationClientQt.cpp
}
enable?(ICONDATABASE) {
HEADERS += \
$$PWD/../WebCore/loader/icon/IconDatabaseClient.h \
$$PWD/qt/WebCoreSupport/IconDatabaseClientQt.h
SOURCES += \
$$PWD/qt/WebCoreSupport/IconDatabaseClientQt.cpp
}
enable?(VIDEO) {
use?(GSTREAMER) | use?(QT_MULTIMEDIA) {
HEADERS += $$PWD/qt/WebCoreSupport/FullScreenVideoQt.h
SOURCES += $$PWD/qt/WebCoreSupport/FullScreenVideoQt.cpp
}
}
|