Config.in 857 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. config BR2_PACKAGE_WEBKIT
  2. bool "webkit"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. select BR2_PACKAGE_LIBGTK2
  6. select BR2_PACKAGE_ICU
  7. select BR2_PACKAGE_CURL
  8. select BR2_PACKAGE_LIBXML2
  9. select BR2_PACKAGE_LIBXSLT
  10. select BR2_PACKAGE_SQLITE
  11. select BR2_PACKAGE_ENCHANT
  12. select BR2_PACKAGE_LIBSOUP
  13. select BR2_PACKAGE_CAIRO_PNG
  14. help
  15. WebKit is an open source, standards compliant web browser engine.
  16. http://webkit.org/
  17. comment "webkit requires a toolchain with C++ support and WCHAR enabled"
  18. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
  19. if BR2_PACKAGE_WEBKIT
  20. choice
  21. prompt "Rendering target"
  22. default BR2_PACKAGE_WEBKIT_X
  23. help
  24. Selects which rendering target will be used.
  25. config BR2_PACKAGE_WEBKIT_X11
  26. bool "X11"
  27. config BR2_PACKAGE_WEBKIT_DIRECTFB
  28. bool "DirectFB"
  29. select BR2_PACKAGE_DIRECTFB
  30. endchoice
  31. endif