blob: a7c6c26c32a1385f6ec9029912b097fe1330aa0f (
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
|
TARGET = DumpRenderTree
CONFIG -= app_bundle
CONFIG += uitools
BASEDIR = $$PWD/../
isEmpty(OUTPUT_DIR): OUTPUT_DIR = ../../..
include(../../../WebKit.pri)
INCLUDEPATH += ../../../Source
INCLUDEPATH += ../../../Source/JavaScriptCore
INCLUDEPATH += ../../../Source/JavaScriptCore/ForwardingHeaders
INCLUDEPATH += $$BASEDIR
DESTDIR = ../../../bin
unix:!mac:!symbian {
CONFIG += link_pkgconfig
PKGCONFIG += fontconfig
}
QT = core gui network testlib
macx: QT += xml
HEADERS = $$BASEDIR/WorkQueue.h \
DumpRenderTreeQt.h \
EventSenderQt.h \
TextInputControllerQt.h \
WorkQueueItemQt.h \
LayoutTestControllerQt.h \
GCControllerQt.h \
PlainTextControllerQt.h \
testplugin.h
SOURCES = ../../../Source/JavaScriptCore/wtf/Assertions.cpp \
$$BASEDIR/WorkQueue.cpp \
DumpRenderTreeQt.cpp \
EventSenderQt.cpp \
TextInputControllerQt.cpp \
PlainTextControllerQt.cpp \
WorkQueueItemQt.cpp \
LayoutTestControllerQt.cpp \
GCControllerQt.cpp \
testplugin.cpp \
main.cpp
unix:!mac {
QMAKE_RPATHDIR = $$OUTPUT_DIR/lib $$QMAKE_RPATHDIR
}
wince*: {
INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/ce-compat $$WCECOMPAT/include
LIBS += $$WCECOMPAT/lib/wcecompat.lib
}
DEFINES += USE_SYSTEM_MALLOC=1
|