InjectedBundle.pri 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. # -------------------------------------------------------------------
  2. # Project file for TestWebKitAPI's InjectedBundle
  3. #
  4. # See 'Tools/qmake/README' for an overview of the build system
  5. # -------------------------------------------------------------------
  6. TEMPLATE = lib
  7. TARGET = TestWebKitAPIInjectedBundle
  8. INCLUDEPATH += $$PWD
  9. INCLUDEPATH += $${ROOT_WEBKIT_DIR}/Source/ThirdParty/gtest/include
  10. SOURCES += \
  11. $$PWD/InjectedBundleController.cpp \
  12. $$PWD/InjectedBundleController.h \
  13. $$PWD/InjectedBundleMain.cpp \
  14. $$PWD/InjectedBundleTest.h \
  15. $$PWD/PlatformUtilities.cpp \
  16. $$PWD/PlatformUtilities.h \
  17. $$PWD/qt/InjectedBundleControllerQt.cpp \
  18. $$PWD/qt/PlatformUtilitiesQt.cpp \
  19. $$PWD/Tests/WebKit2/CanHandleRequest_Bundle.cpp \
  20. $$PWD/Tests/WebKit2/DocumentStartUserScriptAlertCrash_Bundle.cpp \
  21. $$PWD/Tests/WebKit2/DOMWindowExtensionBasic_Bundle.cpp \
  22. $$PWD/Tests/WebKit2/DOMWindowExtensionNoCache_Bundle.cpp \
  23. $$PWD/Tests/WebKit2/GetInjectedBundleInitializationUserDataCallback_Bundle.cpp \
  24. $$PWD/Tests/WebKit2/HitTestResultNodeHandle_Bundle.cpp \
  25. $$PWD/Tests/WebKit2/InjectedBundleBasic_Bundle.cpp \
  26. $$PWD/Tests/WebKit2/InjectedBundleFrameHitTest_Bundle.cpp \
  27. $$PWD/Tests/WebKit2/InjectedBundleInitializationUserDataCallbackWins_Bundle.cpp \
  28. $$PWD/Tests/WebKit2/LoadCanceledNoServerRedirectCallback_Bundle.cpp \
  29. $$PWD/Tests/WebKit2/MouseMoveAfterCrash_Bundle.cpp \
  30. $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayout_Bundle.cpp \
  31. $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFails_Bundle.cpp \
  32. $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutForImages_Bundle.cpp \
  33. $$PWD/Tests/WebKit2/NewFirstVisuallyNonEmptyLayoutFrames_Bundle.cpp \
  34. $$PWD/Tests/WebKit2/ParentFrame_Bundle.cpp \
  35. $$PWD/Tests/WebKit2/ResponsivenessTimerDoesntFireEarly_Bundle.cpp \
  36. $$PWD/Tests/WebKit2/ShouldGoToBackForwardListItem_Bundle.cpp \
  37. $$PWD/Tests/WebKit2/UserMessage_Bundle.cpp \
  38. $$PWD/Tests/WebKit2/WillSendSubmitEvent_Bundle.cpp \
  39. $$PWD/Tests/WebKit2/WKConnection_Bundle.cpp
  40. DESTDIR = $${ROOT_BUILD_DIR}/lib
  41. QT += core webkit
  42. WEBKIT += wtf javascriptcore webcore webkit2
  43. CONFIG += plugin rpath compiling_thirdparty_code
  44. LIBS += -L$${ROOT_BUILD_DIR}/Source/ThirdParty/gtest/$$targetSubDir() -lgtest
  45. DEFINES += APITEST_SOURCE_DIR=\\\"$$PWD\\\" \
  46. ROOT_BUILD_DIR=\\\"$${ROOT_BUILD_DIR}\\\"