5552f558fe2187ad43ce730c6a24a35ec955b18d
[profile/ivi/qtbase.git] / sync.profile
1 %modules = ( # path to module name map
2     "QtGui" => "$basedir/src/gui",
3     "QtOpenGL" => "$basedir/src/opengl",
4     "QtCore" => "$basedir/src/corelib",
5     "QtXml" => "$basedir/src/xml",
6     "QtSql" => "$basedir/src/sql",
7     "QtNetwork" => "$basedir/src/network",
8     "QtTest" => "$basedir/src/testlib",
9     "QtDBus" => "$basedir/src/dbus",
10     "QtUiTools" => "$basedir/src/uitools",
11     "QtDesigner" => "$basedir/tools/uilib",
12 );
13 %moduleheaders = ( # restrict the module headers to those found in relative path
14 );
15 %classnames = (
16     "qglobal.h" => "QtGlobal",
17     "qendian.h" => "QtEndian",
18     "qconfig.h" => "QtConfig",
19     "qplugin.h" => "QtPlugin",
20     "qalgorithms.h" => "QtAlgorithms",
21     "qcontainerfwd.h" => "QtContainerFwd",
22     "qdebug.h" => "QtDebug",
23     "qevent.h" => "QtEvents",
24     "qnamespace.h" => "Qt",
25     "qssl.h" => "QSsl",
26     "qtest.h" => "QTest",
27     "qtconcurrentmap.h" => "QtConcurrentMap",
28     "qtconcurrentfilter.h" => "QtConcurrentFilter",
29     "qtconcurrentrun.h" => "QtConcurrentRun",
30 );
31 %mastercontent = (
32     "core" => "#include <QtCore/QtCore>\n",
33     "gui" => "#include <QtGui/QtGui>\n",
34     "network" => "#include <QtNetwork/QtNetwork>\n",
35     "opengl" => "#include <QtOpenGL/QtOpenGL>\n",
36     "xml" => "#include <QtXml/QtXml>\n",
37     "uitools" => "#include <QtUiTools/QtUiTools>\n",
38     "designer" => "#include <QtDesigner/QtDesigner>\n",
39 );
40 %modulepris = (
41     "QtCore" => "$basedir/src/modules/qt_core.pri",
42     "QtDBus" => "$basedir/src/modules/qt_dbus.pri",
43     "QtGui" => "$basedir/src/modules/qt_gui.pri",
44     "QtNetwork" => "$basedir/src/modules/qt_network.pri",
45     "QtOpenGL" => "$basedir/src/modules/qt_opengl.pri",
46     "QtSql" => "$basedir/src/modules/qt_sql.pri",
47     "QtTest" => "$basedir/src/modules/qt_testlib.pri",
48     "QtXml" => "$basedir/src/modules/qt_xml.pri",
49     "QtUiTools" => "$basedir/src/modules/qt_uitools.pri",
50     "QtDesigner" => "$basedir/src/modules/qt_uilib.pri",
51 );
52
53 @ignore_for_master_contents = ( "qt.h", "qpaintdevicedefs.h" );
54 @ignore_for_include_check = ( "qatomic.h" );
55 @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" );
56 @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" );
57 @ignore_for_qt_module_check = ( "$modules{QtCore}/arch", "$modules{QtCore}/global", "$modules{QtTest}", "$modules{QtDBus}" );
58 # Modules and programs, and their dependencies.
59 # Each of the module version specifiers can take one of the following values:
60 #   - A specific Git revision.
61 #   - "LATEST_REVISION", to always test against the latest revision.
62 #   - "LATEST_RELEASE", to always test against the latest public release.
63 #   - "THIS_REPOSITORY", to indicate that the module is in this repository.
64 %dependencies = (
65     "QtCore" => {
66     },
67     "QtOpenGL" => {
68         "QtCore" => "THIS_REPOSITORY",
69         "QtGui" => "THIS_REPOSITORY",
70     },
71     "QtXml" => {
72         "QtCore" => "THIS_REPOSITORY",
73     },
74     "QtNetwork" => {
75         "QtCore" => "THIS_REPOSITORY",
76     },
77     "QtTest" => {
78         "QtCore" => "THIS_REPOSITORY",
79     },
80     "QtDBus" => {
81         "QtCore" => "THIS_REPOSITORY",
82         "QtXml" => "THIS_REPOSITORY",
83     },
84     "QtSql" => {
85         "QtCore" => "THIS_REPOSITORY",
86     },
87     "QtGui" => {
88         "QtCore" => "THIS_REPOSITORY",
89     },
90     "QtUiTools" => {
91         "QtCore" => "THIS_REPOSITORY",
92         "QtGui" => "THIS_REPOSITORY",
93     },
94 );