sync.profile 895 B

123456789101112131415161718192021222324
  1. %modules = ( # path to module name map
  2. "QtWebKit" => "$basedir",
  3. "QtWebKitWidgets" => "$basedir"
  4. );
  5. %moduleheaders = ( # restrict the module headers to those found in relative path
  6. "QtWebKit" => "WebKit/qt/Api;WebKit2/UIProcess/API/qt",
  7. "QtWebKitWidgets" => "WebKit/qt/WidgetApi",
  8. );
  9. %classnames = (
  10. );
  11. @ignore_for_master_contents = ( "qwebscriptworld.h", "testwindow.h", "util.h", "bytearraytestdata.h" );
  12. # Module dependencies.
  13. # Every module that is required to build this module should have one entry.
  14. # Each of the module version specifiers can take one of the following values:
  15. # - A specific Git revision.
  16. # - any git symbolic ref resolvable from the module's repository (e.g. "refs/heads/master" to track master branch)
  17. #
  18. %dependencies = (
  19. "qtbase" => "refs/heads/master",
  20. "qtdeclarative" => "refs/heads/master",
  21. "qtjsbackend" => "refs/heads/master",
  22. );