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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
# -------------------------------------------------------------------
# Target file for the QtWebKitWidgets dynamic library
#
# See 'Tools/qmake/README' for an overview of the build system
# -------------------------------------------------------------------
# Use Qt5's module system
load(qt_build_config)
TEMPLATE = lib
TARGET = QtWebKitWidgets
# 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_WEBKITWIDGETS_LIB
WEBKIT_DESTDIR = $${ROOT_BUILD_DIR}/lib
SOURCE_DIR = $${ROOT_WEBKIT_DIR}/Source/WebKit
INCLUDEPATH += \
$$SOURCE_DIR/qt/Api \
$$SOURCE_DIR/qt/WidgetApi \
$$SOURCE_DIR/qt/WebCoreSupport \
$$SOURCE_DIR/qt/WidgetSupport \
$$ROOT_WEBKIT_DIR/Source/WTF/wtf/qt
have?(qtsensors):if(enable?(DEVICE_ORIENTATION)|enable?(ORIENTATION_EVENTS)): QT += sensors
have?(qtpositioning):enable?(GEOLOCATION): QT += positioning
use?(QT_MULTIMEDIA): QT *= multimediawidgets
contains(CONFIG, texmap): DEFINES += WTF_USE_TEXTURE_MAPPER=1
use?(PLUGIN_BACKEND_XLIB): PKGCONFIG += x11
QT += network widgets widgets-private
have?(QTPRINTSUPPORT): QT += printsupport
use?(TEXTURE_MAPPER_GL)|enable?(WEBGL) {
QT *= opengl
}
QT += webkit
use?(3D_GRAPHICS): WEBKIT += ANGLE
WEBKIT += javascriptcore wtf webcore
MODULE = webkitwidgets
CONFIG += creating_module
# We want the QtWebKit API forwarding includes to live in the root build dir.
MODULE_BASE_DIR = $$_PRO_FILE_PWD_
MODULE_BASE_OUTDIR = $$ROOT_BUILD_DIR
# This is the canonical list of dependencies for the public API of
# the QtWebKitWidgets library, and will end up in the library's prl file.
QT_API_DEPENDS = core gui widgets network webkit
# We load the relevant modules here, so that the effects of each module
# on the QT variable can be picked up when we later load(qt_module).
load(webkit_modules)
# ---------------- Custom developer-build handling -------------------
#
# The assumption for Qt developer builds is that the module file
# will be put into qtbase/mkspecs/modules, and the libraries into
# qtbase/lib, with rpath/install_name set to the Qt lib dir.
#
# For WebKit we don't want that behavior for the libraries, as we want
# them to be self-contained in the WebKit build dir.
#
!production_build: CONFIG += force_independent
BASE_TARGET = $$TARGET
CMAKE_MODULE_TESTS = $$ROOT_WEBKIT_DIR/Source/WebKit/qt/tests/cmake
load(qt_module)
# Make sure the install_name of the QtWebKit library point to webkit
!production_build:force_independent:macx {
# We do our own absolute path so that we can trick qmake into
# using the webkit build path instead of the Qt install path.
CONFIG -= absolute_library_soname
QMAKE_LFLAGS_SONAME = $$QMAKE_LFLAGS_SONAME$$WEBKIT_DESTDIR/
!debug_and_release|build_pass {
# We also have to make sure the install_name is correct when
# the library is installed.
change_install_name.depends = install_target
# The install rules generated by qmake for frameworks are busted in
# that both the debug and the release makefile copy QtWebKit.framework
# into the install dir, so whatever changes we did to the release library
# will get overwritten when the debug library is installed. We work around
# that by running install_name on both, for both configs.
change_install_name.commands = framework_dir=\$\$(dirname $(TARGETD)); \
for file in \$\$(ls $$[QT_INSTALL_LIBS]/\$\$framework_dir/$$BASE_TARGET*); do \
install_name_tool -id \$\$file \$\$file; \
done
default_install_target.target = install
default_install_target.depends += change_install_name
QMAKE_EXTRA_TARGETS += change_install_name default_install_target
}
}
SOURCES += \
$$PWD/WebKit/qt/WidgetApi/qgraphicswebview.cpp \
$$PWD/WebKit/qt/WidgetApi/qwebframe.cpp \
$$PWD/WebKit/qt/WidgetApi/qwebpage.cpp \
$$PWD/WebKit/qt/WidgetApi/qwebview.cpp \
$$PWD/WebKit/qt/WidgetApi/qwebinspector.cpp \
$$PWD/WebKit/qt/WidgetSupport/QtFallbackWebPopup.cpp \
$$PWD/WebKit/qt/WidgetSupport/QtWebComboBox.cpp \
$$PWD/WebKit/qt/WidgetSupport/QWebUndoCommand.cpp \
$$PWD/WebKit/qt/WidgetSupport/InitWebKitQt.cpp \
$$PWD/WebKit/qt/WidgetSupport/InspectorClientWebPage.cpp \
$$PWD/WebKit/qt/WidgetSupport/PageClientQt.cpp \
$$PWD/WebKit/qt/WidgetSupport/QStyleFacadeImp.cpp \
$$PWD/WebKit/qt/WidgetSupport/QGraphicsWidgetPluginImpl.cpp \
$$PWD/WebKit/qt/WidgetSupport/QWidgetPluginImpl.cpp
HEADERS += \
$$PWD/WebKit/qt/WidgetApi/qgraphicswebview.h \
$$PWD/WebKit/qt/WidgetApi/qwebframe.h \
$$PWD/WebKit/qt/WidgetApi/qwebframe_p.h \
$$PWD/WebKit/qt/WidgetApi/qwebpage.h \
$$PWD/WebKit/qt/WidgetApi/qwebpage_p.h \
$$PWD/WebKit/qt/WidgetApi/qwebview.h \
$$PWD/WebKit/qt/WidgetApi/qwebinspector.h \
$$PWD/WebKit/qt/WidgetApi/qwebinspector_p.h \
$$PWD/WebKit/qt/WidgetSupport/InitWebKitQt.h \
$$PWD/WebKit/qt/WidgetSupport/InspectorClientWebPage.h \
$$PWD/WebKit/qt/WidgetSupport/QtFallbackWebPopup.h \
$$PWD/WebKit/qt/WidgetSupport/QtWebComboBox.h \
$$PWD/WebKit/qt/WidgetSupport/QWebUndoCommand.h \
$$PWD/WebKit/qt/WidgetSupport/PageClientQt.h \
$$PWD/WebKit/qt/WidgetSupport/QGraphicsWidgetPluginImpl.h \
$$PWD/WebKit/qt/WidgetSupport/QStyleFacadeImp.h \
$$PWD/WebKit/qt/WidgetSupport/QWidgetPluginImpl.h \
!contains(QT_CONFIG, static) {
HEADERS += $$PWD/WebKit/qt/Api/qwebkitplatformplugin.h
}
contains(QT_CONFIG, accessibility) {
SOURCES += $$PWD/WebKit/qt/WidgetApi/qwebviewaccessible.cpp
HEADERS += $$PWD/WebKit/qt/WidgetApi/qwebviewaccessible_p.h
}
INCLUDEPATH += \
$$PWD/qt/Api \
$$PWD/qt/WebCoreSupport
enable?(VIDEO) {
!use?(GSTREAMER):use?(QT_MULTIMEDIA) {
HEADERS += $$PWD/WebKit/qt/WidgetSupport/FullScreenVideoWidget.h
SOURCES += $$PWD/WebKit/qt/WidgetSupport/FullScreenVideoWidget.cpp
}
}
use?(QT_MULTIMEDIA) {
SOURCES += $$PWD/WebKit/qt/WidgetSupport/DefaultFullScreenVideoHandler.cpp
HEADERS += $$PWD/WebKit/qt/WidgetSupport/DefaultFullScreenVideoHandler.h
}
|