DumpRenderTree.pro 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. # -------------------------------------------------------------------
  2. # Project file for the DumpRenderTree binary (DRT)
  3. #
  4. # See 'Tools/qmake/README' for an overview of the build system
  5. # -------------------------------------------------------------------
  6. TEMPLATE = app
  7. TARGET = DumpRenderTree
  8. DESTDIR = $$ROOT_BUILD_DIR/bin
  9. WEBKIT += wtf javascriptcore webcore
  10. INCLUDEPATH += \
  11. $$PWD/ \
  12. $$PWD/.. \
  13. $${ROOT_WEBKIT_DIR}/Source/WebCore/platform/qt \
  14. $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WebCoreSupport \
  15. $${ROOT_WEBKIT_DIR}/Source/WebKit/qt/WidgetSupport \
  16. $${ROOT_WEBKIT_DIR}/Source/WTF
  17. QT = core gui network testlib webkitwidgets widgets
  18. have?(QTPRINTSUPPORT): QT += printsupport
  19. macx: QT += xml
  20. HEADERS += \
  21. $$PWD/../WorkQueue.h \
  22. $$PWD/../DumpRenderTree.h \
  23. $$PWD/../GCController.h \
  24. $$PWD/../TestRunner.h \
  25. DumpRenderTreeQt.h \
  26. EventSenderQt.h \
  27. TextInputControllerQt.h \
  28. WorkQueueItemQt.h \
  29. TestRunnerQt.h \
  30. testplugin.h
  31. SOURCES += \
  32. $$PWD/../WorkQueue.cpp \
  33. $$PWD/../DumpRenderTreeCommon.cpp \
  34. $$PWD/../GCController.cpp \
  35. $$PWD/../TestRunner.cpp \
  36. DumpRenderTreeQt.cpp \
  37. EventSenderQt.cpp \
  38. TextInputControllerQt.cpp \
  39. WorkQueueItemQt.cpp \
  40. TestRunnerQt.cpp \
  41. GCControllerQt.cpp \
  42. testplugin.cpp \
  43. DumpRenderTreeMain.cpp
  44. wince*: {
  45. INCLUDEPATH += $$WCECOMPAT/include
  46. LIBS += $$WCECOMPAT/lib/wcecompat.lib
  47. }
  48. DEFINES -= USE_SYSTEM_MALLOC=0
  49. DEFINES += USE_SYSTEM_MALLOC=1
  50. RESOURCES = DumpRenderTree.qrc