Merge branch 'master' into v8
[profile/ivi/qtdeclarative.git] / sync.profile
1 %modules = ( # path to module name map
2     "QtDeclarative" => "$basedir/src/declarative",
3     "QtQuickTest" => "$basedir/src/qmltest",
4 );
5 %moduleheaders = ( # restrict the module headers to those found in relative path
6 );
7 %classnames = (
8     "qtdeclarativeversion.h" => "QtDeclarativeVersion",
9 );
10 %mastercontent = (
11     "gui" => "#include <QtGui/QtGui>\n",
12     "script" => "#include <QtScript/QtScript>\n",
13     "network" => "#include <QtNetwork/QtNetwork>\n",
14     "testlib" => "#include <QtTest/QtTest>\n",
15 );
16 %modulepris = (
17     "QtDeclarative" => "$basedir/modules/qt_declarative.pri",
18     "QtQuickTest" => "$basedir/modules/qt_qmltest.pri",
19 );
20 # Modules and programs, and their dependencies.
21 # Each of the module version specifiers can take one of the following values:
22 #   - A specific Git revision.
23 #   - "LATEST_REVISION", to always test against the latest revision.
24 #   - "LATEST_RELEASE", to always test against the latest public release.
25 #   - "THIS_REPOSITORY", to indicate that the module is in this repository.
26 %dependencies = (
27     "QtDeclarative" => {
28         "QtScript" => "4d15ca64fc7ca81bdadba9fbeb84d4e98a6c0edc",
29         "QtSvg" => "1a71611b6ceaf6cdb24ea485a818fc56c956b5f8",
30         "QtGui" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
31         "QtXmlPatterns" => "26edd6852a62aeec49712a53dcc8d4093192301c",
32         "QtNetwork" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
33         "QtSql" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
34         "QtCore" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
35     },
36     "QtQuickTest" => {
37         "QtTest" => "0c637cb07ba3c9b353e7e483a209537485cc4e2a",
38         "QtDeclarative" => "THIS_REPOSITORY",
39     },
40 );