Merge branch 'qtquick2'
[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 );
32 %mastercontent = (
33     "core" => "#include <QtCore/QtCore>\n",
34     "gui" => "#include <QtGui/QtGui>\n",
35     "network" => "#include <QtNetwork/QtNetwork>\n",
36     "opengl" => "#include <QtOpenGL/QtOpenGL>\n",
37     "openvg" => "#include <QtOpenVG/QtOpenVG>\n",
38     "xml" => "#include <QtXml/QtXml>\n",
39     "uitools" => "#include <QtUiTools/QtUiTools>\n",
40     "designer" => "#include <QtDesigner/QtDesigner>\n",
41 );
42 %modulepris = (
43     "QtCore" => "$basedir/src/modules/qt_core.pri",
44     "QtDBus" => "$basedir/src/modules/qt_dbus.pri",
45     "QtGui" => "$basedir/src/modules/qt_gui.pri",
46     "QtNetwork" => "$basedir/src/modules/qt_network.pri",
47     "QtOpenGL" => "$basedir/src/modules/qt_opengl.pri",
48     "QtOpenVG" => "$basedir/src/modules/qt_openvg.pri",
49     "QtSql" => "$basedir/src/modules/qt_sql.pri",
50     "QtTest" => "$basedir/src/modules/qt_testlib.pri",
51     "QtXml" => "$basedir/src/modules/qt_xml.pri",
52     "QtUiTools" => "$basedir/src/modules/qt_uitools.pri",
53     "QtDesigner" => "$basedir/src/modules/qt_uilib.pri",
54 );
55
56 @ignore_for_master_contents = ( "qt.h", "qpaintdevicedefs.h" );
57 @ignore_for_include_check = ( "qatomic.h" );
58 @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" );
59 @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" );
60 @ignore_for_qt_module_check = ( "$modules{QtCore}/arch", "$modules{QtCore}/global", "$modules{QtTest}", "$modules{QtDBus}" );
61 # Modules and programs, and their dependencies.
62 # Each of the module version specifiers can take one of the following values:
63 #   - A specific Git revision.
64 #   - "LATEST_REVISION", to always test against the latest revision.
65 #   - "LATEST_RELEASE", to always test against the latest public release.
66 #   - "THIS_REPOSITORY", to indicate that the module is in this repository.
67 %dependencies = (
68     "QtOpenVG" => {
69         "QtCore" => "THIS_REPOSITORY",
70         "QtGui" => "THIS_REPOSITORY",
71     },
72     "QtCore" => {
73     },
74     "QtOpenGL" => {
75         "QtCore" => "THIS_REPOSITORY",
76         "QtGui" => "THIS_REPOSITORY",
77     },
78     "QtXml" => {
79         "QtCore" => "THIS_REPOSITORY",
80     },
81     "QtNetwork" => {
82         "QtCore" => "THIS_REPOSITORY",
83     },
84     "QtTest" => {
85         "QtCore" => "THIS_REPOSITORY",
86     },
87     "QtDBus" => {
88         "QtCore" => "THIS_REPOSITORY",
89         "QtXml" => "THIS_REPOSITORY",
90     },
91     "QtSql" => {
92         "QtCore" => "THIS_REPOSITORY",
93     },
94     "QtGui" => {
95         "QtCore" => "THIS_REPOSITORY",
96     },
97     "QtUiTools" => {
98         "QtCore" => "THIS_REPOSITORY",
99         "QtGui" => "THIS_REPOSITORY",
100     },
101 );