Merge branch 'master' of git://scm.dev.nokia.troll.no/qt/qtbase-staging
[profile/ivi/qtbase.git] / sync.profile
1 %modules = ( # path to module name map
2     "QtGui" => "$basedir/src/gui",
3     "QtOpenGL" => "$basedir/src/opengl",
4     "QtOpenVG" => "$basedir/src/openvg",
5     "QtCore" => "$basedir/src/corelib",
6     "QtXml" => "$basedir/src/xml",
7     "QtSql" => "$basedir/src/sql",
8     "QtNetwork" => "$basedir/src/network",
9     "QtTest" => "$basedir/src/testlib",
10     "QtDBus" => "$basedir/src/dbus",
11     "QtUiTools" => "$basedir/src/uitools",
12     "QtDesigner" => "$basedir/tools/uilib",
13 );
14 %moduleheaders = ( # restrict the module headers to those found in relative path
15 );
16 %classnames = (
17     "qglobal.h" => "QtGlobal",
18     "qendian.h" => "QtEndian",
19     "qconfig.h" => "QtConfig",
20     "qplugin.h" => "QtPlugin",
21     "qalgorithms.h" => "QtAlgorithms",
22     "qcontainerfwd.h" => "QtContainerFwd",
23     "qdebug.h" => "QtDebug",
24     "qevent.h" => "QtEvents",
25     "qnamespace.h" => "Qt",
26     "qssl.h" => "QSsl",
27     "qtest.h" => "QTest",
28     "qtconcurrentmap.h" => "QtConcurrentMap",
29     "qtconcurrentfilter.h" => "QtConcurrentFilter",
30     "qtconcurrentrun.h" => "QtConcurrentRun",
31     "qtcoreversion.h" => "QtCoreVersion",
32     "qtdbusversion.h" => "QtDBusVersion",
33     "qtguiversion.h" => "QtGuiVersion",
34     "qtnetworkversion.h" => "QtNetworkVersion",
35     "qtopenglversion.h" => "QtOpenGLVersion",
36     "qtopenvgversion.h" => "QtOpenVGVersion",
37     "qtsqlversion.h" => "QtSqlVersion",
38     "qttestversion.h" => "QtTestVersion",
39     "qtxmlversion.h" => "QtXmlVersion",
40 );
41 %mastercontent = (
42     "core" => "#include <QtCore/QtCore>\n",
43     "gui" => "#include <QtGui/QtGui>\n",
44     "network" => "#include <QtNetwork/QtNetwork>\n",
45     "opengl" => "#include <QtOpenGL/QtOpenGL>\n",
46     "openvg" => "#include <QtOpenVG/QtOpenVG>\n",
47     "xml" => "#include <QtXml/QtXml>\n",
48     "uitools" => "#include <QtUiTools/QtUiTools>\n",
49     "designer" => "#include <QtDesigner/QtDesigner>\n",
50 );
51 %modulepris = (
52     "QtCore" => "$basedir/src/modules/qt_core.pri",
53     "QtDBus" => "$basedir/src/modules/qt_dbus.pri",
54     "QtGui" => "$basedir/src/modules/qt_gui.pri",
55     "QtNetwork" => "$basedir/src/modules/qt_network.pri",
56     "QtOpenGL" => "$basedir/src/modules/qt_opengl.pri",
57     "QtOpenVG" => "$basedir/src/modules/qt_openvg.pri",
58     "QtSql" => "$basedir/src/modules/qt_sql.pri",
59     "QtTest" => "$basedir/src/modules/qt_testlib.pri",
60     "QtXml" => "$basedir/src/modules/qt_xml.pri",
61     "QtUiTools" => "$basedir/src/modules/qt_uitools.pri",
62     "QtDesigner" => "$basedir/src/modules/qt_uilib.pri",
63 );
64
65 @ignore_for_master_contents = ( "qt.h", "qpaintdevicedefs.h" );
66 @ignore_for_include_check = ( "qatomic.h" );
67 @ignore_for_qt_begin_header_check = ( "qiconset.h", "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qt_windows.h" );
68 @ignore_for_qt_begin_namespace_check = ( "qconfig.h", "qconfig-dist.h", "qconfig-large.h", "qconfig-medium.h", "qconfig-minimal.h", "qconfig-small.h", "qfeatures.h", "qatomic_arch.h", "qatomic_windowsce.h", "qt_windows.h", "qatomic_macosx.h" );
69 @ignore_for_qt_module_check = ( "$modules{QtCore}/arch", "$modules{QtCore}/global", "$modules{QtTest}", "$modules{QtDBus}" );
70 # Modules and programs, and their dependencies.
71 # Each of the module version specifiers can take one of the following values:
72 #   - A specific Git revision.
73 #   - "LATEST_REVISION", to always test against the latest revision.
74 #   - "LATEST_RELEASE", to always test against the latest public release.
75 #   - "THIS_REPOSITORY", to indicate that the module is in this repository.
76 %dependencies = (
77     "QtOpenVG" => {
78         "QtCore" => "THIS_REPOSITORY",
79         "QtGui" => "THIS_REPOSITORY",
80     },
81     "QtCore" => {
82     },
83     "QtOpenGL" => {
84         "QtCore" => "THIS_REPOSITORY",
85         "QtGui" => "THIS_REPOSITORY",
86     },
87     "QtXml" => {
88         "QtCore" => "THIS_REPOSITORY",
89     },
90     "QtNetwork" => {
91         "QtCore" => "THIS_REPOSITORY",
92     },
93     "QtTest" => {
94         "QtCore" => "THIS_REPOSITORY",
95     },
96     "QtDBus" => {
97         "QtCore" => "THIS_REPOSITORY",
98         "QtXml" => "THIS_REPOSITORY",
99     },
100     "QtSql" => {
101         "QtCore" => "THIS_REPOSITORY",
102     },
103     "QtGui" => {
104         "QtCore" => "THIS_REPOSITORY",
105     },
106     "QtUiTools" => {
107         "QtCore" => "THIS_REPOSITORY",
108         "QtGui" => "THIS_REPOSITORY",
109     },
110 );