CMakeLists.txt 779 B

1234567891011121314151617181920212223242526272829
  1. if (ENABLE_WEBKIT2 AND NOT("${PORT}" STREQUAL "GTK"))
  2. add_subdirectory(WebKitTestRunner)
  3. endif ()
  4. if ("${PORT}" STREQUAL "Efl")
  5. add_subdirectory(ImageDiff)
  6. add_subdirectory(EWebLauncher/ControlTheme)
  7. if (ENABLE_WEBKIT)
  8. add_subdirectory(DumpRenderTree/efl)
  9. add_subdirectory(EWebLauncher)
  10. endif ()
  11. if (ENABLE_WEBKIT2)
  12. add_subdirectory(MiniBrowser/efl)
  13. endif ()
  14. add_subdirectory(DumpRenderTree/TestNetscapePlugIn)
  15. elseif ("${PORT}" STREQUAL "GTK")
  16. if (ENABLE_WEBKIT2)
  17. add_subdirectory(MiniBrowser/gtk)
  18. endif ()
  19. elseif ("${PORT}" STREQUAL "WinCE")
  20. add_subdirectory(WinCELauncher)
  21. endif ()
  22. if (ENABLE_WEBKIT2 AND ENABLE_API_TESTS)
  23. add_subdirectory(TestWebKitAPI)
  24. endif ()