Config.in 949 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. Note that WebKit does not build with a toolchain using the
  17. old linuxthreads library.
  18. http://webkit.org/
  19. comment "webkit requires a toolchain with C++ support and WCHAR enabled"
  20. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
  21. if BR2_PACKAGE_WEBKIT
  22. choice
  23. prompt "Rendering target"
  24. default BR2_PACKAGE_WEBKIT_X
  25. help
  26. Selects which rendering target will be used.
  27. config BR2_PACKAGE_WEBKIT_X11
  28. bool "X11"
  29. config BR2_PACKAGE_WEBKIT_DIRECTFB
  30. bool "DirectFB"
  31. select BR2_PACKAGE_DIRECTFB
  32. endchoice
  33. endif