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
|
# -------------------------------------------------------------------
# Project file for WebKitTestRunner's InjectedBundle
#
# See 'Tools/qmake/README' for an overview of the build system
# -------------------------------------------------------------------
TEMPLATE = lib
TARGET = WTRInjectedBundle
SOURCES += \
AccessibilityController.cpp \
AccessibilityTextMarker.cpp \
AccessibilityTextMarkerRange.cpp \
AccessibilityUIElement.cpp \
InjectedBundle.cpp \
InjectedBundle.h \
InjectedBundleMain.cpp \
InjectedBundlePage.cpp \
InjectedBundlePage.h \
EventSendingController.cpp \
EventSendingController.h \
GCController.cpp \
GCController.h \
TestRunner.cpp \
TestRunner.h \
TextInputController.cpp \
TextInputController.h \
Bindings/JSWrapper.cpp \
qt/ActivateFontsQt.cpp \
qt/InjectedBundleQt.cpp \
qt/TestRunnerQt.cpp
# Adds the generated sources to SOURCES
include(DerivedSources.pri)
HEADERS += \
AccessibilityController.h \
AccessibilityTextMarker.h \
AccessibilityTextMarkerRange.h \
AccessibilityUIElement.h \
ActivateFonts.h \
EventSendingController.h \
GCController.h \
InjectedBundle.h \
InjectedBundlePage.h \
TestRunner.h \
TextInputController.h \
DESTDIR = $${ROOT_BUILD_DIR}/lib
QT += widgets webkit
WEBKIT += wtf javascriptcore webcore
CONFIG += plugin rpath
have?(FONTCONFIG): PKGCONFIG += fontconfig
INCLUDEPATH += \
$$PWD \
$$PWD/.. \
$$PWD/Bindings \
$${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
$${ROOT_WEBKIT_DIR}/Source/WebCore/testing/js \
$${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport
PREFIX_HEADER = $$PWD/../WebKitTestRunnerPrefix.h
*-g++*:QMAKE_CXXFLAGS += "-include $$PREFIX_HEADER"
linux-* {
QMAKE_LFLAGS += -Wl,--no-undefined
}
|