sysmodellibs/sysmodelgen/test/combine2/sysdef.xml
changeset 1 b538b70cbe51
equal deleted inserted replaced
0:2e8eeb919028 1:b538b70cbe51
       
     1 <?xml version="1.0"?>
       
     2 <!DOCTYPE SystemDefinition [
       
     3 <!-- this is a fake DTD -->
       
     4 <!ELEMENT SystemDefinition (systemModel?, build?)>
       
     5 <!ATTLIST SystemDefinition
       
     6   name CDATA #REQUIRED
       
     7   schema CDATA #REQUIRED
       
     8 >
       
     9 <!-- all paths are relative to the root of the source -->
       
    10 
       
    11 <!-- System Model Section of DTD -->
       
    12 <!ELEMENT systemModel (layer+)>
       
    13 
       
    14 <!ELEMENT layer (logicalset* | module*)*>
       
    15 <!-- Kernel Services, Base Services, OS Services, Etc -->
       
    16 <!ATTLIST layer
       
    17   name CDATA #REQUIRED
       
    18   levels CDATA #IMPLIED
       
    19   silly CDATA #IMPLIED
       
    20   span CDATA #IMPLIED
       
    21   align (left | right | center) #IMPLIED
       
    22 >
       
    23 
       
    24 <!ELEMENT logicalset (logicalsubset* | module* | unit* | package* | prebuilt*)*>
       
    25  <!-- Generic OS services, Comms Services, etc -->
       
    26 <!ATTLIST logicalset 
       
    27   name CDATA #REQUIRED
       
    28   levels CDATA #IMPLIED
       
    29 >
       
    30 
       
    31 <!ELEMENT logicalsubset (module* | unit* | package* | prebuilt*)*>
       
    32 <!-- Telephony services, Networking Services, etc -->
       
    33 <!ATTLIST logicalsubset 
       
    34   name CDATA #REQUIRED
       
    35 >
       
    36 
       
    37 <!ELEMENT module (component* | unit* | package* | prebuilt*)*>
       
    38 <!-- Screen Driver, Content Handling, etc -->
       
    39 <!ATTLIST module
       
    40   name CDATA #REQUIRED
       
    41   level CDATA #IMPLIED  
       
    42 >
       
    43 
       
    44 <!ELEMENT component (unit* | package* | prebuilt*)*>
       
    45 <!-- units or packages -->
       
    46 <!ATTLIST component
       
    47   name CDATA #REQUIRED
       
    48   did CDATA #IMPLIED
       
    49 >
       
    50 
       
    51 <!ELEMENT unit EMPTY >
       
    52 <!-- must be buildable (bld.inf) -->
       
    53 <!-- bldFile will soon be removed in favour of mrp -->
       
    54 <!ATTLIST unit
       
    55   unitID ID #REQUIRED
       
    56   name CDATA #REQUIRED
       
    57   mrp CDATA #REQUIRED
       
    58   filter CDATA #IMPLIED
       
    59   bldFile CDATA #REQUIRED
       
    60   priority CDATA #IMPLIED
       
    61   contract CDATA #IMPLIED
       
    62 >
       
    63 
       
    64 <!ELEMENT package EMPTY >
       
    65 <!-- like a unit, but not buildable -->
       
    66 <!ATTLIST package
       
    67   name CDATA #REQUIRED
       
    68   mrp CDATA #REQUIRED
       
    69   filter CDATA #IMPLIED
       
    70   contract CDATA #IMPLIED
       
    71 >
       
    72 
       
    73 <!ELEMENT prebuilt EMPTY>
       
    74 <!-- pre-built CBR component -->
       
    75 <!ATTLIST prebuilt
       
    76   name CDATA #REQUIRED
       
    77   version CDATA #REQUIRED
       
    78   late (Y|N) #IMPLIED
       
    79   filter CDATA #IMPLIED
       
    80   contract CDATA #IMPLIED
       
    81 >
       
    82 
       
    83 
       
    84 
       
    85 <!-- Build Section of DTD -->
       
    86 <!ELEMENT build (option* | target+ | targetList+ | unitList+ | configuration+)*>
       
    87 
       
    88 <!ELEMENT unitList (unitRef+)>
       
    89 <!-- e.g. common, beech, cedar, etc -->
       
    90 <!ATTLIST unitList
       
    91   name ID #REQUIRED
       
    92   description CDATA #REQUIRED
       
    93 >
       
    94 
       
    95 <!ELEMENT unitRef EMPTY>
       
    96 <!-- Reference to unit in System Model -->
       
    97 <!ATTLIST unitRef
       
    98   unit IDREF #REQUIRED
       
    99 >
       
   100 
       
   101 <!ELEMENT targetList EMPTY>
       
   102 <!-- e.g. DEFAULT_7.0S, TOOLS_7.0S, etc -->
       
   103 <!ATTLIST targetList
       
   104   name ID #REQUIRED
       
   105   description CDATA #REQUIRED
       
   106   target IDREFS #REQUIRED
       
   107 >
       
   108 
       
   109 <!ELEMENT target EMPTY>
       
   110 <!-- e.g. WINS, WINSCW, ARM4, etc -->
       
   111 <!ATTLIST target
       
   112   name ID #REQUIRED
       
   113   abldTarget CDATA #REQUIRED
       
   114   description CDATA #REQUIRED
       
   115 >
       
   116 
       
   117 <!ELEMENT option EMPTY>
       
   118 <!-- e.g. Keepgoing, SaveSpace, etc -->
       
   119 <!ATTLIST option
       
   120   name ID #REQUIRED
       
   121   abldOption CDATA #REQUIRED
       
   122   description CDATA #REQUIRED
       
   123   enable (Y | N | y | n) #REQUIRED
       
   124 >
       
   125 
       
   126 <!ELEMENT configuration (unitListRef+ | layerRef+ | task+)*>
       
   127 <!-- 7.0s, 8.0a, 8.0b, cuskit, etc -->
       
   128 <!ATTLIST configuration
       
   129   name ID #REQUIRED
       
   130   description CDATA #REQUIRED
       
   131   filter CDATA #REQUIRED
       
   132 >
       
   133 <!ELEMENT task ( unitListRef* , (buildLayer | specialInstructions))>
       
   134 
       
   135 <!ELEMENT unitListRef EMPTY>
       
   136 <!-- Reference to unitList -->
       
   137 <!ATTLIST unitListRef
       
   138   unitList IDREF #REQUIRED
       
   139 >
       
   140 
       
   141 <!ELEMENT layerRef EMPTY>
       
   142 <!-- Reference to named entity in the model, usually a layer -->
       
   143 <!ATTLIST layerRef
       
   144   layerName CDATA #REQUIRED
       
   145 >
       
   146 
       
   147 <!ELEMENT buildLayer EMPTY>
       
   148 <!-- bldmake, abld export, etc -->
       
   149 <!ATTLIST buildLayer
       
   150   command CDATA #REQUIRED
       
   151   targetList IDREFS #IMPLIED
       
   152   unitParallel (Y | N | y | n) #REQUIRED
       
   153   targetParallel (Y | N | y | n) #IMPLIED
       
   154 >
       
   155 
       
   156 <!ELEMENT specialInstructions EMPTY>
       
   157 <!-- BootStrap -->
       
   158 <!ATTLIST specialInstructions
       
   159   name CDATA #REQUIRED
       
   160   cwd CDATA #REQUIRED
       
   161   command CDATA #REQUIRED
       
   162 >
       
   163 
       
   164 ]>
       
   165 
       
   166 <SystemDefinition name="MCL" schema="1.4.0">
       
   167   
       
   168   <systemModel>
       
   169     <layer name="Tools and Utils and SDKENG" levels="tools sdk">
       
   170       <module name="Tools and Utils" level="tools">
       
   171         <component name="BUILDSYSTEMTOOLS">
       
   172           <unit unitID="BUILDSYSTEMTOOLS" name="tools_build" bldFile="common\generic\tools\build\group" mrp="common\generic\tools\build\group\tools_build.mrp"/>
       
   173           <package name="gt_techview_baseline" mrp="common\generic\tools\cbr\mrpfiles\gt_techview_baseline.mrp"/>
       
   174 		  <!-- DEF087736 This is needed for generating export tables but shouldn't appear otherwise it is included in techview and gt
       
   175 		     <package name="gt_only_baseline" mrp="common\generic\tools\cbr\mrpfiles\gt_only_baseline.mrp"/> -->
       
   176           <package name="tools_utils_cedar" mrp="cedar\generic\utils\tools_utils_cedar.mrp"/>
       
   177           <package name="tools_utils_common" mrp="common\generic\utils\tools_utils_common.mrp"/>
       
   178           <package name="additional_unknown" mrp="common\generic\tools\cbr\mrpfiles\additional_unknown_cedar.mrp"/>
       
   179         </component>
       
   180         <component name="BCCOMPARATOR">
       
   181           <unit unitID="BCCOMPARATOR" name="testtools_cts_Bccomparator" bldFile="Common\testtools\CTS\BCComparator\Group" mrp="common\testtools\CTS\BCComparator\Group\testtools_cts_Bccomparator.mrp"/>
       
   182           <package name="testtools_cts_functionalitycheckers" mrp="common\testtools\cts\functionalitycheckers\group\testtools_cts_functionalitycheckers.mrp"/>
       
   183         </component>
       
   184         <component name="BURTESTSERVER">
       
   185           <unit unitID="BURTESTSERVER" name="testtools_burtestserver" bldFile="common\testtools\burtestserver\Group" mrp="common\testtools\burtestserver\group\testtools_burtestserver.mrp"/>
       
   186         </component>        
       
   187         <component name="CBRTOOLS">
       
   188           <unit unitID="CBRTOOLS" name="tools_cbr_tools" bldFile="common\generic\tools\cbr\tools\Group" mrp="common\generic\tools\cbr\tools\group\tools_cbr_tools.mrp" filter="gt"/>
       
   189           <unit unitID="CBRPRF" name="tools_cbr_prf" bldFile="common\generic\tools\cbr\prf\group" mrp="common\generic\tools\cbr\prf\group\tools_cbr_prf.mrp"/>
       
   190         </component>
       
   191         <component name="CDB">
       
   192           <unit unitID="CDB" name="testtools_cdb" bldFile="common\testtools\cdb\group" mrp="common\testtools\cdb\group\testtools_cdb.mrp"/>
       
   193         </component>
       
   194         <component name="CHATSCRIPTS">
       
   195           <unit unitID="CHATSCRIPTS" name="ChatScripts" bldFile="common\testtools\ChatScripts\group" mrp="common\testtools\chatscripts\group\testtools_chatscripts.mrp"/>
       
   196         </component>
       
   197         <component name="DEPCHECK">
       
   198           <unit unitID="DEPCHECK" name="tools_depcheck" bldFile="common\generic\tools\depcheck" mrp="common\generic\tools\depcheck\tools_depcheck.mrp"/>
       
   199         </component>
       
   200         <component name="DEPMODEL">
       
   201           <unit unitID="DEPMODEL" name="tools_depmodel" bldFile="common\generic\tools\depmodel\group" mrp="common\generic\tools\depmodel\tools_depmodel.mrp"/>
       
   202         </component>
       
   203         <component name="DEVELOPERLIBRARY">
       
   204           <unit unitID="DEVELOPERLIBRARY_9.3" name="DEVELOPERLIBRARY_9.3" bldFile="common\DEVELOPERLIBRARY\GROUP\devlib93" mrp="common\developerlibrary\group\devlib93\developerlibrary_doc_html.mrp"/>
       
   205           <unit unitID="DEVELOPERLIBRARY_SOURCE" name="DEVELOPERLIBRARY_SOURCE" bldFile="common\DEVELOPERLIBRARY\SECURITYSUPPLEMENT\DOC_SOURCE" mrp="common\developerlibrary\developerlibrary_doc_source.mrp" filter="gt"/>
       
   206           <package name="developerlibrary_doc_plain_html" mrp="common\developerlibrary\group\devlib93\developerlibrary_doc_plain_html.mrp"/>
       
   207           <!-- lots of subsystem documentation packages -->
       
   208           <package name="app-engines_documentation" mrp="common\generic\app-engines\documentation\app-engines_documentation.mrp"/>
       
   209           <package name="app-framework_confidential" mrp="common\generic\app-framework\confidential\app-framework_confidential.mrp"/>
       
   210           <package name="app-framework_documentation" mrp="common\generic\app-framework\documentation\app-framework_documentation.mrp"/>
       
   211           <package name="app-services_documentation" mrp="common\generic\app-services\documentation\app-services_documentation.mrp"/>
       
   212           <package name="base_documentation" mrp="cedar\generic\base\documentation\base_documentation.mrp"/>
       
   213           <package name="comms-infras_documentation" mrp="common\generic\comms-infras\documentation\comms-infras_documentation.mrp"/>
       
   214           <package name="comms-infras_extra" mrp="common\generic\comms-infras\comms-infras_extra.mrp"/>
       
   215           <package name="graphics_documentation" contract="Symbian_Affiliate"  mrp="common\generic\graphics\documentation\graphics_documentation.mrp"/>
       
   216           <package name="networking_documentation" mrp="common\generic\networking\documentation\networking_documentation.mrp"/>
       
   217           <package name="security_documentation" mrp="common\generic\security\documentation\security_documentation.mrp"/>
       
   218           <package name="ser-comms_documentation" mrp="common\generic\ser-comms\documentation\ser-comms_documentation.mrp"/>
       
   219           <package name="syslibs_documentation" mrp="common\generic\syslibs\documentation\syslibs_documentation.mrp"/>
       
   220           <package name="system" mrp="common\system\group\system.mrp"/>
       
   221           <package name="telephony_confidential" mrp="common\generic\telephony\confidential\telephony_confidential.mrp"/>
       
   222           <package name="telephony_documentation" mrp="common\generic\telephony\documentation\telephony_documentation.mrp"/>
       
   223           <package name="tools_documentation" mrp="cedar\generic\tools\documentation\tools_documentation.mrp"/>
       
   224         </component>
       
   225         <component name="E32TOOLS EKA2">
       
   226           <unit unitID="E32TOOLS_EKA2" name="tools_e32tools" bldFile="cedar\generic\TOOLS\E32Tools\GROUP" mrp="cedar\generic\tools\e32tools\group\tools_e32tools.mrp"/>
       
   227           <package name="tools_e32toolp" mrp="cedar\generic\tools\e32toolp\group\tools_e32toolp.mrp"/>
       
   228         </component>
       
   229         <component name="EVALID">
       
   230           <unit unitID="EVALID" name="tools_evalid" bldFile="common\generic\tools\host_utilities\evalid" mrp="common\generic\tools\host_utilities\evalid\tools_evalid.mrp"/>
       
   231         </component>
       
   232         <component name="KITCOMPARATOR">
       
   233           <unit unitID="KITCOMPARATOR" name="testtools_cts_kitcomparator" bldFile="Common\testtools\CTS\KitComparator\Group" mrp="common\testtools\CTS\KitComparator\group\testtools_cts_kitcomparator.mrp"/>
       
   234         </component>
       
   235         <component name="PLATTEST">
       
   236           <unit unitID="PLATTEST" name="plattest" bldFile="common\generic\plattest\Group" mrp="common\generic\plattest\Group\plattest_tools.mrp" filter="techview"/>
       
   237         </component>
       
   238         <component name="LEAVESCAN">
       
   239           <unit unitID="LEAVESCAN" name="testtools_leavescan" bldFile="common\TestTools\LEAVESCAN\GROUP" mrp="common\testtools\Leavescan\group\testtools_leavescan.mrp"/>
       
   240         </component>
       
   241         <component name="PROGRAMCHECKER">
       
   242           <unit unitID="PROGRAMCHECKER" name="testtools_programchecker" bldFile="common\testtools\ProgramChecker\Group" mrp="common\testtools\ProgramChecker\group\testtools_programchecker.mrp"/>
       
   243         </component>
       
   244         <component name="RCOMP">
       
   245           <unit unitID="RCOMP" name="tools_rcomp" bldFile="common\generic\TOOLS\RCOMP\GROUP" mrp="common\generic\tools\rcomp\group\tools_rcomp.mrp"/>
       
   246         </component>
       
   247         <component name="REDISTRIBUTION">
       
   248           <unit unitID="REDISTRIBUTION" name="tools_redistribution_common" bldFile="common\generic\TOOLS\REDISTRIBUTION" mrp="common\generic\tools\redistribution\tools_redistribution_common.mrp" filter="gt"/>
       
   249           <package name="tools_redistribution_winc" mrp="cedar\generic\tools\redistribution\tools_redistribution_winc.mrp"/>
       
   250           <package name="additional_tools" mrp="common\generic\tools\redistribution\additional_tools.mrp"/>
       
   251         </component>      
       
   252         <component name="RESOURCE_HANDLER">
       
   253           <package name="testtools_resourcehandler_gt" contract="Symbian_Affiliate"  mrp="common\testtools\resourcehandler\tvresourcehandler\group\testtools_resourcehandler_gt.mrp"/>
       
   254         </component>
       
   255         <component name="ROMKIT_EKA2">
       
   256           <unit unitID="ROMKIT_EKA2" name="tools_romkit" bldFile="cedar\generic\TOOLS\ROMKIT\GROUP" mrp="cedar\generic\tools\romkit\group\tools_romkit.mrp"/>
       
   257         </component>
       
   258         <component name="MIGRATIONTOOL">
       
   259           <unit unitID="MIGRATIONTOOL" name="testtools_migrationtool" bldFile="common\testtools\migrationtool\group" mrp="common\testtools\migrationtool\group\testtools_migrationtool.mrp"/>
       
   260         </component>
       
   261         <component name="TESTDRIVER">
       
   262           <unit unitID="TESTDRIVER" name="testtools_testdriver" bldFile="common\testtools\TestDriver\Group" mrp="common\testtools\TestDriver\Group\testtools_testdriver.mrp"/>
       
   263         </component>
       
   264         <component name="SMOKETEST">
       
   265           <unit unitID="SMOKETEST" name="testtools_smoketest" bldFile="common\testtools\smoketest\GROUP" mrp="common\testtools\Smoketest\Group\testtools_smoketest.mrp" filter="gt"/>
       
   266         </component>
       
   267         <component name="STATAPI">
       
   268           <unit unitID="STATAPI" name="testtools_stat_device_gt" bldFile="common\testtools\STAT\device\source\statapi\console" mrp="common\testtools\stat\device\group\testtools_stat_device_gt.mrp" filter="gt"/>
       
   269           <package name="testtools_stat_common_source" contract="Symbian_Affiliate"  mrp="common\testtools\stat\group\testtools_stat_common_source.mrp" filter="gt"/>
       
   270         </component>
       
   271         <component name="STAT_DESKTOP">
       
   272           <unit unitID="STAT_DESKTOP" name="testtools_stat_desktop" contract="Symbian_Affiliate"  bldFile="common\testtools\stat\desktop\group" mrp="common\testtools\stat\desktop\group\testtools_stat_desktop.mrp" filter="gt"/>
       
   273         </component>
       
   274         <component name="Bluetooth Logger">
       
   275             <unit unitID="BLUETOOTH_LOGGER" name="bluetooth_logger" bldFile="common\generic\bluetooth\latest\bluetooth\logger\group" mrp="common\generic\bluetooth\latest\bluetooth\logger\group\bluetooth_logger.mrp"/>
       
   276           </component>
       
   277         <component name="TESTEXECUTE">
       
   278           <unit unitID="TESTEXECUTE" name="tools_testexecute" bldFile="common\TestTools\TESTEXECUTE\GROUP" mrp="common\testtools\testexecute\Group\tools_testexecute.mrp"/>
       
   279         </component>
       
   280         <component name="TESTTOOLS_DESKTOP">
       
   281           <unit unitID="TESTTOOLS_DESKTOP" name="testtools_desktop" bldFile="common\TestTools\desktop\GROUP" mrp="common\testtools\desktop\Group\testtools_desktop.mrp" filter="gt"/>
       
   282           <package name="testtools_wintunnel" mrp="common\testtools\wintunnel\group\testtools_wintunnel_srconly.mrp"/>
       
   283         </component>
       
   284         <component name="Use Case Controller">
       
   285           <unit unitID="TESTTOOLS_UCC" name="testtools_ucc" bldFile="common\TestTools\UCC\BuildScripts\GROUP" mrp="common\TestTools\UCC\BuildScripts\GROUP\testtools_ucc.mrp"/>
       
   286         </component>
       
   287         <component name="CINIDATA">
       
   288           <unit unitID="CINIDATA" name="tools_cinidata" bldFile="common\generic\TOOLS\CINIDATA" mrp="common\generic\tools\cinidata\tools_cinidata.mrp"/>
       
   289         </component>
       
   290         <component name="AUTOTEST">
       
   291           <unit unitID="AUTOTEST" name="tools_autotest" bldFile="common\generic\TOOLS\AUTOTEST\GROUP" mrp="common\generic\tools\autotest\group\tools_autotest.mrp"/>
       
   292         </component>
       
   293         <component name="TESTCONFIGFILEPARSER">
       
   294           <unit unitID="TESTCONFIGFILEPARSER" name="tools_testconfigfileparser" bldFile="common\generic\TOOLS\testconfigfileparser\GROUP" mrp="common\generic\tools\testconfigfileparser\group\tools_testconfigfileparser.mrp"/>
       
   295         </component>
       
   296         <component name="KITSETUPAPP">
       
   297           <unit unitID="KITSETUPAPP" name="tools_devkits_kitsetupapp" bldFile="common\generic\TOOLS\DevKits\KitSetupApp\group" mrp="common\generic\tools\devkits\KitSetupApp\group\tools_devkits_kitsetupapp.mrp" filter="gt" priority="1020"/>
       
   298         </component>
       
   299         <component name="NAVIGATION_PAGES">
       
   300           <package name="tools_sdk_eng_navigationpages" mrp="common\generic\tools\sdk_eng\navigationpages\tools_sdk_eng_navigationpages.mrp"/>
       
   301         </component>
       
   302         <component name="PRODUCTINSTALLER">
       
   303           <unit unitID="PRODUCTINSTALLER" name="tools_custkits_productinstaller" bldFile="common\generic\TOOLS\Custkits\ProductInstaller\group" mrp="common\generic\TOOLS\Custkits\ProductInstaller\group\tools_custkits_productinstaller.mrp" filter="gt"/>
       
   304         </component>
       
   305         <component name="REDISTRIBUTION_WINC_EKA2">
       
   306           <unit unitID="REDISTRIBUTION_WINC_EKA2" name="tools_redistribution_cedar" bldFile="cedar\generic\tools\redistribution" mrp="cedar\generic\tools\redistribution\tools_redistribution_cedar.mrp"/>
       
   307         </component>
       
   308         <component name="MAKEKEYS">
       
   309           <unit unitID="MAKEKEYS" name="security_makekeys" bldFile="common\generic\SECURITY\MakeKeys\GROUP" mrp="common\generic\security\makekeys\group\security_makekeys.mrp" filter="gt"/>
       
   310         </component>
       
   311         <component name="CAPTOOLS">
       
   312           <unit unitID="CAPTOOLS" name="testtools_captools" bldFile="common\testtools\captools\group" mrp="common\testtools\CapTools\group\testtools_captools.mrp"/>
       
   313         </component>
       
   314         <component name="Packet Loopback CSY">
       
   315           <unit unitID="PACKETLOOPBACKCSY" name="PacketLoopbackCSY" bldFile="common\generic\networking\test\PacketLoopbackCSY\group" mrp="common\generic\networking\test\PacketLoopbackCSY\group\PacketLoopbackCSY.mrp"/>
       
   316         </component>
       
   317         <component name="Graphics Utilities">
       
   318           <unit unitID="MemSpy" name="graphics_memspy" bldFile="common\generic\graphics\testutils\memspy\group" mrp="common\generic\graphics\testutils\memspy\group\graphics_memspy.mrp" filter="techview" /> 
       
   319         </component>
       
   320         <component did="done" name="UTRACE">
       
   321           <unit unitID="UTRACE_API" name="testtools_utrace_api" bldFile="common\testtools\trace\utrace\api\group" mrp="common\testtools\trace\utrace\api\group\testtools_utrace_api.mrp"/>
       
   322         </component>
       
   323       </module>
       
   324       <module name="SDKENG" level="sdk">
       
   325         <component name="RUNPERL">
       
   326           <unit unitID="RUNPERL" name="tools_sdk_eng_runperl" bldFile="common\generic\TOOLS\SDK_ENG\RUNPERL\GROUP" mrp="common\generic\tools\sdk_eng\runperl\group\tools_sdk_eng_runperl.mrp" filter="gt"/>
       
   327         </component>
       
   328         <component name="BUILD-TOOLS">
       
   329           <unit unitID="BUILD-TOOLS" name="tools_sdk_eng_build-tools" bldFile="common\generic\TOOLS\SDK_ENG\BUILD-TOOLS\GROUP" mrp="common\generic\tools\sdk_eng\build-tools\group\tools_sdk_eng_build-tools.mrp" filter="gt"/>
       
   330         </component>
       
   331         <component name="JAVALIBRARY">
       
   332           <unit unitID="JAVALIBRARY" name="tools_sdk_eng_javalibrary" bldFile="common\generic\TOOLS\SDK_ENG\JAVALIBRARY\GROUP" mrp="common\generic\tools\sdk_eng\javalibrary\group\tools_sdk_eng_javalibrary.mrp" filter="gt"/>
       
   333         </component>
       
   334         <component name="ASSERTION">
       
   335           <unit unitID="ASSERTION" name="tools_sdk_eng_assertion" bldFile="common\generic\TOOLS\SDK_ENG\ASSERTION\GROUP" mrp="common\generic\tools\sdk_eng\assertion\group\tools_sdk_eng_assertion.mrp" filter="gt"/>
       
   336         </component>
       
   337         <component name="ENUM">
       
   338           <unit unitID="ENUM" name="tools_sdk_eng_enum" bldFile="common\generic\TOOLS\SDK_ENG\ENUM\GROUP" mrp="common\generic\tools\sdk_eng\enum\group\tools_sdk_eng_enum.mrp" filter="gt"/>
       
   339         </component>
       
   340         <component name="LOGGER">
       
   341           <unit unitID="LOGGER" name="tools_sdk_eng_logger" bldFile="common\generic\TOOLS\SDK_ENG\LOGGER\GROUP" mrp="common\generic\tools\sdk_eng\logger\group\tools_sdk_eng_logger.mrp" filter="gt"/>
       
   342         </component>
       
   343         <component name="FILESYS">
       
   344           <unit unitID="FILESYS" name="tools_sdk_eng_filesys" bldFile="common\generic\TOOLS\SDK_ENG\FILESYS\GROUP" mrp="common\generic\tools\sdk_eng\filesys\group\tools_sdk_eng_filesys.mrp" filter="gt"/>
       
   345         </component>
       
   346         <component name="ENVVAR">
       
   347           <unit unitID="ENVVAR" name="tools_sdk_eng_envvar" bldFile="common\generic\TOOLS\SDK_ENG\ENVVAR\GROUP" mrp="common\generic\tools\sdk_eng\envvar\group\tools_sdk_eng_envvar.mrp" filter="gt"/>
       
   348         </component>
       
   349         <component name="INSTALLUTILS">
       
   350           <unit unitID="INSTALLUTILS" name="tools_sdk_eng_installutils" bldFile="common\generic\TOOLS\SDK_ENG\INSTALLUTILS\GROUP" mrp="common\generic\tools\sdk_eng\InstallUtils\group\tools_sdk_eng_installutils.mrp" filter="gt"/>
       
   351         </component>
       
   352         <component name="MNEMONICFIX">
       
   353           <unit unitID="MNEMONICFIX" name="tools_sdk_eng_mnemonicfix" bldFile="common\generic\TOOLS\SDK_ENG\MNEMONICFIX\GROUP" mrp="common\generic\tools\sdk_eng\mnemonicfix\group\tools_sdk_eng_mnemonicfix.mrp" filter="gt"/>
       
   354         </component>
       
   355         <component name="PATHBROWSER">
       
   356           <unit unitID="PATHBROWSER" name="tools_sdk_eng_pathbrowser" bldFile="common\generic\TOOLS\SDK_ENG\PATHBROWSER\GROUP" mrp="common\generic\tools\sdk_eng\pathbrowser\group\tools_sdk_eng_pathbrowser.mrp" filter="gt"/>
       
   357         </component>
       
   358         <component name="SHELLEXEC">
       
   359           <unit unitID="SHELLEXEC" name="tools_sdk_eng_shellexec" bldFile="common\generic\TOOLS\SDK_ENG\SHELLEXEC\GROUP" mrp="common\generic\tools\sdk_eng\shellexec\group\tools_sdk_eng_shellexec.mrp" filter="gt"/>
       
   360         </component>
       
   361         <component name="SWINGWORKER">
       
   362           <unit unitID="SWINGWORKER" name="tools_sdk_eng_swingworker" bldFile="common\generic\TOOLS\SDK_ENG\SWINGWORKER\GROUP" mrp="common\generic\tools\sdk_eng\swingworker\group\tools_sdk_eng_swingworker.mrp" filter="gt"/>
       
   363         </component>
       
   364         <component name="TESTCASERUNNER">
       
   365           <unit unitID="TESTCASERUNNER" name="tools_sdk_eng_testcaserunner" bldFile="common\generic\TOOLS\SDK_ENG\TESTCASERUNNER\GROUP" mrp="common\generic\tools\sdk_eng\testcaserunner\group\tools_sdk_eng_testcaserunner.mrp" filter="gt"/>
       
   366         </component>
       
   367         <component name="TOOLBARPANEL">
       
   368           <unit unitID="TOOLBARPANEL" name="tools_sdk_eng_toolbarpanel" bldFile="common\generic\TOOLS\SDK_ENG\TOOLBARPANEL\GROUP" mrp="common\generic\tools\sdk_eng\toolbarpanel\group\tools_sdk_eng_toolbarpanel.mrp" filter="gt"/>
       
   369         </component>
       
   370         <component name="JAVAHELP">
       
   371           <unit unitID="JAVAHELP" name="tools_sdk_eng_javahelp" bldFile="common\generic\TOOLS\SDK_ENG\JAVAHELP\GROUP" mrp="common\generic\tools\sdk_eng\javahelp\group\tools_sdk_eng_javahelp.mrp" filter="gt"/>
       
   372         </component>
       
   373         <component name="LANGCONFIG">
       
   374           <unit unitID="LANGCONFIG" name="tools_sdk_eng_langconfig" bldFile="common\generic\TOOLS\SDK_ENG\LANGCONFIG\GROUP" mrp="common\generic\tools\sdk_eng\langconfig\group\tools_sdk_eng_langconfig.mrp" filter="gt"/>
       
   375         </component>
       
   376         <component name="MBMCODEC">
       
   377           <unit unitID="MBMCODEC" name="tools_sdk_eng_mbmcodec" bldFile="common\generic\TOOLS\SDK_ENG\MBMCODEC\GROUP" mrp="common\generic\tools\sdk_eng\mbmcodec\group\tools_sdk_eng_mbmcodec.mrp" filter="gt"/>
       
   378         </component>
       
   379         <component name="SDKINFO">
       
   380           <unit unitID="SDKINFO" name="tools_sdk_eng_sdkinfo" bldFile="common\generic\TOOLS\SDK_ENG\SDKINFO\GROUP" mrp="common\generic\tools\sdk_eng\sdkinfo\group\tools_sdk_eng_sdkinfo.mrp" filter="gt"/>
       
   381         </component>
       
   382         <component name="JADE">
       
   383           <unit unitID="JADE" name="tools_sdk_eng_jade" bldFile="common\generic\TOOLS\SDK_ENG\JADE\GROUP" mrp="common\generic\tools\sdk_eng\jade\group\tools_sdk_eng_jade.mrp" filter="gt"/>
       
   384         </component>
       
   385         <component name="CSHLPCMP_GUI">
       
   386           <unit unitID="CSHLPCMP_GUI" name="tools_sdk_eng_cshlpcmp_gui" bldFile="common\generic\TOOLS\SDK_ENG\CSHLPCMP_GUI\GROUP" mrp="common\generic\tools\sdk_eng\cshlpcmp_gui\group\tools_sdk_eng_cshlpcmp_gui.mrp" filter="gt" priority="1010"/>
       
   387         </component>
       
   388         <component name="SISAR">
       
   389           <unit unitID="SISAR" name="tools_sdk_eng_sisar" bldFile="common\generic\TOOLS\SDK_ENG\SISAR\GROUP" mrp="common\generic\tools\sdk_eng\sisar\group\tools_sdk_eng_sisar.mrp" filter="gt"/>
       
   390         </component>
       
   391         <component name="SDKPKG-MANAGER">
       
   392           <unit unitID="SDKPKG-MANAGER" name="tools_sdk_eng_sdkpkg-manager" bldFile="common\generic\TOOLS\SDK_ENG\SDKPKG-MANAGER\GROUP" mrp="common\generic\tools\sdk_eng\sdkpkg-manager\group\tools_sdk_eng_sdkpkg-manager.mrp" filter="gt"/>
       
   393           <package name="product_devkit_pkgdefs" mrp="\product\devkit\product_devkit_pkgdefs.mrp" filter="gt"/>
       
   394           <package name="product_techviewexamplesdk_pkgdefs" mrp="\product\techviewexamplesdk\product_techviewexamplesdk_pkgdefs.mrp" filter="gt"/>
       
   395         </component>
       
   396         <component name="SDKPKG-TOOLS">
       
   397           <unit unitID="SDKPKG-TOOLS" name="tools_sdk_eng_sdkpkg-tools" bldFile="common\generic\TOOLS\SDK_ENG\SDKPKG-TOOLS\GROUP" mrp="common\generic\tools\sdk_eng\sdkpkg-tools\group\tools_sdk_eng_sdkpkg-tools.mrp" filter="gt"/>
       
   398         </component>
       
   399         <component name="EMULATOR_LAUNCHER">
       
   400           <unit unitID="EMULATOR_LAUNCHER" name="tools_sdk_eng_emulator_launcher" bldFile="common\generic\TOOLS\SDK_ENG\EMULATOR_LAUNCHER\GROUP" mrp="common\generic\tools\sdk_eng\emulator_launcher\group\tools_sdk_eng_emulator_launcher.mrp" filter="gt"/>
       
   401         </component>
       
   402         <component name="PKGMGRGUI">
       
   403           <unit unitID="PKGMGRGUI" name="tools_sdk_eng_pkgmgrgui" bldFile="common\generic\TOOLS\SDK_ENG\PKGMGRGUI\GROUP" mrp="common\generic\tools\sdk_eng\pkgmgrgui\group\tools_sdk_eng_pkgmgrgui.mrp" filter="gt"/>
       
   404         </component>
       
   405         <component name="LAUNCH">
       
   406           <unit unitID="LAUNCH" name="tools_sdk_eng_launch" bldFile="common\generic\TOOLS\SDK_ENG\LAUNCH\GROUP" mrp="common\generic\tools\sdk_eng\launch\group\tools_sdk_eng_launch.mrp" filter="gt"/>
       
   407         </component>
       
   408         <component name="TOOLS_STUBS">
       
   409           <unit unitID="TOOLS_STUBS" name="tools_sdk_eng_tools_stubs" bldFile="common\generic\TOOLS\SDK_ENG\TOOLS_STUBS\GROUP" mrp="common\generic\tools\sdk_eng\tools_stubs\group\tools_sdk_eng_tools_stubs.mrp" filter="gt"/>
       
   410         </component>
       
   411         <component name="CWPLUGINS">
       
   412           <unit unitID="CWPLUGINS" name="tools_sdk_eng_cwplugins" bldFile="common\generic\TOOLS\SDK_ENG\CWPLUGINS\GROUP" mrp="common\generic\tools\sdk_eng\cwplugins\group\tools_sdk_eng_cwplugins.mrp" filter="gt"/>
       
   413         </component>
       
   414         <component name="BSPBUILDER">
       
   415           <unit unitID="BSPBUILDER" name="tools_bspbuilder" bldFile="common\generic\TOOLS\BSPBUILDER\GROUP" mrp="common\generic\tools\bspbuilder\group\tools_bspbuilder.mrp" filter="gt"/>
       
   416         </component>
       
   417         <component name="ALP2CSH">
       
   418           <unit unitID="ALP2CSH" name="tools_sdk_eng_alp2csh" bldFile="common\generic\TOOLS\SDK_ENG\ALP2CSH\GROUP" mrp="common\generic\tools\sdk_eng\alp2csh\group\tools_sdk_eng_alp2csh.mrp"/>
       
   419         </component>
       
   420         <component name="CJPEG">
       
   421           <unit unitID="CJPEG" name="tools_sdk_eng_cjpeg" bldFile="common\generic\TOOLS\SDK_ENG\CJPEG\GROUP" mrp="common\generic\tools\sdk_eng\cjpeg\group\tools_sdk_eng_cjpeg.mrp"/>
       
   422         </component>
       
   423         <component name="CSHLPCMP_FRONTEND">
       
   424           <unit unitID="CSHLPCMP_FRONTEND" name="tools_sdk_eng_cshlpcmp_frontend" bldFile="common\generic\TOOLS\SDK_ENG\CSHLPCMP_FRONTEND\GROUP" mrp="common\generic\tools\sdk_eng\cshlpcmp_frontend\group\tools_sdk_eng_cshlpcmp_frontend.mrp"/>
       
   425           <package name="tools_sdk_eng_cshlpcmp_backend_srconly" mrp="common\generic\tools\sdk_eng\cshlpcmp_backend\group\tools_sdk_eng_cshlpcmp_backend_srconly.mrp"/>
       
   426         </component>
       
   427         <component name="PERLLIBRARY">
       
   428           <unit unitID="PERLLIBRARY" name="tools_sdk_eng_perllibrary" bldFile="common\generic\TOOLS\SDK_ENG\PERLLIBRARY\GROUP" mrp="common\generic\tools\sdk_eng\perllibrary\group\tools_sdk_eng_perllibrary.mrp"/>
       
   429         </component>
       
   430         <component name="Perl Shared Libraries">
       
   431           <unit unitID="PERLSHARED" name="tools_sdk_eng_perl_shared" bldFile="common\generic\tools\sdk_eng\perl_shared\group" mrp="common\generic\tools\sdk_eng\perl_shared\group\tools_sdk_eng_perl_shared.mrp"/>
       
   432         </component>
       
   433         <component name="RTF2PTML">
       
   434           <unit unitID="RTF2PTML" name="tools_sdk_eng_rtf2ptml" bldFile="common\generic\TOOLS\SDK_ENG\RTF2PTML\GROUP" mrp="common\generic\tools\sdk_eng\rtf2ptml\group\tools_sdk_eng_rtf2ptml.mrp"/>
       
   435         </component>
       
   436         <component name="SPLASH">
       
   437           <unit unitID="SPLASH" name="tools_sdk_eng_splash" bldFile="common\generic\TOOLS\SDK_ENG\SPLASH\GROUP" mrp="common\generic\tools\sdk_eng\splash\group\tools_sdk_eng_splash.mrp"/>
       
   438         </component>
       
   439         <component name="SDK Builder">
       
   440           <unit unitID="SDK_BUILDER" name="tools_sdk_eng_sdk_builder" bldFile="common\generic\TOOLS\sdk_eng\sdk_builder\GROUP" mrp="common\generic\tools\sdk_eng\sdk_builder\group\tools_sdk_eng_sdk_builder.mrp"/>
       
   441         </component>
       
   442       </module>
       
   443       <module name="Test Product" level="sdk">
       
   444       	<component name="Subsystem Tests">
       
   445           <package name="bluetooth_testproduct" mrp="common\generic\bluetooth\latest\testproduct\group\bluetooth_testproduct.mrp"/>
       
   446           <package name="multimedia_testproduct" mrp="common\generic\multimedia\testproduct\group\multimedia_testproduct.mrp"/>
       
   447 	  <package name="messaging_testproduct" mrp="common\generic\messaging\testproduct\group\messaging_testproduct.mrp"/>
       
   448 	  <package name="syslibs_testproduct" mrp="common\generic\syslibs\testproduct\group\syslibs_testproduct.mrp"/>
       
   449 	  <package name="comms-infras_testproduct" mrp="common\generic\comms-infras\testproduct\group\comms-infras_testproduct.mrp"/>
       
   450 	  <package name="graphics_testproduct" mrp="common\generic\graphics\testproduct\group\graphics_testproduct.mrp"/>
       
   451          <package name="lbs_testproduct" mrp="common\generic\lbs\test\testproduct\group\lbs_testproduct.mrp"/>
       
   452         </component>
       
   453       </module>
       
   454     </layer>
       
   455     <layer name="Kernel Services and Hardware Interface" levels="Hardware-dependent Hardware-independent">
       
   456       <logicalset name="Kernel Architecture">
       
   457         <module name="ASSP" level="Hardware-dependent">
       
   458           <component name="OMAP 1623">
       
   459             <!-- No unit? -->
       
   460           </component>
       
   461         </module>
       
   462         <module name="Kernel Services" level="Hardware-independent">
       
   463           <component name="Kernel Architecture 2">
       
   464             <unit unitID="E32_EKA2" name="base_e32" contract="Symbian_Kernel"  bldFile="cedar\generic\BASE\E32" mrp="cedar\generic\base\e32\base_e32.mrp"/>
       
   465             <unit unitID="E32_COMPSUPP" name="base_e32_compsupp" bldFile="cedar\generic\BASE\E32\compsupp" mrp="cedar\generic\base\e32\compsupp\base_e32_compsupp.mrp" filter="gt"/>
       
   466           </component>
       
   467         </module>
       
   468         <module name="Logical Device Drivers" level="Hardware-independent">
       
   469           <component name="SD Card Driver">
       
   470             <unit unitID="SDCARD3C" name="base_e32_sd3c" contract="SD_Card_SD3C"  bldFile="cedar\generic\base\e32\drivers\pbus\mmc\sdcard\sdcard3c" mrp="cedar\generic\base\e32\drivers\pbus\mmc\sdcard\sdcard3c\base_e32_sd3c.mrp" filter="gt"/>
       
   471             <unit unitID="SDCARD4C" name="base_e32_sd4c" contract="SD_Card_SD4C"  bldFile="cedar\generic\base\e32\drivers\pbus\mmc\sdcard\sdcard4c" mrp="cedar\generic\base\e32\drivers\pbus\mmc\sdcard\sdcard4c\base_e32_sd4c.mrp" filter="gt"/>
       
   472           </component>
       
   473           <component name="Audio Driver">
       
   474               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   475           </component>
       
   476           <component name="Ethernet Driver">
       
   477               <!-- common to EKA1 and EKA2 -->
       
   478           </component>
       
   479           <component name="MIDI Driver">
       
   480               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   481           </component>
       
   482           <component name="Other LDDs">
       
   483               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   484           </component>
       
   485           <component name="Speech Driver">
       
   486               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   487           </component>
       
   488           <component name="USB Driver">
       
   489               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   490           </component>
       
   491           <component name="Video Driver">
       
   492               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   493           </component>
       
   494           <component name="Peripheral Bus Controllers">
       
   495               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   496           </component>          
       
   497         </module>  
       
   498         <module name="Variant" level="Hardware-dependent">
       
   499           <component name="Bootstrap">
       
   500               <package name="base_ubootldr" mrp="cedar\generic\base\ubootldr\base_ubootldr.mrp"/>
       
   501           </component>
       
   502           <component name="Emulator">
       
   503             <unit unitID="WINS_VARIANT_EKA2" name="base_wins" contract="Symbian_SD4C"  bldFile="cedar\generic\base\wins" mrp="cedar\generic\base\wins\base_wins.mrp"/>
       
   504           </component>
       
   505           <component name="Lubbock Variant">
       
   506             <unit unitID="LUBBOCK_EKA2" name="base_lubbock" bldFile="cedar\generic\BASE\LUBBOCK" mrp="cedar\generic\base\lubbock\base_lubbock.mrp"/>
       
   507             <package name="base_cotulla" mrp="cedar\generic\base\cotulla\base_cotulla.mrp"/>
       
   508           </component>
       
   509           <component name="OMAP H2">
       
   510           	<unit unitID="OMAP_H2" name="base_omaph2" bldFile="cedar\generic\base\omap\h2" mrp="cedar\generic\base\omap\h2\base_omaph2.mrp"/>
       
   511             <unit unitID="BASE_H2_UNISTORE2" name="base_h2_unistore2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\omap\h2_restricted\unistore2" mrp="cedar\generic\base\omap\h2_restricted\unistore2\base_h2_unistore2.mrp" filter="gt"/>
       
   512             <package name="base_soc" contract="Symbian_SD4C"  mrp="cedar\generic\base\soc\base_soc.mrp"/>
       
   513             <unit unitID="BASE_H2_SDIO" name="base_h2_sdio" bldFile="cedar\generic\base\omap\h2_restricted\sdio" mrp="cedar\generic\base\omap\h2_restricted\sdio\base_h2_sdio.mrp" filter="gt" />
       
   514           </component>
       
   515           <component name="OMAP H4">
       
   516             <unit unitID="OMAPH4HRP" name="base_omaph4hrp" bldFile="cedar\generic\base\omap_hrp\h4" mrp="cedar\generic\base\omap_hrp\h4\base_omaph4hrp.mrp"/>
       
   517             <unit unitID="H4BOOTLOADER" name="base_omaph4hrp_bootldr" mrp="cedar\generic\base\omap_hrp\h4_bootloader\base_omaph4hrp_bootldr.mrp" bldFile="cedar\generic\base\omap_hrp\h4_bootloader"/>
       
   518             <unit unitID="H4MEBOOTLOADER" name="base_omaph4hrp_mebootldr" mrp="cedar\generic\base\omap_hrp\h4_mebootloader\base_omaph4hrp_mebootldr.mrp" bldFile="cedar\generic\base\omap_hrp\h4_mebootloader"/>
       
   519             <unit unitID="OMAPH4HRP_UNISTORE2" name="base_omaph4hrp_unistore2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\omap_hrp\h4_restricted\unistore2" mrp="cedar\generic\base\omap_hrp\h4_restricted\unistore2\base_omaph4hrp_unistore2.mrp" filter="gt"/>
       
   520             <unit unitID="OMAPH4HRP_SDIO" name="base_omaph4hrp_sdio" bldFile="cedar\generic\base\omap_hrp\h4_restricted\sdio" mrp="cedar\generic\base\omap_hrp\h4_restricted\sdio\base_omaph4hrp_sdio.mrp" filter="gt" />
       
   521           </component>
       
   522           <component name="PDDs">
       
   523               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   524           </component>
       
   525           <component name="Integrator BSP support for Unistore2">
       
   526             <unit unitID="LMNAND2_LOGIC" name="base_integrator_logic_lmnand2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\integrator\logic\lmnand2" mrp="cedar\generic\base\integrator\logic\lmnand2\base_integrator_logic_lmnand2.mrp" filter="gt"/>
       
   527           </component>          
       
   528           <component name="Flash Translation Layer">
       
   529             <unit unitID="UNISTORE2_DRIVERS" name="base_drivers_unistore2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\e32\drivers\unistore2" mrp="cedar\generic\base\e32\drivers\unistore2\base_drivers_unistore2.mrp" filter="gt"/>
       
   530             <package name="base_drivers_unistore2_undeliverable" contract="NAND_Flash_XSR_Unistore_2_Core_Portion"  mrp="cedar\generic\base\e32\drivers\unistore2\base_drivers_unistore2_undeliverable.mrp" filter="gt"/>
       
   531             <unit unitID="UNISTORE2_CRASHFLASH" name="base_crashflash_unistore2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\e32\drivers\crashflash\unistore2" mrp="cedar\generic\base\e32\drivers\crashflash\unistore2\base_crashflash_unistore2.mrp" filter="gt"/>
       
   532             <unit unitID="UNISTORE2_NANDBOOT" name="base_nandboot_unistore2" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\base\e32utils\nandboot\nandloader\unistore2" mrp="cedar\generic\base\e32utils\nandboot\base_nandboot_unistore2.mrp" filter="gt"/>
       
   533           </component>          
       
   534         </module>
       
   535       </logicalset>
       
   536 
       
   537       <module name="Localisation" level="Hardware-independent">
       
   538         <component name="Locale Support">
       
   539           <unit unitID="LOCE32_ONGOING" name="base_loce32" contract="Symbian_Affiliate"  bldFile="common\generic\BASE\LOCE32\ongoing" mrp="common\generic\base\loce32\ongoing\mmpfiles\base_loce32.mrp"/>
       
   540         </component>
       
   541       </module>
       
   542 
       
   543       <module name="Screen Driver" level="Hardware-dependent">
       
   544         <component name="Screen Driver">
       
   545           <unit unitID="SCREENDRIVER" name="graphics_screendriver" bldFile="common\generic\GRAPHICS\ScreenDriver\Group" mrp="common\generic\graphics\screendriver\group\graphics_screendriver.mrp"/>
       
   546         </component>        
       
   547       </module>
       
   548 
       
   549     
       
   550     </layer>
       
   551     <layer name="Base Services" levels="Kernel-interface System-interface">
       
   552 
       
   553       <module name="Low Level Libraries and Frameworks" level="System-interface">
       
   554 	    <component name="Cryptography Library">
       
   555 		  <unit unitID="CRYPTOGRAPHY" name="security_crypto_weak" bldFile="common\generic\SECURITY\CRYPTO\GROUP" mrp="common\generic\security\crypto\group\security_crypto_weak.mrp" filter="gt"/>
       
   556           <unit unitID="STRONG_CRYPTO" name="security_crypto_strong" contract="Symbian_Strong_Cryptography"  bldFile="common\generic\security\crypto\strong" mrp="common\generic\security\crypto\group\security_crypto_strong.mrp" filter="gt"/>
       
   557 		</component>
       
   558 	  	<component name="Feature Registry">
       
   559       	  <unit unitID="FEATREG" name="syslibs_featreg" bldFile="common\generic\syslibs\featreg\group" mrp="common\generic\syslibs\featreg\group\syslibs_featreg.mrp"/>
       
   560 		</component>
       
   561 		<component name="Zip Compression Library">
       
   562       	  <unit unitID="EZLIB" name="syslibs_ezlib" bldFile="common\generic\SYSLIBS\EZLIB\GROUP" mrp="common\generic\syslibs\ezlib\group\syslibs_ezlib.mrp"/>
       
   563 	  	</component>
       
   564       	<component name="Plugin Framework">
       
   565           <unit unitID="ECOM_ONGOING" name="syslibs_ecom" bldFile="common\generic\SYSLIBS\ECOM\ongoing\GROUP" mrp="common\generic\syslibs\ecom\ongoing\Group\syslibs_ecom.mrp"/>
       
   566       	</component>
       
   567       	<component name="Power, Memory and Disk Management">
       
   568           <unit unitID="PWRCLI" name="syslibs_pwrcli" bldFile="common\generic\SYSLIBS\PWRCLI\GROUP" mrp="common\generic\syslibs\pwrcli\group\syslibs_pwrcli.mrp"/>
       
   569           <unit unitID="DOMAIN" name="base_domain" bldFile="cedar\generic\base\domain\group" mrp="cedar\generic\base\domain\group\base_domain.mrp"/>
       
   570         </component>
       
   571         <component name="Application Utilities">
       
   572           <unit unitID="BAFL" name="syslibs_bafl" bldFile="common\generic\SYSLIBS\BAFL\GROUP" mrp="common\generic\syslibs\bafl\group\syslibs_bafl.mrp"/>
       
   573         </component>
       
   574 	  </module>
       
   575 	  
       
   576       <module name="Character Conversion Framework" level="System-interface">
       
   577 		<component name="Character Encoding and Conversion Framework">
       
   578 			<unit unitID="CHARCONV_ONGOING" name="syslibs_charconv" contract="Symbian_Affiliate"  bldFile="common\generic\SYSLIBS\Charconv\Ongoing\GROUP" mrp="common\generic\syslibs\charconv\ongoing\group\syslibs_charconv.mrp"/>  
       
   579 		</component>
       
   580         <component name="Character Encoding and Conversion Plugins">
       
   581           <!-- No unit? -->
       
   582         </component>
       
   583 	  </module>
       
   584 	  
       
   585       <module name="Media Device Framework" level="System-interface">
       
   586         <component name="Media Device Framework">
       
   587               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   588         </component>
       
   589         <component name="Media Device Framework Plugins">
       
   590               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   591         </component>
       
   592 	  </module>
       
   593 	  
       
   594       <module name="XML" level="System-interface">
       
   595         <component name="XML Framework">
       
   596           <unit unitID="XML" name="syslibs_xml" bldFile="common\generic\syslibs\xml\group" mrp="common\generic\syslibs\xml\group\syslibs_xml.mrp"/>
       
   597         </component>
       
   598           <component name="XML Parser">
       
   599           <!-- Built by XML Framework -->
       
   600           </component>
       
   601         <component name="WBXML Parser">
       
   602           <!-- Built by XML Framework -->
       
   603         </component>
       
   604 	  </module>
       
   605 	  
       
   606       <module name="Persistent Storage" level="System-interface">
       
   607         <component name="Store">
       
   608           <unit unitID="STORE" name="syslibs_store" bldFile="common\generic\SYSLIBS\Store\GROUP" mrp="common\generic\syslibs\store\group\syslibs_store.mrp"/>
       
   609         </component>
       
   610         <component name="DBMS">
       
   611           <unit unitID="DBMS" name="syslibs_dbms" bldFile="common\generic\SYSLIBS\DBMS\GROUP" mrp="common\generic\syslibs\dbms\group\syslibs_dbms.mrp"/>
       
   612         </component>
       
   613         <component name="Central Repository">
       
   614           <unit unitID="CENTRALREPOSITORY" name="syslibs_centralrepository" bldFile="common\generic\syslibs\centralrepository\group" mrp="common\generic\syslibs\centralrepository\group\syslibs_centralrepository.mrp"/>
       
   615         </component>
       
   616         <component name="SQL">
       
   617           <unit unitID="SQL" name="syslibs_sql" bldFile="common\generic\syslibs\sql\group" mrp="common\generic\syslibs\sql\group\syslibs_sql.mrp"/>
       
   618         </component> 
       
   619       </module>
       
   620 	  
       
   621       <module name="User Library and File Server" level="Kernel-interface">
       
   622         <component name="User Library">
       
   623           <!-- No unit? -->
       
   624         </component>
       
   625         <component name="File Server">
       
   626           <unit unitID="F32_EKA2" name="base_f32" contract="FAT32"  bldFile="cedar\generic\BASE\F32\GROUP" mrp="cedar\generic\base\f32\group\base_f32.mrp" filter="gt"/>
       
   627           <unit unitID="F32TEST_EKA2" name="base_f32test" bldFile="cedar\generic\BASE\F32TEST\GROUP" mrp="cedar\generic\base\f32test\group\base_f32test.mrp"/>
       
   628         </component>
       
   629         <component name="FAT Filename Conversion Plugins">
       
   630 	      <unit unitID="FATCHARSETCONV" name="syslibs_FATCharsetConv" bldFile="common\generic\syslibs\FATCharsetConv\GROUP" mrp="common\generic\syslibs\FATCharsetConv\group\syslibs_FATCharsetConv.mrp"/>
       
   631         </component>
       
   632         <component name="File Systems">
       
   633           <!-- No unit? -->
       
   634         </component>
       
   635       </module>
       
   636       <module name="User Side Hardware Abstraction" level="Kernel-interface">  
       
   637         <component name="User HAL">
       
   638           <unit unitID="HAL_EKA2" name="base_hal" bldFile="cedar\generic\BASE\HAL" mrp="cedar\generic\base\hal\base_hal.mrp"/>
       
   639         </component>        
       
   640       </module>
       
   641       <module name="Text Mode Shell" level="System-interface">
       
   642         <component name="Text Window Server">
       
   643           <!-- No unit? -->
       
   644         </component>        
       
   645         <component name="Text Shell">
       
   646           <!-- No unit? -->
       
   647         </component>
       
   648       </module>
       
   649 
       
   650     </layer>
       
   651     <layer name="OS Services" levels="hardware-interface plugin framework server application-interface">
       
   652       <logicalset name="Generic OS Services" levels="Services Libraries">
       
   653         <module name="Generic Services" level="Services">
       
   654           <component name="Event Logger">
       
   655             <unit unitID="LOGENGONGOING" name="syslibs_logeng" bldFile="common\generic\SYSLIBS\LOGENG\ONGOING\GROUP" mrp="common\generic\syslibs\logeng\ongoing\group\syslibs_logeng.mrp"/>
       
   656           </component>        
       
   657           <component name="System Agent">
       
   658             <unit unitID="SYSAGENT2" name="syslibs_sysagent2" bldFile="common\generic\SYSLIBS\SYSAGENT2\GROUP" mrp="common\generic\syslibs\sysagent2\group\syslibs_sysagent2.mrp"/>
       
   659           </component>
       
   660           <component name="Task Scheduler">
       
   661             <unit unitID="SCHSVR_ONGOING" name="syslibs_schsvr" bldFile="common\generic\SYSLIBS\SCHSVR\ongoing\GROUP" mrp="common\generic\syslibs\schsvr\ongoing\group\syslibs_schsvr.mrp"/>
       
   662           </component>             
       
   663           <component name="File Logger">
       
   664             <unit unitID="FLOGGER" name="comms-infras_flogger" bldFile="common\generic\COMMS-INFRAS\Flogger\GROUP" mrp="common\generic\comms-infras\flogger\group\comms-infras_flogger.mrp"/>
       
   665             <unit unitID="COMMSDEBUGUTILITY" name="comms-infras_commsdebugutility" bldFile="common\generic\comms-infras\commsdebugutility\GROUP" mrp="common\generic\comms-infras\commsdebugutility\group\comms-infras_commsdebugutility.mrp"/>
       
   666           </component>  
       
   667           <component name="Authentication Services">
       
   668             <unit unitID="AUTHSERVER" name="security_authserver" contract="Symbian_Exclude" bldFile="common\generic\security\authserver\group" mrp="common\generic\security\authserver\group\security_authserver.mrp" filter="Future"/>
       
   669           </component>
       
   670         </module>
       
   671         <module name="Generic Libraries" level="Libraries">
       
   672           <component name="C Standard Library">
       
   673             <unit unitID="STDLIB" name="syslibs_stdlib" bldFile="common\generic\SYSLIBS\STDLIB\GROUP" mrp="common\generic\syslibs\stdlib\group\syslibs_stdlib.mrp"/>
       
   674           </component>          
       
   675           <component name="Crypto Token Framework">
       
   676             <unit unitID="CRYPTOTOKENS" name="security_cryptotokens" bldFile="common\generic\SECURITY\CRYPTOTOKENS\GROUP" mrp="common\generic\security\cryptotokens\group\security_cryptotokens.mrp"/>
       
   677             <unit unitID="FILETOKENS" name="security_filetokens" bldFile="common\generic\security\filetokens\group" mrp="common\generic\security\filetokens\group\security_filetokens.mrp"/>
       
   678           </component>          
       
   679           <component name="Certificate and Key Management">
       
   680             <unit unitID="CERTMAN" name="security_certman" bldFile="common\generic\SECURITY\Certman\GROUP" mrp="common\generic\security\certman\group\security_certman.mrp"/>
       
   681             <package name="rootcerts" mrp="common\generic\security\rootcerts\rootcerts.mrp"/>
       
   682           </component>           
       
   683         </module>
       
   684       </logicalset>
       
   685 
       
   686       <logicalset name="Comms Services">
       
   687 	  
       
   688         <logicalsubset name="Comms Framework">
       
   689 			<module name="Comms Process and Settings" level="application-interface">
       
   690 			  <component name="Comms Root Server">
       
   691 				<unit unitID="ROOTSERVER" name="comms-infras_rootserver" bldFile="common\generic\comms-infras\rootserver\GROUP" mrp="common\generic\comms-infras\rootserver\group\comms-infras_rootserver.mrp"/>
       
   692 				<package name="comms-infras_rootserver-config" mrp="common\generic\comms-infras\rootserver\group\comms-infras_rootserver-config.mrp"/>
       
   693 			  </component>
       
   694 			</module>
       
   695 			
       
   696 			<module name="Comms Config. Utils" level="application-interface">
       
   697 			  <component name="Comms Database">
       
   698 			  	<unit unitID="COMMDB_SHIM" name="Comms Database SHIM" bldFile="common\generic\COMMS-INFRAS\Commdb\GROUP" mrp="common\generic\comms-infras\commdb\group\comms-infras_commdbshim.mrp"/>
       
   699 				<unit unitID="COMMSDAT" name="comms-infras_commsdat" bldFile="common\generic\COMMS-INFRAS\Commsdat\GROUP" mrp="common\generic\comms-infras\commsdat\group\comms-infras_commsdat.mrp"/>            
       
   700 			  </component>
       
   701 			</module>
       
   702 			
       
   703 			<module name="Data Comms Server" level="server">
       
   704 			  <component name="C32 Serial Server">
       
   705 				<unit unitID="C32" name="ser-comms_c32" bldFile="common\generic\SER-COMMS\C32\GROUP" mrp="common\generic\ser-comms\c32\group\ser-comms_c32.mrp"/>
       
   706 				<unit unitID="C32-config" name="ser-comms_c32-config" bldFile="common\generic\ser-comms\c32\data" mrp="common\generic\ser-comms\c32\data\ser-comms_c32-config.mrp" />
       
   707 			  </component>
       
   708 			  <component name="ESock Server">
       
   709                 <unit unitID="ESOCK" name="comms-infras_esock" bldFile="common\generic\COMMS-INFRAS\ESOCK\GROUP" mrp="common\generic\comms-infras\esock\group\comms-infras_esock.mrp"/>
       
   710 				<package name="comms-infras_esock-config" mrp="common\generic\comms-infras\esock\group\comms-infras_esock-config.mrp"/>
       
   711               </component>
       
   712 			  <component name="Network Interface Manager">
       
   713             	<unit unitID="NIFMAN" name="comms-infras_nifman" bldFile="common\generic\COMMS-INFRAS\NIFMAN\GROUP" mrp="common\generic\comms-infras\nifman\group\comms-infras_nifman.mrp"/>
       
   714 				<unit unitID="DIALOG" name="networking_dialog" bldFile="common\generic\NETWORKING\DIALOG\GROUP" mrp="common\generic\networking\dialog\group\networking_dialog.mrp"/>
       
   715               	<unit unitID="DIALOG_DEFAULT" name="networking_dialog_default" bldFile="common\generic\networking\dialog\default" mrp="common\generic\networking\dialog\default\networking_dialog_default.mrp"/>
       
   716 			  </component>
       
   717 			  <component name="Network Controller">
       
   718 				<unit unitID="NETCON" name="networking_netcon" bldFile="common\generic\NETWORKING\NETCON\GROUP" mrp="common\generic\networking\netcon\group\networking_netcon.mrp"/>
       
   719 			  </component>
       
   720 			</module>
       
   721 			
       
   722 			<module name="Comms Framework Utilities" level="framework">
       
   723 			  <component name="Comms Framework">
       
   724  				<unit unitID="COMMSFW" name="comms-infras_commsfw" bldFile="common\generic\comms-infras\commsfw\GROUP" mrp="common\generic\comms-infras\commsfw\group\comms-infras_commsfw.mrp" priority="10"/>
       
   725 			  </component> 
       
   726 			  <component name="Comms Elements">
       
   727 				<unit unitID="ELEMENTS" name="comms-infras_elements" bldFile="common\generic\COMMS-INFRAS\elements\group" mrp="common\generic\comms-infras\elements\group\comms-infras_elements.mrp"/>
       
   728 			  </component> 
       
   729 			  <component name="MBuf Manager">
       
   730 				<unit unitID="MBUFMAN" name="comms-infras_mbufmgr" bldFile="common\generic\comms-infras\mbufmgr\GROUP" mrp="common\generic\comms-infras\mbufmgr\group\comms-infras_mbufmgr.mrp"/>
       
   731 			  </component>
       
   732 			</module>
       
   733 			
       
   734 			<module name="Baseband Abstraction" level="plugin">
       
   735 				<component name="Baseband Channel Adaptor">
       
   736 				  <unit unitID="BCA" name="networking_bca" bldFile="common\generic\NETWORKING\BasebandAdaptation\bca\group" mrp="common\generic\networking\BasebandAdaptation\bca\group\networking_bca.mrp"/>
       
   737 				</component>
       
   738 			</module>
       
   739 		</logicalsubset>
       
   740 		
       
   741         <logicalsubset name="Telephony Services">
       
   742           <module name="Telephony Utilities" level="application-interface">
       
   743             <component name="Dial">
       
   744               <unit unitID="DIAL" name="telephony_dial" bldFile="common\generic\TELEPHONY\DIAL\GROUP" mrp="common\generic\telephony\dial\group\telephony_dial.mrp"/>
       
   745             </component>          
       
   746             <component name="Phonebook Sync">
       
   747               <unit unitID="PHBKSYNC" name="telephony_phbksync" bldFile="common\generic\TELEPHONY\phbksync\group" mrp="common\generic\telephony\phbksync\group\telephony_phbksync.mrp"/>
       
   748             </component>
       
   749             <component name="Telephony Watchers">
       
   750               <unit unitID="TELEPHONY_WATCHERS" name="telephony_watchers" bldFile="common\generic\telephony\watchers\group" mrp="common\generic\telephony\Watchers\group\telephony_watchers.mrp"/>
       
   751             </component>    
       
   752           </module>
       
   753           <module name="Telephony Server" level="server">
       
   754             <component name="ETel Server and Core">
       
   755 	      <!-- Not in 8.0 -->
       
   756               <unit unitID="ETEL" name="telephony_etel" bldFile="common\generic\TELEPHONY\ETEL\GROUP" mrp="common\generic\telephony\etel\group\telephony_etel.mrp"/>
       
   757               <package name="telephony_etel-config" mrp="common\generic\telephony\etel\group\telephony_etel-config.mrp"/>
       
   758             </component>      
       
   759             <component name="ETel 3rd Party API">
       
   760               <unit unitID="ETEL3RDPARTY" name="telephony_etel3rdparty" bldFile="common\generic\TELEPHONY\ETel3rdParty\GROUP" mrp="common\generic\telephony\ETel3rdParty\Group\telephony_etel3rdparty.mrp"/>
       
   761             </component>     
       
   762             <component name="Fax Client and Server">
       
   763               <unit unitID="FAX" name="telephony_fax" bldFile="common\generic\TELEPHONY\FAX\GROUP" mrp="common\generic\telephony\FAX\Group\telephony_fax.mrp"/>
       
   764             </component>           
       
   765             <component name="ETel Multimode">
       
   766               <unit unitID="ETELMM" name="telephony_etelmm" bldFile="common\generic\TELEPHONY\ETELMM\GROUP" mrp="common\generic\telephony\etelmm\group\telephony_etelmm.mrp"/>
       
   767             </component>           
       
   768             <component name="ETel Packet Data">
       
   769 	      <!-- Not in 8.0 -->
       
   770               <unit unitID="ETELPCKT" name="telephony_etelpckt" bldFile="common\generic\TELEPHONY\etelpckt\group" mrp="common\generic\telephony\etelpckt\group\telephony_etelpckt.mrp"/>
       
   771             </component>           
       
   772             <component name="ETel SIM Toolkit">
       
   773               <unit unitID="ETELSAT" name="telephony_etelsat" bldFile="common\generic\TELEPHONY\ETELSAT\GROUP" mrp="common\generic\telephony\etelsat\group\telephony_etelsat.mrp"/>
       
   774             </component>
       
   775             <component name="ETel CDMA">
       
   776 	      <!-- Not in 8.0 -->
       
   777               <unit unitID="ETELCDMA" name="telephony_etelcdma" bldFile="common\generic\telephony\etelcdma\group" mrp="common\generic\telephony\etelcdma\Group\telephony_etelcdma.mrp"/>
       
   778             </component>
       
   779           </module>
       
   780           <module name="SMS Protocol Plugins" level="framework">
       
   781             <component name="SMS PRT">
       
   782 		    <unit unitID="SMSSTACK" name="nbprotocols_smsstack" contract="SMS_MTM"  bldFile="common\generic\NBPROTOCOLS\SMSSTACK\GROUP" mrp="common\generic\nbprotocols\smsstack\group\nbprotocols_smsstack.mrp" filter="9.3"/>
       
   783 		    <unit unitID="SMSSTACKV2" name="nbprotocols_smsstackv2" contract="SMS_MTM"  bldFile="common\generic\NBPROTOCOLS\SMSSTACKV2\GROUP" mrp="common\generic\nbprotocols\smsstackv2\group\nbprotocols_smsstackv2.mrp" filter="!9.3"/>
       
   784             </component>
       
   785             <component name="WAP PRT">
       
   786               <!-- built by SMSSTACK -->
       
   787             </component>
       
   788             <component name="CDMA SMS Plugins">
       
   789               <unit unitID="CDMASMSSTACK" name="nbprotocols_cdmasmsstack" bldFile="common\generic\NBPROTOCOLS\CDMASMSSTACK\GROUP" mrp="common\generic\nbprotocols\cdmasmsstack\group\nbprotocols_cdmasmsstack.mrp"/>
       
   790             </component>
       
   791             <component name="CDMA WAP PRT">
       
   792               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   793             </component>
       
   794           </module>
       
   795           <module name="SMS Utilities" level="application-interface">
       
   796             <component name="GSM Utilities">
       
   797               <!-- built by SMSSTACK-->
       
   798             </component>
       
   799             <component name="SMS Utilities">
       
   800               <!-- built by SMSSTACK -->
       
   801             </component> 
       
   802           </module>
       
   803           <module name="Telephony Server Plugins" level="plugin">
       
   804             <component name="MultiMode TSY">
       
   805               <unit unitID="MMTSY" name="telephony_mmtsy" bldFile="common\generic\TELEPHONY\mmtsy\group" mrp="common\generic\telephony\mmtsy\group\telephony_mmtsy.mrp"/>
       
   806             </component> 
       
   807             <component name="CDMA TSY">
       
   808 	      <!-- Not in 8.0 -->
       
   809               <unit unitID="CDMATSY" name="telephony_cdmatsy" bldFile="common\generic\TELEPHONY\cdmatsy\group" mrp="common\generic\telephony\cdmatsy\group\telephony_cdmatsy.mrp"/>
       
   810             </component> 
       
   811             <component name="SIM TSY">
       
   812               <unit unitID="SIMTSY" name="telephony_simtsy" bldFile="common\generic\TELEPHONY\simtsy\group" mrp="common\generic\telephony\simtsy\group\telephony_simtsy.mrp"/>
       
   813             </component> 
       
   814           </module>
       
   815 	  <module name="Telephony Reference Platform" level="plugin">
       
   816             <component name="TRP TSY">
       
   817               <unit unitID="TRP" name="telephony_trp" bldFile="common\generic\telephony\trp\group" mrp="common\generic\telephony\trp\group\telephony_trp.mrp"/>
       
   818             </component> 
       
   819             <component name="TRP CSY">
       
   820               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   821             </component> 
       
   822             <component name="Baseband Channel Adaptor for C32">
       
   823               <unit unitID="C32BCA" name="networking_c32bca" bldFile="common\generic\NETWORKING\BasebandAdaptation\c32bca\group" mrp="common\generic\networking\BasebandAdaptation\c32bca\group\networking_c32bca.mrp"/>
       
   824             </component>
       
   825 	  </module>
       
   826         </logicalsubset>
       
   827         <logicalsubset name="Short Link Services">
       
   828           <module name="USB Manager" level="application-interface">
       
   829             <component name="USB Manager">
       
   830               <unit unitID="USB" name="ser-comms_usb" bldFile="common\generic\SER-COMMS\USB\GROUP" mrp="common\generic\ser-comms\usb\group\ser-comms_usb.mrp"/>
       
   831               <package name="ser-comms_usb_test" mrp="common\generic\ser-comms\usb_test\group\ser-comms_usb_test.mrp" />
       
   832             </component>  
       
   833           </module>
       
   834           <module name="Short Link" level="server">
       
   835             <component name="Bluetooth Protocol Client APIs">
       
   836               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   837             </component> 
       
   838             <component name="Bluetooth Manager">
       
   839               <unit unitID="BLUETOOTH_MANAGER" name="bluetooth_manager" bldFile="common\generic\bluetooth\latest\bluetooth\manager" mrp="common\generic\bluetooth\latest\bluetooth\manager\bluetooth_manager.mrp"/>
       
   840               <unit unitID="BLUETOOTH_BTEXTNOTIFIERS" name="bluetooth_btextnotifiers" bldFile="common\generic\bluetooth\latest\bluetooth\BTExtNotifiers" mrp="common\generic\bluetooth\latest\bluetooth\BTExtNotifiers\bluetooth_btextnotifiers.mrp"/>
       
   841               <unit unitID="BLUETOOTH_CONFIG" name="bluetooth_config" bldFile="common\generic\bluetooth\latest\bluetooth\config" mrp="common\generic\bluetooth\latest\bluetooth\config\bluetooth_config.mrp"/>
       
   842               <unit unitID="BLUETOOTH_GAVDP" name="bluetooth_gavdp" bldFile="common\generic\bluetooth\latest\bluetooth\profiles\gavdp\group" mrp="common\generic\bluetooth\latest\bluetooth\profiles\gavdp\group\bluetooth_gavdp.mrp"/>
       
   843               <unit unitID="BLUETOOTH_ROM" name="bluetooth_rom" bldFile="common\generic\bluetooth\latest\bluetooth\rom" mrp="common\generic\bluetooth\latest\bluetooth\rom\bluetooth_rom.mrp"/>
       
   844               <unit unitID="BLUETOOTH_USER" name="bluetooth_user" bldFile="common\generic\bluetooth\latest\bluetooth\user" mrp="common\generic\bluetooth\latest\bluetooth\user\bluetooth_user.mrp"/>
       
   845               <package name="bluetooth_common" mrp="common\generic\bluetooth\latest\bluetooth\bluetooth_common.mrp"/>
       
   846               <package name="bluetooth_documentation" mrp="common\generic\bluetooth\latest\documentation\bluetooth_documentation.mrp"/>
       
   847               <package name="bluetooth_tests_examples" mrp="common\generic\bluetooth\latest\bluetooth\bluetooth_tests_examples.mrp"/>
       
   848             </component>
       
   849             <component name="HCI Framework">
       
   850               <unit unitID="HCI_V2_FRAMEWORK" name="bluetooth_hci_v2_framework" bldFile="common\generic\bluetooth\latest\bluetooth\hci_v2\framework\group" mrp="common\generic\bluetooth\latest\bluetooth\hci_v2\framework\group\bluetooth_hci_v2_framework.mrp"/>
       
   851             </component>
       
   852             <component name="Bluetooth SDP">
       
   853               <unit unitID="BLUETOOTH_SDP" name="bluetooth_sdp" bldFile="common\generic\bluetooth\latest\bluetooth\sdp" mrp="common\generic\bluetooth\latest\bluetooth\sdp\bluetooth_sdp.mrp"/>
       
   854             </component>
       
   855             <component name="Bluetooth Profiles">
       
   856               <unit unitID="BLUETOOTH_AVRCP" name="bluetooth_avrcp" bldFile="common\generic\bluetooth\latest\bluetooth\profiles\avrcp" mrp="common\generic\bluetooth\latest\bluetooth\profiles\avrcp\bluetooth_avrcp.mrp"/>
       
   857             </component>
       
   858             <component name="Remote Control Framework">
       
   859               <unit unitID="BLUETOOTH_REMOTECONTROL" name="bluetooth_remotecontrol" bldFile="common\generic\bluetooth\latest\bluetooth\remotecontrol\group" mrp="common\generic\bluetooth\latest\bluetooth\remotecontrol\group\bluetooth_remotecontrol.mrp"/>
       
   860             </component>
       
   861           </module>
       
   862           <module name="OBEX" level="application-interface">
       
   863             <component name="OBEX Protocol">
       
   864               <unit unitID="OBEX" name="obex" bldFile="common\generic\obex\group" mrp="common\generic\obex\group\obex.mrp"/>
       
   865             </component>
       
   866             <component name="OBEX Extension API">
       
   867               <unit unitID="OBEX_EXTENSIONAPIS" name="obex_extensionapis" bldFile="common\generic\obex\obexextensionapis\group" mrp="common\generic\obex\obexextensionapis\group\obex_extensionapis.mrp"/>
       
   868             </component>
       
   869           </module>
       
   870           <module name="Short Link Protocol Plugins" level="framework">
       
   871             <component name="Bluetooth Stack PRT">
       
   872               <unit unitID="BLUETOOTH_STACK" name="bluetooth_stack" bldFile="common\generic\bluetooth\latest\bluetooth\stack" mrp="common\generic\bluetooth\latest\bluetooth\stack\bluetooth_stack.mrp"/>
       
   873             </component>
       
   874             <component name="Bluetooth HCI">
       
   875               <unit unitID="BLUETOOTH_HCI" name="bluetooth_hci" bldFile="common\generic\bluetooth\latest\bluetooth\hci" mrp="common\generic\bluetooth\latest\bluetooth\hci\bluetooth_hci.mrp"/>
       
   876               <unit unitID="BLUETOOTH_HCIPROXY" name="bluetooth_hciproxy" bldFile="common\generic\bluetooth\latest\bluetooth\HCIProxy" mrp="common\generic\bluetooth\latest\bluetooth\HCIProxy\bluetooth_hciproxy.mrp"/>
       
   877               <unit unitID="HCI_V2_IMPLEMENTATIONS" name="bluetooth_hci_v2_implementations" bldFile="common\generic\bluetooth\latest\bluetooth\hci_v2\implementations\group" mrp="common\generic\bluetooth\latest\bluetooth\hci_v2\implementations\group\bluetooth_hci_v2_implementations.mrp"/>
       
   878             </component>  
       
   879             <component name="IrDA PRT">
       
   880               <unit unitID="IRDA" name="infra-red_irda" bldFile="common\generic\INFRA-RED\IRDA\GROUP" mrp="common\generic\infra-red\irda\group\infra-red_irda.mrp"/>
       
   881               <unit unitID="INFRA-RED_CONFIG" name="infra-red_config" bldFile="common\generic\INFRA-RED\config" mrp="common\generic\infra-red\config\infra-red_config.mrp"/>
       
   882               <package name="infra-red_documentation" mrp="common\generic\infra-red\documentation\infra-red_documentation.mrp"/>
       
   883               <package name="infra-red_irda_test" mrp="common\generic\infra-red\irda_test\group\infra-red_irda_test.mrp" />
       
   884             </component>  
       
   885           </module>
       
   886           <module name="Serial Comms Server Plugins" level="plugin">
       
   887             <component name="Serial Port CSY">
       
   888               <!-- built by C32 -->
       
   889             </component>  
       
   890             <component name="USB CSY">
       
   891               <!-- built by USB -->
       
   892             </component>  
       
   893             <component name="Bluetooth CSY">
       
   894               <unit unitID="BLUETOOTH_BTCOMM" name="bluetooth_btcomm" bldFile="common\generic\bluetooth\latest\bluetooth\btcomm" mrp="common\generic\bluetooth\latest\bluetooth\btcomm\bluetooth_btcomm.mrp"/>
       
   895             </component>  
       
   896             <component name="IrDA CSY">
       
   897               <!-- built by IRDA -->
       
   898             </component> 
       
   899           </module>
       
   900         </logicalsubset>
       
   901         <logicalsubset name="Networking Services">
       
   902           <module name="TCP/IP Security" level="application-interface">
       
   903             <component name="TLS">
       
   904               <unit unitID="TLS" name="networking_tls" bldFile="common\generic\networking\tls\group" mrp="common\generic\networking\tls\group\networking_tls.mrp"/>
       
   905               <unit unitID="TLSPROVIDER" name="security_tlsprovider" bldFile="common\generic\security\tlsprovider\group" mrp="common\generic\security\tlsprovider\group\security_tlsprovider.mrp"/>
       
   906             </component>
       
   907             <component name="IPSec">
       
   908               <unit unitID="IPSECV2" name="networking_ipsec" contract="IPSec_Protocol_Stack"  bldFile="common\generic\NETWORKING\ipsec\group" mrp="common\generic\networking\ipsec\group\networking_ipsec.mrp"/>
       
   909             </component>
       
   910             <component name="VPN">
       
   911               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   912             </component>
       
   913           </module>
       
   914           <module name="TCP/IP Utilities" level="application-interface">
       
   915             <component name="DND">
       
   916               <unit unitID="DND" name="networking_dnd" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\dnd\group" mrp="common\generic\networking\dnd\group\networking_dnd.mrp"/>
       
   917               <package name="networking_dnd-config" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\dnd\group\networking_dnd-config.mrp" />
       
   918             </component>   
       
   919             <component name="DHCP">
       
   920               <unit unitID="DHCP" name="networking_dhcp" bldFile="common\generic\NETWORKING\dhcp\group" mrp="common\generic\networking\dhcp\group\networking_dhcp.mrp"/>
       
   921             </component>   
       
   922           </module>
       
   923           <module name="ESock API Extensions" level="server">
       
   924             <component name="Internet Sockets">
       
   925               <unit unitID="INSOCK" name="networking_insock" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\insock\group" mrp="common\generic\networking\insock\group\networking_insock.mrp"/>
       
   926               <unit unitID="NETWORKING_GENERAL" name="networking_general" bldFile="common\generic\networking\General\group" mrp="common\generic\networking\General\group\networking_general.mrp"/>
       
   927               <package name="networking_inetutil" mrp="common\generic\networking\inetutil\group\networking_inetutil.mrp"/>
       
   928             </component>
       
   929           </module>
       
   930           <module name="Network Protocol Plugins" level="framework">
       
   931             <component name="IP Event Notifier">
       
   932               <unit unitID="IPEVENTNOTIFIER" name="networking_ipeventnotifier" bldFile="common\generic\networking\ipeventnotifier\group" mrp="common\generic\networking\ipeventnotifier\group\networking_ipeventnotifier.mrp"/>
       
   933             </component>
       
   934           	<component name="TCP/IPv4/v6 PRT">
       
   935               <unit unitID="TCPIP6" name="networking_tcpip6" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\TCPIP6\GROUP" mrp="common\generic\networking\tcpip6\group\networking_tcpip6.mrp"/>
       
   936               <package name="networking_tcpip6-config" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\tcpip6\group\networking_tcpip6-config.mrp" />
       
   937               <package name="networking_6to4" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\6to4\group\networking_6to4.mrp"/>
       
   938             </component>
       
   939             <component name="IP Hook Examples">
       
   940               <unit unitID="NETWORKING_EXAMPLECODE" name="IP Hook Examples" bldFile="common\generic\NETWORKING\examplecode\GROUP" mrp="common\generic\networking\examplecode\group\networking_examplecode.mrp"/>
       
   941               <package name="networking_ipadm" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\ipadm\group\networking_ipadm.mrp"/>
       
   942               <package name="networking_iprotor" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\iprotor\group\networking_iprotor.mrp"/>
       
   943               <package name="networking_nslookup" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\nslookup\group\networking_nslookup.mrp"/>
       
   944               <package name="networking_probe" contract="TCPIP_v4-v6_PRT"  mrp="common\generic\networking\probe\group\networking_probe.mrp"/>
       
   945               <package name="networking_unittest" mrp="common\generic\networking\unittest\group\networking_unittest.mrp"/>
       
   946             </component>            
       
   947             <component name="IP Hook">
       
   948               <unit unitID="INHOOK6" name="networking_inhook6" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\inhook6\group" mrp="common\generic\networking\inhook6\group\networking_inhook6.mrp"/>
       
   949             </component>
       
   950             <component name="QoS Framework PRT">
       
   951               <unit unitID="QOS" name="networking_qos" contract="IPv6_QOS"  bldFile="common\generic\NETWORKING\QOS\GROUP" mrp="common\generic\networking\qos\group\networking_qos.mrp"/>
       
   952               <package name="networking_qos-config" contract="IPv6_QOS"  mrp="common\generic\networking\qos\group\networking_qos-config.mrp" />
       
   953               <unit unitID="QOSLIB" name="networking_qoslib" contract="IPv6_QOS"  bldFile="common\generic\NETWORKING\QOSLIB\GROUP" mrp="common\generic\networking\qoslib\group\networking_qoslib.mrp"/>
       
   954               <unit unitID="PFQOSLIB" name="networking_pfqoslib" contract="IPv6_QOS"  bldFile="common\generic\NETWORKING\PFQOSLIB\GROUP" mrp="common\generic\networking\pfqoslib\group\networking_pfqoslib.mrp"/>
       
   955             </component>
       
   956             <component name="Core IPSec PRT">
       
   957               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
   958             </component>
       
   959           </module>
       
   960           <module name="Networking Plugins" level="plugin">
       
   961             <component name="Connection Provider Plugin">
       
   962                 <unit unitID="IPCPR" name="networking_ipcpr" bldFile="common\generic\NETWORKING\ConnProv\IPCPR\GROUP" mrp="common\generic\networking\ConnProv\ipcpr\group\networking_ipcpr.mrp"/>
       
   963                 <unit unitID="SHIMCPR" name="networking_shimcpr" bldFile="common\generic\NETWORKING\ConnProv\shimcpr\GROUP" mrp="common\generic\networking\ConnProv\shimcpr\group\networking_shimcpr.mrp"/>
       
   964                 <unit unitID="IPSCPR" name="networking_ipscpr" bldFile="common\generic\NETWORKING\SubConnProv\ipscpr\GROUP" mrp="common\generic\networking\SubConnProv\ipscpr\group\networking_ipscpr.mrp"/>
       
   965                 <unit unitID="REFERENCECPR" name="networking_ReferenceCPR" bldFile="common\generic\NETWORKING\ConnProv\referencecpr\GROUP" mrp="common\generic\networking\ConnProv\referencecpr\group\networking_ReferenceCPR.mrp"/>
       
   966                 <unit unitID="REFERENCESCPR" name="networking_ReferenceSCPR" bldFile="common\generic\NETWORKING\SubConnProv\referencescpr\GROUP" mrp="common\generic\networking\SubConnProv\referencescpr\group\networking_ReferenceSCPR.mrp"/>
       
   967                 <unit unitID="QOS3GPP" name="networking_Qos3GPP" bldFile="common\generic\NETWORKING\SubConnProv\Qos3GPP\GROUP" mrp="common\generic\networking\SubConnProv\Qos3GPP\group\networking_Qos3GPP.mrp"/>
       
   968                 <unit unitID="UMTSGPRSSCPR" name="networking_UmtsGprsSCPR" bldFile="common\generic\NETWORKING\SubConnProv\UmtsGprsSCPR\GROUP" mrp="common\generic\networking\SubConnProv\UmtsGprsSCPR\group\networking_UmtsGprsSCPR.mrp"/>
       
   969             </component>
       
   970             <component name="CSD AGT">
       
   971               <unit unitID="CSDAGT" name="networking_csdagt" bldFile="common\generic\NETWORKING\CSDAGT\GROUP" mrp="common\generic\networking\csdagt\group\networking_csdagt.mrp"/>
       
   972             </component>
       
   973             <component name="PSD AGT">
       
   974               <unit unitID="PSDAGT" name="networking_psdagt" bldFile="common\generic\NETWORKING\PSDAGT\GROUP" mrp="common\generic\networking\psdagt\group\networking_psdagt.mrp"/>
       
   975             </component>
       
   976             <component name="NULL AGT">
       
   977               <unit unitID="NULLAGT" name="networking_nullagt" bldFile="common\generic\NETWORKING\NULLAGT\GROUP" mrp="common\generic\networking\nullagt\group\networking_nullagt.mrp"/>
       
   978             </component>
       
   979             <component name="GPRS/UMTS QOS PRT">
       
   980               <unit unitID="GUQOS" name="networking_guqos" contract="IPv6_QOS"  bldFile="common\generic\NETWORKING\GUQOS\GROUP" mrp="common\generic\networking\guqos\group\networking_guqos.mrp"/>
       
   981               <unit unitID="UMTSIF" name="networking_umtsif" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\UMTSIF\GROUP" mrp="common\generic\networking\umtsif\group\networking_umtsif.mrp"/>
       
   982               <unit unitID="QOSEXTNAPI" name="networking_qosextnapi" contract="IPv6_QOS" bldFile="common\generic\networking\qosextnapi\group" mrp="common\generic\networking\qosextnapi\group\networking_qosextnapi.mrp"/>
       
   983             </component>
       
   984             <component name="Secondary PDP context UMTS Driver">
       
   985               <unit unitID="SPUD" name="networking_spud" bldFile="common\generic\NETWORKING\SPUD\GROUP" mrp="common\generic\networking\spud\group\networking_spud.mrp"/>
       
   986             </component>
       
   987             <component name="Bluetooth PAN Profile">
       
   988               <unit unitID="BLUETOOTH_PAN" name="bluetooth_pan" bldFile="common\generic\bluetooth\latest\bluetooth\profiles\pan\group" mrp="common\generic\bluetooth\latest\bluetooth\profiles\pan\group\bluetooth_pan.mrp"/>
       
   989             </component>
       
   990           </module>
       
   991           <module name="Link Layer Control" level="hardware-interface">
       
   992             <component name="Ethernet NIF">
       
   993               <unit unitID="ETHER802" name="networking_ether802" bldFile="common\generic\NETWORKING\ETHER802\GROUP" mrp="common\generic\networking\ether802\group\networking_ether802.mrp"/>
       
   994             </component>
       
   995             <component name="Ethernet Packet Driver">
       
   996               <!-- built by ETHER802-->
       
   997               <package name="networking_etherdrv_srconly" mrp="common\generic\networking\etherdrv\group\networking_etherdrv_srconly.mrp"/>
       
   998             </component>
       
   999             <component name="Ethernet Over IR Packet Driver">
       
  1000               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1001             </component>
       
  1002             <component name="PPP NIF">
       
  1003               <unit unitID="PPP" name="networking_ppp" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\PPP\GROUP" mrp="common\generic\networking\ppp\group\networking_ppp.mrp"/>
       
  1004               <package name="networking_ppp-config" mrp="common\generic\networking\ppp\group\networking_ppp-config.mrp" />
       
  1005             </component>
       
  1006             <component name="PPP Compression Plugins">
       
  1007               <unit unitID="PREDCOMP" name="networking_predcomp" bldFile="common\generic\NETWORKING\PREDCOMP\GROUP" mrp="common\generic\networking\predcomp\group\networking_predcomp.mrp"/>
       
  1008               <unit unitID="MSCOMP" name="networking_mscomp" contract="MPPC_LZS_Compression_Libraries"  bldFile="common\generic\NETWORKING\MSComp\GROUP" mrp="common\generic\networking\mscomp\group\networking_mscomp.mrp" filter="gt"/>
       
  1009               <unit unitID="STACCOMP" name="networking_staccomp" contract="MPPC_LZS_Compression_Libraries"  bldFile="common\generic\NETWORKING\STACCOMP\GROUP" mrp="common\generic\networking\staccomp\group\networking_staccomp.mrp" filter="gt"/>
       
  1010             </component>
       
  1011             <component name="SLIP NIF">
       
  1012               <unit unitID="SLIP" name="networking_slip" bldFile="common\generic\NETWORKING\SLIP\GROUP" mrp="common\generic\networking\slip\group\networking_slip.mrp"/>
       
  1013             </component>
       
  1014             <component name="Tunnel NIF">
       
  1015               <unit unitID="TUNNELNIF" name="networking_tunnelnif" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\tunnelnif\group" mrp="common\generic\networking\tunnelnif\group\networking_tunnelnif.mrp"/>
       
  1016             </component> 
       
  1017             <component name="Packet Logger">
       
  1018               <unit unitID="PACKETLOGGER" name="networking_packetlogger" bldFile="common\generic\NETWORKING\packetlogger\group" mrp="common\generic\networking\packetlogger\group\networking_packetlogger.mrp"/>
       
  1019             </component>
       
  1020             <component name="Raw IP NIF">
       
  1021               <unit unitID="RAWIPNIF" name="networking_rawipnif" bldFile="common\generic\NETWORKING\rawipnif\group" mrp="common\generic\networking\rawipnif\group\networking_rawipnif.mrp"/>
       
  1022       	    </component>
       
  1023 	    <component name="Wireless LAN">
       
  1024      	      <unit unitID="WIFI_802_11" name="networking_802.11" bldFile="common\generic\networking\802.11\group" mrp="common\generic\networking\802.11\group\networking_802.11.mrp" filter="gt"/>
       
  1025 	    </component>
       
  1026           </module>
       
  1027           <module name="WAP Stack" level="application-interface">
       
  1028             <component name="WAP Message API">
       
  1029               <unit unitID="WAPMESSAGE" name="wap-stack_wapmessage" bldFile="common\generic\WAP-STACK\WAPMESSAGE\GROUP" mrp="common\generic\wap-stack\wapmessage\group\wap-stack_wapmessage.mrp"/>
       
  1030             </component>
       
  1031             <component name="WAP Short Stack">
       
  1032               <unit unitID="WAPSTACK" name="WAP Stack Wrapper" contract="Symbian_Affiliate"  bldFile="common\generic\WAP-STACK\WAPSTACK\GROUP" mrp="common\generic\wap-stack\wapstack\group\wap-stack_wapstack.mrp" filter="gt"/>
       
  1033             </component>
       
  1034           </module>
       
  1035 	  <module name="Subconnection Interface" level="server">
       
  1036             <component name="Subconnection Parameters">
       
  1037               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1038             </component>
       
  1039           </module>
       
  1040         </logicalsubset>
       
  1041       </logicalset>
       
  1042       <logicalset name="Multimedia and Graphics Services">
       
  1043         <module name="Multimedia" level="application-interface">
       
  1044           <component name="Multimedia Device Framework">
       
  1045 	    <unit unitID="MDF" name="multimedia_mdf" bldFile="common\generic\multimedia\mdf\group" mrp="common\generic\multimedia\mdf\group\multimedia_mdf.mrp" filter="!9.3"/>
       
  1046             <package name="multimedia_unittest_mdf_source" mrp="common\generic\multimedia\unittest\mdf\group\multimedia_unittest_mdf_source.mrp" filter="!9.3"/>
       
  1047             <unit unitID="OPENMAX" name="multimedia_openmax" bldFile="common\generic\multimedia\openmax\group" mrp="common\generic\multimedia\openmax\group\multimedia_openmax.mrp" filter="!9.3"/>
       
  1048           </component>
       
  1049           <component name="Multimedia Framework">
       
  1050             <unit unitID="MMF" name="multimedia_mmf" bldFile="common\generic\MULTIMEDIA\MMF\GROUP" mrp="common\generic\Multimedia\MMF\group\multimedia_mmf.mrp"/>
       
  1051             <package name="multimedia_documentation" mrp="common\generic\multimedia\documentation\multimedia_documentation.mrp"/>
       
  1052             <package name="multimedia_unittest_mmf_source" mrp="common\generic\multimedia\unittest\mmf\group\multimedia_unittest_mmf_source.mrp"/>
       
  1053             <package name="multimedia_inttest_mmf_source" mrp="common\generic\multimedia\inttest\mmf\group\multimedia_inttest_mmf_source.mrp"/>
       
  1054             <unit unitID="COMMON" name="multimedia_common" bldFile="common\generic\MULTIMEDIA\MMCOMMON\GROUP" mrp="common\generic\Multimedia\MMCOMMON\group\multimedia_common.mrp"/>
       
  1055             <package name="multimedia_testframework_source" mrp="common\generic\multimedia\testframework\group\multimedia_testframework_source.mrp"/>
       
  1056             <package name="multimedia_testtools_source" mrp="common\generic\multimedia\testtools\group\multimedia_testtools_source.mrp"/>
       
  1057             <package name="multimedia_unittest_testframework_source" mrp="common\generic\multimedia\unittest\testframework\group\multimedia_unittest_testframework_source.mrp"/>
       
  1058             <package name="multimediatestagent_source" mrp="common\generic\multimedia\inttest\drm\testagent\group\multimediatestagent_source.mrp"/>
       
  1059           </component>
       
  1060           <component name="Image Conversion Library">
       
  1061             <unit unitID="ICL" name="multimedia_icl" bldFile="common\generic\MULTIMEDIA\ICL\GROUP" mrp="common\generic\Multimedia\ICL\group\multimedia_icl.mrp"/>
       
  1062             <package name="multimedia_unittest_icl_source" mrp="common\generic\multimedia\unittest\icl\group\multimedia_unittest_icl_source.mrp"/>
       
  1063             <package name="multimedia_inttest_icl_source" mrp="common\generic\multimedia\inttest\icl\group\multimedia_inttest_icl_source.mrp"/>
       
  1064           </component>
       
  1065           <component name="Camera">
       
  1066             <unit unitID="ECAM" name="multimedia_ecam" bldFile="common\generic\MULTIMEDIA\ECAM\GROUP" mrp="common\generic\Multimedia\ECam\Group\multimedia_ecam.mrp"/>
       
  1067             <package name="multimedia_unittest_ecam_source" mrp="common\generic\Multimedia\unittest\ECam\group\multimedia_unittest_ecam_source.mrp"/>
       
  1068           </component>
       
  1069           <component name="Broadcast Tuner">
       
  1070 	    <unit unitID="TUNER" name="multimedia_tuner" bldFile="common\generic\MULTIMEDIA\tuner\GROUP" mrp="common\generic\Multimedia\tuner\Group\multimedia_tuner.mrp"/>
       
  1071   	    <package name="Tuner_Unittest_Source" mrp="common\generic\Multimedia\unittest\Tuner\group\multimedia_unittest_tuner_source.mrp" />        
       
  1072           </component>
       
  1073         </module>
       
  1074         <module name="Windowing Framework" level="server">
       
  1075           <component name="Window Server">
       
  1076             <unit unitID="WSERV8.1" name="graphics_wserv" bldFile="common\generic\GRAPHICS\Wserv\group" mrp="common\generic\graphics\wserv\group\graphics_wserv.mrp"/>
       
  1077           </component>   
       
  1078         </module>
       
  1079         <module name="OpenGL ES" level="server">
       
  1080           <component name="OpenGL ES Framework">
       
  1081             <unit unitID="OPENGLESDISPLAYPROPERTY" name="graphics_openglesdisplayproperty" bldFile="common\generic\graphics\OpenGLESDisplayProperty\group" mrp="common\generic\graphics\OpenGLESDisplayProperty\group\graphics_openglesdisplayproperty.mrp"/>
       
  1082           </component>   
       
  1083           <component name="OpenGL ES">
       
  1084             <unit unitID="OPENGLSHEADERS" name="graphics_openglesheaders" bldFile="common\generic\graphics\OpenGLESHeaders\group" mrp="common\generic\graphics\OpenGLESHeaders\group\graphics_openglesheaders.mrp"/>
       
  1085             <unit unitID="OPENGLES9.X" name="graphics_opengles" contract="OPENGL"  bldFile="common\generic\graphics\OpenGLES\group\" mrp="common\generic\graphics\OpenGLES\group\graphics_opengles.mrp" filter="gt"/>
       
  1086           </component>
       
  1087        	  <component name="Graphics Surfaces">
       
  1088             <unit unitID="GRAPHICSSURFACES" name="graphics_graphicssurfaces" contract="Symbian_Exclude" bldFile="common\generic\graphics\graphicssurfaces\group" mrp="common\generic\graphics\graphicssurfaces\group\graphics_graphicssurfaces.mrp" filter="Future"/>
       
  1089           </component>          
       
  1090         </module>
       
  1091         <module name="Graphics and Printing Services" level="framework">
       
  1092           <component name="Bit GDI">
       
  1093             <unit unitID="BITGDI" name="graphics_bitgdi" bldFile="common\generic\GRAPHICS\Bitgdi\GROUP" mrp="common\generic\graphics\bitgdi\group\graphics_bitgdi.mrp"/>
       
  1094           </component>
       
  1095           <component name="Text Shaper Plugin">
       
  1096             <unit unitID="ICULAYOUTENGINE" name="graphics_iculayoutengine" bldFile="common\generic\GRAPHICS\iculayoutengine\GROUP" mrp="common\generic\graphics\iculayoutengine\group\graphics_iculayoutengine.mrp"/>
       
  1097           </component>
       
  1098           <component name="Font and Bitmap Server">
       
  1099             <unit unitID="FBSERV" name="graphics_fbserv" bldFile="common\generic\GRAPHICS\Fbserv\GROUP" mrp="common\generic\graphics\fbserv\group\graphics_fbserv.mrp"/>
       
  1100           </component>   
       
  1101           <component name="Font Store">
       
  1102             <unit unitID="FNTSTORE" name="graphics_fntstore" bldFile="common\generic\GRAPHICS\Fntstore\GROUP" mrp="common\generic\graphics\fntstore\group\graphics_fntstore.mrp"/>
       
  1103           </component>   
       
  1104           <component name="FreeType Font Rasteriser">
       
  1105             <unit unitID="FREETYPE" name="graphics_freetype" bldFile="common\generic\GRAPHICS\Freetype\GROUP" mrp="common\generic\graphics\freetype\group\graphics_freetype.mrp"/>
       
  1106           </component>   
       
  1107           <component name="Reference Fonts">
       
  1108             <unit unitID="FONTS" name="graphics_fonts" bldFile="common\generic\GRAPHICS\Fonts\GROUP" mrp="common\generic\graphics\fonts\group\graphics_fonts.mrp"/>
       
  1109           </component>          
       
  1110           <component name="Printer Driver Support">
       
  1111             <unit unitID="PDRSTORE" name="graphics_pdrstore" bldFile="common\generic\GRAPHICS\PDRSTORE\GROUP" mrp="common\generic\graphics\pdrstore\group\graphics_pdrstore.mrp"/>
       
  1112           </component>   
       
  1113           <component name="Printer Drivers">
       
  1114             <unit unitID="PRINTDRV" name="graphics_printdrv" bldFile="common\generic\GRAPHICS\PRINTDRV\GROUP" mrp="common\generic\graphics\printdrv\group\graphics_printdrv.mrp"/>
       
  1115           </component>
       
  1116           <component name="UI Bench">
       
  1117 	    <unit unitID="UI_BENCH" name="graphics_ui_bench" bldFile="common\generic\graphics\ui_bench\group" mrp="common\generic\graphics\ui_bench\group\graphics_ui_bench.mrp"/>
       
  1118           </component>
       
  1119         </module>
       
  1120         <module name="Graphics Device Interface" level="plugin">
       
  1121           <component name="GDI">
       
  1122             <unit unitID="GDI" name="graphics_gdi" bldFile="common\generic\GRAPHICS\GDI\GROUP" mrp="common\generic\graphics\gdi\group\graphics_gdi.mrp"/>
       
  1123             <package name="graphics_testharness" mrp="common\generic\graphics\testharness\group\graphics_testharness.mrp"/>
       
  1124           </component>          
       
  1125           <component name="Colour Palette">
       
  1126             <unit unitID="PALETTE" name="graphics_palette" bldFile="common\generic\GRAPHICS\palette\group" mrp="common\generic\graphics\palette\group\graphics_palette.mrp"/>
       
  1127           </component>
       
  1128         </module>
       
  1129         <module name="OpenVG" level="plugin">
       
  1130           <component name="OpenVG API">
       
  1131             <unit unitID="OPENVGHEADERS" name="graphics_openvgheaders" contract="Symbian_Exclude" bldFile="common\generic\graphics\openvgheaders\group" mrp="common\generic\graphics\openvgheaders\group\graphics_openvgheaders.mrp" filter="Future"/>
       
  1132           </component>   
       
  1133           <component name="OpenVG Implementation">
       
  1134             <unit unitID="OPENVG" name="graphics_openvg" bldFile="common\generic\graphics\OpenVG\group\" contract="Symbian_Exclude" mrp="common\generic\graphics\OpenVG\group\graphics_openvg.mrp" filter="Future"/>
       
  1135           </component>   
       
  1136         </module>
       
  1137         <module name="EGL" level="plugin">
       
  1138           <component name="EGL API">
       
  1139             <unit unitID="EGLVGHEADERS" name="graphics_eglheaders" contract="Symbian_Exclude" bldFile="common\generic\graphics\eglheaders\group" mrp="common\generic\graphics\eglheaders\group\graphics_eglheaders.mrp" filter="Future"/>
       
  1140           </component>   
       
  1141           <component name="EGL Implementation">
       
  1142             <unit unitID="EGL" name="graphics_egl" contract="Symbian_Exclude" bldFile="common\generic\graphics\egl\group\" mrp="common\generic\graphics\egl\group\graphics_egl.mrp" filter="Future"/>
       
  1143           </component>   
       
  1144         </module>
       
  1145       </logicalset>
       
  1146       <logicalset name="Connectivity Services">
       
  1147         <module name="Service Providers" level="server">
       
  1148           <component name="PLP Variant">
       
  1149             <unit unitID="PLPVARIANT" name="connectivity_legacy_plp_plpvariant" bldFile="common\generic\connectivity\legacy\plp\PLPVARIANT" mrp="common\generic\connectivity\legacy\PLP\PLPVARIANT\connectivity_legacy_plp_plpvariant.mrp"/>
       
  1150             <unit unitID="PLP" name="connectivity_legacy_plp_plpgrp" bldFile="common\generic\connectivity\legacy\plp\PLPGRP" mrp="common\generic\connectivity\legacy\PLP\plpgrp\connectivity_legacy_plp_plpgrp.mrp"/>
       
  1151             <unit unitID="BRDCST" name="connectivity_legacy_brdcst" bldFile="common\generic\connectivity\legacy\BRDCST\GROUP" mrp="common\generic\connectivity\legacy\brdcst\group\connectivity_legacy_brdcst.mrp"/>
       
  1152           </component>
       
  1153           <component name="Remote File Server">
       
  1154             <unit unitID="CONNECTIVITY" name="connectivity" bldFile="common\generic\CONNECTIVITY\GROUP" mrp="common\generic\connectivity\group\connectivity.mrp"/>
       
  1155           </component>
       
  1156           <component name="Software Install Server">
       
  1157             <!-- Provided by CONNECTIVITY -->
       
  1158           </component>
       
  1159 	      <component name="Secure Backup Engine">
       
  1160             <unit unitID="SECUREBACKUPENGINE" name="connectivity_securebackupengine" bldFile="common\generic\connectivity\SecureBackupEngine\group" mrp="common\generic\connectivity\SecureBackupEngine\group\connectivity_securebackupengine.mrp"/>
       
  1161           </component>
       
  1162           <component name="Secure Backup Socket Server">
       
  1163             <!-- No unit -->
       
  1164           </component>
       
  1165         </module>
       
  1166         <module name="Service Framework" level="framework">
       
  1167           <component name="Service Broker">
       
  1168             <!-- No unit -->
       
  1169           </component>
       
  1170         </module>
       
  1171         <module name="Connectivity PC Side" level="framework">
       
  1172           <component name="ConnectQI">
       
  1173             <package name="connectqisdk_mr3" contract="MRouterSDK"  mrp="common\connectqi\release\connectqisdk_mr3\connectqisdk_mr3.mrp"/>
       
  1174           </component>
       
  1175           <component name="ConnectQI SDK">
       
  1176             <package name="connectqisdk_public" mrp="common\connectqi\release\connectqisdk_public\connectqisdk_public.mrp"/>
       
  1177           </component>
       
  1178         </module>
       
  1179         <module name="Device Connection" level="plugin">
       
  1180           <component name="M-Router">
       
  1181             <unit unitID="MROUTERSECURE" name="mRouterSecure" contract="MRouter"  bldFile="common\generic\connectivity\mRouterSecure\group" mrp="common\generic\connectivity\mRouterSecure\group\mRouterSecure.mrp" filter="gt"/>
       
  1182           </component>
       
  1183           <component name="Bearer Abstraction Layer">
       
  1184             <unit unitID="MROUTER-PLUGIN" name="mRouter-plugin" bldFile="common\generic\connectivity\BAL\Plugins\mRouter3\group" mrp="common\generic\connectivity\BAL\plugins\mRouter3\group\mrouter3-plugin.mrp" filter="gt"/>
       
  1185           </component>
       
  1186           <component name="Server Socket">
       
  1187             <!-- No unit -->
       
  1188           </component>
       
  1189         </module>
       
  1190       </logicalset>
       
  1191     </layer>
       
  1192     <layer name="Application Services" levels="generic specific">
       
  1193       <module name="PIM App Services" level="specific">
       
  1194         <component name="Calendar">
       
  1195           <unit unitID="CALINTERIMAPI" name="app-engines_calinterimapi" bldFile="common\generic\app-engines\calinterimapi\group" mrp="common\generic\app-engines\calinterimapi\group\app-engines_calinterimapi.mrp"/>
       
  1196         </component>
       
  1197         <component name="Agenda Model">
       
  1198           <unit unitID="AGNMODEL" name="app-engines_agnmodel" bldFile="common\generic\APP-ENGINES\AGNMODEL\GROUP" mrp="common\generic\app-engines\agnmodel\group\app-engines_agnmodel.mrp"/>
       
  1199           <unit unitID="AGNMODELTEST" name="app-engines_testagendasrv" bldFile="common\generic\app-engines\test_engineering\AgendaServer\TestAgendaSrv" mrp="common\generic\app-engines\test_engineering\AgendaServer\TestAgendaSrv\app-engines_testagendasrv.mrp"/>
       
  1200         </component>
       
  1201         <component name="Agenda Versit Plugin">
       
  1202           <unit unitID="AGNVERSIT" name="app-engines_agnversit" bldFile="common\generic\APP-ENGINES\AgnVersit\GROUP" mrp="common\generic\app-engines\agnversit\group\app-engines_agnversit.mrp"/>
       
  1203         </component>
       
  1204         <component name="Contacts Model">
       
  1205           <unit unitID="CNTMODEL" name="app-engines_cntmodel" bldFile="common\generic\APP-ENGINES\CNTMODEL\GROUP" mrp="common\generic\app-engines\cntmodel\group\app-engines_cntmodel.mrp"/>
       
  1206         </component>
       
  1207       </module>
       
  1208       <module name="PIM App Support" level="generic">
       
  1209         <component name="vCard and vCal">
       
  1210           <unit unitID="VERSIT" name="app-services_versit" bldFile="common\generic\APP-SERVICES\VERSIT\GROUP" mrp="common\generic\app-services\versit\group\app-services_versit.mrp"/>
       
  1211         </component>
       
  1212         <component name="Alarm Server">
       
  1213           <unit unitID="ALARMSERVER" name="app-services_alarmserver" bldFile="common\generic\APP-SERVICES\AlarmServer\GROUP" mrp="common\generic\app-services\alarmserver\Group\app-services_alarmserver.mrp"/>
       
  1214           <unit unitID="ALARMSERVERTEST" name="app-services_testalarmsrv" bldFile="common\generic\app-services\test_engineering\AlarmServer\TestAlarmSrv" mrp="common\generic\app-services\test_engineering\AlarmServer\TestAlarmSrv\app-services_testalarmsrv.mrp"/>
       
  1215         </component>
       
  1216         <component name="Chinese Calendar Converter">
       
  1217           <unit unitID="CALCON" name="app-services_calcon" bldFile="common\generic\APP-SERVICES\Calcon\GROUP" mrp="common\generic\app-services\calcon\group\app-services_calcon.mrp"/>
       
  1218         </component>
       
  1219         <component name="File Converter Plugins">
       
  1220           <unit unitID="CHTMLTOCRTCONVERTER" name="app-services_chtmltocrtconv" bldFile="common\generic\APP-SERVICES\CHTMLTOCRTCONV\GROUP" mrp="common\generic\app-services\chtmltocrtconv\group\app-services_chtmltocrtconv.mrp"/>
       
  1221           <unit unitID="CONVERT" name="app-engines_convert" bldFile="common\generic\APP-ENGINES\CONVERT\GROUP" mrp="common\generic\app-engines\convert\group\app-engines_convert.mrp"/>
       
  1222           <unit unitID="RICHTEXTTOHTMLCONV" name="app-services_richtexttohtmlconv" bldFile="common\generic\APP-SERVICES\RICHTEXTTOHTMLCONV\GROUP" mrp="common\generic\app-services\richtexttohtmlconv\Group\app-services_richtexttohtmlconv.mrp"/>
       
  1223         </component>
       
  1224         <component name="Backup Restore Notification">
       
  1225           <unit unitID="BACKUPRESTORENOTIFICATION" name="app-services_BackupRestoreNotification" bldFile="common\generic\APP-SERVICES\BACKUPRESTORENOTIFICATION\GROUP" mrp="common\generic\app-services\backuprestorenotification\Group\app-services_backuprestorenotification.mrp"/>
       
  1226         </component>
       
  1227       </module>
       
  1228       <module name="Text Rendering" level="generic">      
       
  1229         <component name="Text Handling">
       
  1230           <unit unitID="ETEXT" name="app-framework_etext" bldFile="common\generic\APP-FRAMEWORK\ETEXT\GROUP" mrp="common\generic\app-framework\etext\group\app-framework_etext.mrp"/>
       
  1231         </component>
       
  1232         <component name="Text Formatting">
       
  1233           <unit unitID="FORM" name="app-framework_form" bldFile="common\generic\APP-FRAMEWORK\FORM\GROUP" mrp="common\generic\app-framework\form\group\app-framework_form.mrp"/>
       
  1234         </component>              
       
  1235       </module>
       
  1236       <module name="Office App Engines" level="specific">
       
  1237         <component name="Data Engine">
       
  1238           <unit unitID="DAMODEL" name="app-engines_damodel" bldFile="common\generic\APP-ENGINES\DAMODEL\GROUP" mrp="common\generic\app-engines\damodel\group\app-engines_damodel.mrp"/>
       
  1239         </component>
       
  1240         <component name="Sheet Engine">
       
  1241           <unit unitID="SHENG" name="app-engines_sheng" bldFile="common\generic\APP-ENGINES\SHENG\GROUP" mrp="common\generic\app-engines\sheng\group\app-engines_sheng.mrp"/>
       
  1242           <package name="app-engines_chart" mrp="common\generic\app-engines\chart\group\app-engines_chart.mrp"/>
       
  1243         </component>
       
  1244         <component name="Word Engine">
       
  1245           <unit unitID="WPENG" name="app-engines_wpeng" bldFile="common\generic\APP-ENGINES\WPENG\GROUP" mrp="common\generic\app-engines\wpeng\group\app-engines_wpeng.mrp"/>
       
  1246         </component>
       
  1247       </module>
       
  1248       <module name="Other App Services" level="specific">
       
  1249         <component name="Help">
       
  1250           <unit unitID="HLPMODEL" name="app-services_hlpmodel" bldFile="common\generic\APP-SERVICES\HLPMODEL\GROUP" mrp="common\generic\app-services\hlpmodel\group\app-services_hlpmodel.mrp"/>
       
  1251         </component>
       
  1252         <component name="World Server">
       
  1253           <unit unitID="WORLDSERVER" name="app-services_worldserver" bldFile="common\generic\APP-SERVICES\WorldServer\GROUP" mrp="common\generic\app-services\worldserver\group\app-services_worldserver.mrp"/>
       
  1254           <unit unitID="WORLDSERVERTEST" name="app-services_testworldsrv" bldFile="common\generic\app-services\test_engineering\WorldServer\TestWorldSrv" mrp="common\generic\app-services\test_engineering\WorldServer\TestWorldSrv\app-services_testworldsrv.mrp"/>
       
  1255         </component>
       
  1256         <component name="Timezone">
       
  1257           <unit unitID="TZ" name="app-services_tz" bldFile="common\generic\APP-SERVICES\tz\GROUP" mrp="common\generic\app-services\tz\group\app-services_tz.mrp"/> 
       
  1258           <unit unitID="TIMEZONELOCALIZATION" name="app-services_timezonelocalization" bldFile="common\generic\APP-SERVICES\TimeZoneLocalization\GROUP" mrp="common\generic\app-services\TimeZoneLocalization\group\app-services_timezonelocalization.mrp"/>
       
  1259           <unit unitID="TZLOCALIZATIONRSCFACTORY" name="app-services_tzlocalizationrscfactory" bldFile="common\generic\APP-SERVICES\TzLocalizationRscFactory\GROUP" mrp="common\generic\app-services\TzLocalizationRscFactory\group\app-services_tzlocalizationrscfactory.mrp"/>
       
  1260           <unit unitID="TZCOMPILER" name="app-services_tzcompiler" bldFile="common\generic\APP-SERVICES\tzcompiler\GROUP" mrp="common\generic\app-services\tzcompiler\group\app-services_tzcompiler.mrp"/> 
       
  1261           <unit unitID="TZDB" name="app-services_tzdb" bldFile="common\generic\APP-SERVICES\tzdb\GROUP" mrp="common\generic\app-services\tzdb\group\app-services_tzdb.mrp"/> 
       
  1262         </component>	
       
  1263         
       
  1264       </module>
       
  1265       <module name="Messaging App Support" level="generic">
       
  1266         <component name="Message Store">
       
  1267           <unit unitID="MSG_FRAMEWORK" name="messaging_framework" bldFile="common\generic\messaging\framework\group" mrp="common\generic\messaging\framework\group\messaging_framework.mrp"/>
       
  1268         </component>
       
  1269         <component name="BIO Messaging Framework">
       
  1270           <unit unitID="MSG_BIOMSG" name="messaging_biomsg" bldFile="common\generic\messaging\biomsg\group" mrp="common\generic\messaging\biomsg\group\messaging_biomsg.mrp"/>
       
  1271         </component>
       
  1272           <component name="BIO Watchers">
       
  1273             <unit unitID="MSG_BIOWATCHERSCDMA" name="messaging_biomsg_biowatchers_cdma" bldFile="common\generic\messaging\biomsg\biowatcherscdma\group" mrp="common\generic\messaging\biomsg\BioWatchersCdma\group\messaging_biomsg_biowatchers_cdma.mrp"/>
       
  1274           </component>
       
  1275         <component name="Scheduled Send MTM">
       
  1276           <unit unitID="MSG_SCHEDULEDSEND" name="messaging_schedulesend" bldFile="common\generic\messaging\schedulesend\group" mrp="common\generic\messaging\schedulesend\group\messaging_schedulesend.mrp"/>
       
  1277         </component>
       
  1278         <component name="POP3 MTM">
       
  1279           <unit unitID="MSG_EMAIL" name="messaging_email" bldFile="common\generic\messaging\email\group" mrp="common\generic\messaging\email\group\messaging_email.mrp"/>
       
  1280         </component>
       
  1281         <component name="IMAP4 MTM">
       
  1282           <unit unitID="MSG_IMAP" name="messaging_email_imap" bldFile="common\generic\messaging\email\imap\group" mrp="common\generic\messaging\email\imap\group\messaging_email_imap.mrp"/>
       
  1283         </component>
       
  1284         <component name="SMTP MTM">
       
  1285           <!-- Built by MSG_EMAIL -->
       
  1286         </component>
       
  1287         <component name="OBEX MTMs">
       
  1288           <unit unitID="MSG_OBEXMTM" name="messaging_obex" bldFile="common\generic\messaging\obex\group" mrp="common\generic\messaging\obex\Group\messaging_obex.mrp"/>
       
  1289         </component>
       
  1290         <component name="SMS MTM">
       
  1291           <unit unitID="MSG_SMS8.1" name="messaging_sms_multimode" bldFile="common\generic\messaging\sms\multimode\group" mrp="common\generic\messaging\sms\multimode\group\messaging_sms_multimode.mrp"/>
       
  1292         </component>
       
  1293         <component name="CDMA MTM">
       
  1294               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1295         </component>
       
  1296         <component name="MMS Settings">
       
  1297           <unit unitID="MSG_MMS_SETTINGS" name="messaging_mmssettings" bldFile="common\generic\messaging\mmssettings\group\" mrp="common\generic\messaging\mmssettings\group\messaging_mmssettings.mrp"/>
       
  1298           <package name="messaging_mmssettings-config" mrp="common\generic\messaging\mmssettings\group\messaging_mmssettings-config.mrp" />
       
  1299         </component>
       
  1300         <component name="MMS MTM">
       
  1301               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1302         </component>
       
  1303       </module>
       
  1304       <module name="Content Handling" level="specific">
       
  1305         <component name="SMIL Parser">
       
  1306             <unit unitID="MSG_GMXML" name="messaging_gmxml" bldFile="common\generic\messaging\gmxml\group" mrp="common\generic\messaging\GMXML\GROUP\messaging_gmxml.mrp"/>
       
  1307         </component>
       
  1308         <component name="MIME Recognition Framework">
       
  1309           <unit unitID="EMIME" name="app-framework_emime" bldFile="common\generic\APP-FRAMEWORK\EMIME\GROUP" mrp="common\generic\app-framework\emime\group\app-framework_emime.mrp"/>
       
  1310         </component>
       
  1311         <component name="WAP Push Handlers">
       
  1312           <unit unitID="WAPPUSHSUPPORT" name="wap-browser_wappushsupport" bldFile="common\generic\WAP-BROWSER\WAPPUSHSUPPORT\GROUP" mrp="common\generic\wap-browser\WapPushSupport\Group\wap-browser_wappushsupport.mrp"/>
       
  1313         </component>
       
  1314         <component name="Web Recognisers">
       
  1315           <unit unitID="RECOGNISERS" name="application-protocols_recognisers" bldFile="common\generic\APPLICATION-PROTOCOLS\RECOGNISERS\GROUP" mrp="common\generic\application-protocols\recognisers\group\application-protocols_recognisers.mrp"/>
       
  1316         </component>
       
  1317         <component name="Content Access Framework for DRM">
       
  1318           <unit unitID="CAF2" name="syslibs_caf2" bldFile="common\generic\syslibs\CAF2\GROUP" mrp="common\generic\syslibs\caf2\group\syslibs_caf2.mrp"/>
       
  1319           <unit unitID="CAF2CONFIG" name="syslibs_reccafconfig" bldFile="common\generic\syslibs\caf2\reccafconfig" mrp="common\generic\syslibs\caf2\reccafconfig\syslibs_reccafconfig.mrp"/>
       
  1320         </component>
       
  1321         <component name="Reference DRM Agent">
       
  1322           <unit unitID="DRMAGENT" name="syslibs_rta" bldFile="common\generic\syslibs\caf2\test\RefTestAgent\group" mrp="common\generic\syslibs\caf2\test\RefTestAgent\group\syslibs_rta.mrp"/>
       
  1323         </component>        
       
  1324         <component name="MMF Recognisers">
       
  1325           <!-- No Unit -->
       
  1326         </component>
       
  1327         <component name="BIO Messaging Parsers">
       
  1328               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1329         </component>
       
  1330       </module>
       
  1331       <module name="Data Sync Services" level="specific">
       
  1332         <component name="Sync Initiation">
       
  1333           <!-- No Unit -->
       
  1334         </component>
       
  1335         <component name="OMA SyncML Framework">
       
  1336           <unit unitID="SYNCMLCLIENT" name="SyncML" bldFile="common\generic\SyncML\Framework\Group" mrp="common\generic\SyncML\Framework\group\syncml_framework.mrp"/>
       
  1337 		  <unit unitID="SYNCMLINTEGTEST" name="SyncML_IntegTest" bldFile="common\generic\SyncML\IntegTest\Group" mrp="common\generic\SyncML\IntegTest\group\syncml_integtest.mrp"/>
       
  1338         </component>
       
  1339         <component name="OMA SyncML DM Interface">
       
  1340           <unit unitID="SYNCMLDMCLIENT" name="SyncML_DM" bldFile="common\generic\SyncML\DevMan\Group" mrp="common\generic\SyncML\DevMan\group\syncml_dm_interface.mrp"/>
       
  1341         </component>
       
  1342         <component name="OMA Data Sync">
       
  1343           <unit unitID="SYNCMLDSCLIENT" name="SyncML_DS" bldFile="common\generic\SyncML\DataSync\Group" mrp="common\generic\SyncML\DataSync\group\oma_data_sync.mrp"/>
       
  1344         </component>
       
  1345         <component name="Mobile Active Sync">
       
  1346           <prebuilt name="MAS" version="M04092_Symbian_OS" contract="Symbian_MAS_ISC"/>
       
  1347           <package name ="MAS" mrp="common\generic\tools\cbr\mrpfiles\mas.mrp"/>
       
  1348         </component>
       
  1349       </module>
       
  1350       <module name="Device Provisioning" level="specific">
       
  1351         <component name="Device Management Framework">
       
  1352           <unit unitID="DEVPROV_DEVMAN_FRAMEWORK" name="devprov_devman_framework" bldFile="common\generic\DEVPROV\DevMan\Group" mrp="common\generic\DEVPROV\DevMan\Group\devprov_devman_framework.mrp"/>
       
  1353 		  <unit unitID="DEVPROV_INTEGTEST" name="devprov_integtest" bldFile="common\generic\DEVPROV\IntegTest\Group" mrp="common\generic\DEVPROV\IntegTest\Group\devprov_integtest.mrp"/>
       
  1354         </component>
       
  1355         <component name="Device Management Adaptors">
       
  1356           <unit unitID="DEVPROV_DEVMAN_ADAPTERS" name="devprov_devman_adapters" bldFile="common\generic\DEVPROV\Adapters\DevMan\Group" mrp="common\generic\DEVPROV\Adapters\DevMan\Group\devprov_devman_adapters.mrp"/>
       
  1357         </component>
       
  1358       </module>
       
  1359       <module name="Client Provisioning" level="specific">
       
  1360         <component name="Client Provisioning Framework">
       
  1361           <unit unitID="DEVPROV_CLIENTPROV_FRAMEWORK" name="devprov_clientprov_framework" bldFile="common\generic\DEVPROV\ClientProv\Group" mrp="common\generic\DEVPROV\ClientProv\Group\devprov_clientprov_framework.mrp"/>
       
  1362         </component>
       
  1363         <component name="Client Provisioning Adaptors">
       
  1364           <unit unitID="DEVPROV_CLIENTPROV_ADAPTERS" name="devprov_clientprov_adapters" bldFile="common\generic\DEVPROV\Adapters\ClientProv\Group" mrp="common\generic\DEVPROV\Adapters\ClientProv\Group\devprov_clientprov_adapters.mrp"/>
       
  1365         </component>
       
  1366       </module>
       
  1367       <module name="Internet and Web Application Support" level="generic">
       
  1368         <component name="Bookmark Support">
       
  1369           <unit unitID="BOOKMARK_SUPPORT" name="application-protocols_bookmarks" bldFile="common\generic\application-protocols\bookmarks\group" mrp="common\generic\application-protocols\bookmarks\group\application-protocols_bookmarks.mrp"/>
       
  1370         </component>
       
  1371         <component name="WAP Push Framework">
       
  1372           <unit unitID="WAPPUSH" name="wap-browser_wappush" bldFile="common\generic\WAP-BROWSER\WAPPUSH\GROUP" mrp="common\generic\wap-browser\wappush\group\wap-browser_wappush.mrp"/>
       
  1373         </component>
       
  1374         <component name="WAP Push MTM">
       
  1375           <!-- No Unit -->
       
  1376         </component>
       
  1377         <component name="HTTP Transport Framework">
       
  1378           <unit unitID="HTTP" name="application-protocols_http" bldFile="common\generic\APPLICATION-PROTOCOLS\HTTP\GROUP" mrp="common\generic\application-protocols\http\group\application-protocols_http.mrp" priority="10"/>
       
  1379         </component>
       
  1380         <component name="HTTP Protocol Plugins">
       
  1381           <!-- Built by HTTP -->
       
  1382         </component>
       
  1383         <component name="HTTP Filter Plugins">
       
  1384           <!-- Built by HTTP -->
       
  1385         </component>
       
  1386         <component name="HTTP Utilities Library">
       
  1387           <unit unitID="INETPROTUTIL" name="application-protocols_inetprotutil" bldFile="common\generic\APPLICATION-PROTOCOLS\INETPROTUTIL\GROUP" mrp="common\generic\application-protocols\inetprotutil\group\application-protocols_inetprotutil.mrp"/>
       
  1388         </component>
       
  1389         <component name="FTP Engine">
       
  1390           <unit unitID="FTP" name="networking_ftp_e" bldFile="common\generic\NETWORKING\ftp_e\group" mrp="common\generic\networking\ftp_e\group\networking_ftp_e.mrp"/>
       
  1391         </component>
       
  1392         <component name="Telnet Engine">
       
  1393           <unit unitID="TELNET_E" name="networking_telnet_e" bldFile="common\generic\NETWORKING\TELNET_E\GROUP" mrp="common\generic\networking\telnet_e\group\networking_telnet_e.mrp"/>
       
  1394         </component>
       
  1395       </module>
       
  1396       <module name="Application Launch Services" level="generic">
       
  1397         <component name="System Starter">
       
  1398           <unit unitID="SYSSTART" name="app-framework_sysstart" bldFile="common\generic\app-framework\sysstart\group" mrp="common\generic\app-framework\sysstart\group\app-framework_sysstart.mrp"/>
       
  1399         </component>
       
  1400       </module>
       
  1401       <module name="Application Framework" level="specific">
       
  1402         <component name="Secure Software Install">
       
  1403           <unit unitID="SECURESOFTWAREINSTALL" name="security_swi" bldFile="common\generic\SECURITY\SWI\GROUP" mrp="common\generic\security\swi\group\security_swi.mrp"/>
       
  1404           <package name="security_openssl" mrp="common\generic\security\openssl\security_openssl.mrp"/>
       
  1405         </component>
       
  1406         <component name="SIS Installer">
       
  1407           <unit unitID="SISINSTALLER" name="security_sisinstaller" bldFile="common\generic\SECURITY\SISInstaller\Group" mrp="common\generic\security\SISInstaller\group\security_sisinstaller.mrp"/>
       
  1408         </component>
       
  1409         <component name="Java MIDlet Installer">
       
  1410           <unit unitID="JAVAMIDLETINSTALLER" name="security_javaMIDletInstaller" bldFile="common\generic\SECURITY\JavaMIDletInstaller\Group" mrp="common\generic\security\JavaMIDletInstaller\group\security_javamidletinstaller.mrp"/>
       
  1411         </component>
       
  1412         <component name="Application Architecture">
       
  1413           <unit unitID="APPARC" name="app-framework_apparc" bldFile="common\generic\APP-FRAMEWORK\APPARC\GROUP" mrp="common\generic\app-framework\apparc\group\app-framework_apparc.mrp"/>
       
  1414         </component>
       
  1415         <component name="View Server">
       
  1416           <unit unitID="VIEWSRV" name="app-framework_viewsrv" bldFile="common\generic\APP-FRAMEWORK\VIEWSRV\GROUP" mrp="common\generic\app-framework\viewsrv\group\app-framework_viewsrv.mrp"/>
       
  1417         </component>
       
  1418         <component name="File Converter Framework">
       
  1419           <unit unitID="CONARC" name="app-framework_conarc" bldFile="common\generic\APP-FRAMEWORK\CONARC\GROUP" mrp="common\generic\app-framework\conarc\group\app-framework_conarc.mrp"/>
       
  1420         </component>
       
  1421         <component name="Content Handling Framework">
       
  1422           <unit unitID="CONTENT_HANDLING" name="Content-Handling" bldFile="common\generic\Content-Handling\GROUP" mrp="common\generic\Content-Handling\Group\content-handling.mrp"/>
       
  1423         </component>
       
  1424       </module>
       
  1425       <module name="Printing Support" level="generic">
       
  1426         <component name="Printing Services">
       
  1427           <unit unitID="PRINT" name="app-framework_print" bldFile="common\generic\APP-FRAMEWORK\PRINT\GROUP" mrp="common\generic\app-framework\print\group\app-framework_print.mrp"/>
       
  1428         </component>
       
  1429       </module>
       
  1430       <module name="Multimedia Protocols" level="generic">
       
  1431 	<!-- Only in 9.x -->
       
  1432       	<component name="RTP">
       
  1433 	  <!-- Real Time Data Protocol -->
       
  1434       	  <unit unitID="RTP" name="mm-protocols_rtp" bldFile="common\generic\mm-protocols\rtp\group" mrp="common\generic\mm-protocols\rtp\group\mm-protocols_rtp.mrp"/>
       
  1435       	</component>
       
  1436       	<component name="SIP Framework">
       
  1437           <unit unitID="SIP_COM" name="mm-protocols_sip_com" contract="SIP_Stack"  bldFile="common\generic\mm-protocols\sip\group" mrp="common\generic\mm-protocols\sip\group\mm-protocols_sip_com.mrp"/>
       
  1438         </component>
       
  1439  	<component name="SIP Connection Provider Plugins">
       
  1440             <unit unitID="SIPCPR" name="mm-protocols_SIPCPR" bldFile="common\generic\mm-protocols\ConnProv\SIPCPR\group" mrp="common\generic\mm-protocols\ConnProv\SIPCPR\group\mm-protocols_SIPCPR.mrp"/>
       
  1441             <unit unitID="SIPDUMMYPRT" name="mm-protocols_SIPDummyPRT" bldFile="common\generic\mm-protocols\SipProvEngine\SIPDummyPRT\group" mrp="common\generic\mm-protocols\SipProvEngine\SIPDummyPRT\group\mm-protocols_SIPDummyPRT.mrp"/>
       
  1442             <unit unitID="SIPSTATEMACHINE" name="mm-protocols_SipStateMachine" bldFile="common\generic\mm-protocols\SipProvEngine\SipStateMachine\group" mrp="common\generic\mm-protocols\SipProvEngine\SipStateMachine\group\mm-protocols_SipStateMachine.mrp"/>
       
  1443             <unit unitID="SIPPARAMS" name="mm-protocols_SIPParams" bldFile="common\generic\mm-protocols\SubConnProv\SIPParams\group" mrp="common\generic\mm-protocols\SubConnProv\SIPParams\group\mm-protocols_SIPParams.mrp"/>
       
  1444             <unit unitID="SIPSCPR" name="mm-protocols_SIPSCPR" bldFile="common\generic\mm-protocols\SubConnProv\SIPSCPR\group" mrp="common\generic\mm-protocols\SubConnProv\SIPSCPR\group\mm-protocols_SIPSCPR.mrp"/>                  
       
  1445          </component>
       
  1446       </module>
       
  1447       <module name="Location Based Services" level="generic">
       
  1448       	<component name="Location Based Services">
       
  1449           <unit unitID="LOCATIONFRAMEWORK" name="lbs_locationframework" contract="LBS" bldFile="common\generic\lbs\group" mrp="common\generic\lbs\group\lbs_locationframework.mrp"/>
       
  1450           <unit unitID="LBSDATASOURCEPLUGINS" name="lbs_datasourceplugins" bldFile="common\generic\lbs\LbsLocDataSourcePlugins\group" mrp="common\generic\lbs\LbsLocDataSourcePlugins\group\lbs_datasourceplugins.mrp"/>
       
  1451           <unit unitID="LBSNETWORKTEST" name="lbs_networktest" bldFile="common\generic\lbs\LbsNetworkTest\group" mrp="common\generic\lbs\LbsNetworkTest\group\lbs_networktest.mrp"/>
       
  1452       	</component>
       
  1453       </module>
       
  1454     </layer>
       
  1455     <layer name="UI Framework" align="right">
       
  1456       <module name="UI Toolkit">
       
  1457       	<component name="Graphics Effects">
       
  1458 	  <unit unitID="GFXTRANSEFFECT" name="app-framework_gfxtranseffect" bldFile="common\generic\app-framework\gfxtranseffect\group" mrp="common\generic\app-framework\gfxtranseffect\group\app-framework_gfxtranseffect.mrp"/>
       
  1459         </component> 
       
  1460         <component name="UI Graphics Utilities">
       
  1461           <unit unitID="EGUL" name="app-framework_egul" bldFile="common\generic\APP-FRAMEWORK\EGUL\GROUP" mrp="common\generic\app-framework\egul\group\app-framework_egul.mrp"/>
       
  1462           <unit unitID="NUMBERCONVERSION" name="app-framework_numberconversion" bldFile="common\generic\APP-FRAMEWORK\NumberConversion\group" mrp="common\generic\app-framework\numberconversion\group\app-framework_numberconversion.mrp"/>
       
  1463         </component>
       
  1464         <component name="Grid">
       
  1465           <unit unitID="GRID" name="app-framework_grid" bldFile="common\generic\APP-FRAMEWORK\GRID\GROUP" mrp="common\generic\app-framework\grid\group\app-framework_grid.mrp"/>
       
  1466         </component>
       
  1467         <component name="Clock">
       
  1468           <unit unitID="CLOCK" name="app-framework_clock" bldFile="common\generic\APP-FRAMEWORK\CLOCK\GROUP" mrp="common\generic\app-framework\clock\group\app-framework_clock.mrp"/>
       
  1469         </component>
       
  1470         <component name="BMP Animation">
       
  1471           <unit unitID="BMPANIM" name="app-framework_bmpanim" bldFile="common\generic\APP-FRAMEWORK\BmpAnim\GROUP" mrp="common\generic\app-framework\bmpanim\group\app-framework_bmpanim.mrp"/>
       
  1472         </component>
       
  1473         <component name="Animation">
       
  1474           <unit unitID="ANIMATION" name="app-framework_animation" bldFile="common\generic\APP-FRAMEWORK\animation\group" mrp="common\generic\app-framework\animation\group\app-framework_animation.mrp"/>
       
  1475         </component>
       
  1476       </module>
       
  1477       <module name="UI Application Framework">
       
  1478         <component name="UIKON">
       
  1479           <unit unitID="UIKON" name="app-framework_uikon" bldFile="common\generic\APP-FRAMEWORK\UIKON\GROUP" mrp="common\generic\app-framework\uikon\group\app-framework_uikon.mrp"/>
       
  1480         </component>
       
  1481         <component name="UIKON Error Resolver Plugin">
       
  1482               <!-- unit unitID="" name="" bldFile="" mrp="" -->
       
  1483         </component>
       
  1484         <component name="UI Look and Feel">
       
  1485           <unit unitID="UIKLAFGT" name="app-framework_uiklafgt" bldFile="common\generic\APP-FRAMEWORK\UIKLAFGT\GROUP" mrp="common\generic\app-framework\uiklafGT\GROUP\app-framework_uiklafgt.mrp"/>
       
  1486         </component>
       
  1487         <component name="Control Environment">
       
  1488           <unit unitID="CONE" name="app-framework_cone" bldFile="common\generic\APP-FRAMEWORK\CONE\GROUP" mrp="common\generic\app-framework\cone\group\app-framework_cone.mrp"/>
       
  1489         </component>
       
  1490         <component name="FEP Base">
       
  1491           <unit unitID="FEPBASE" name="app-framework_fepbase" bldFile="common\generic\APP-FRAMEWORK\Fepbase\GROUP" mrp="common\generic\app-framework\fepbase\group\app-framework_fepbase.mrp"/>
       
  1492           <package name="app-framework_feptest" mrp="common\generic\app-framework\feptest\group\app-framework_feptest.mrp"/>
       
  1493         </component>
       
  1494       </module>
       
  1495     </layer>
       
  1496     <layer name="Programming Support" levels="config package profile" span="2">
       
  1497       <logicalset name="Java J2ME">
       
  1498         <module name="MIDP 2.0 Profile" level="profile">
       
  1499           <component name="MIDP LCDUI">
       
  1500             <!-- Built By J2ME -->
       
  1501           </component>
       
  1502           <component name="MIDP RMS">
       
  1503             <!-- Built By J2ME -->
       
  1504           </component>
       
  1505           <component name="MIDP MIDlet">
       
  1506             <unit unitID="MIDP2INSTALLER_9.2"  name="MIDP2INSTALLER" contract="Java_J2ME"  bldFile="common\generic\j2me\systemamsV1_5" mrp="common\generic\j2me\group\9.2\generic_j2me_92.mrp" filter="!java"/>
       
  1507           </component>
       
  1508           <component name="MIDP IO">
       
  1509             <!-- Built By J2ME -->
       
  1510           </component>
       
  1511           <component name="MIDP Device Control">
       
  1512             <!-- Built By J2ME -->
       
  1513           </component>
       
  1514           <component name="Security Policy">
       
  1515             <!-- Built By J2ME -->
       
  1516           </component>
       
  1517           <component name="MIDP GSM Security RP">
       
  1518             <!-- Built By J2ME -->
       
  1519           </component>
       
  1520         </module>
       
  1521         <module name="MIDP 2.0 Packages" level="package">
       
  1522           <component name="MIDP File GCF">
       
  1523             <!-- Built By J2ME -->
       
  1524           </component>
       
  1525           <component name="Mobile Media API 1.1">
       
  1526             <!-- Built By J2ME -->
       
  1527           </component>
       
  1528           <component name="Mobile 3D 1.0">
       
  1529             <!-- Built By J2ME -->
       
  1530           </component>
       
  1531           <component name="JTWI 1.0">
       
  1532             <unit unitID="J2ME9.2" name="techview_j2me_92" contract="Java_J2ME"  bldFile="common\generic\j2me\group\9.2" mrp="common\generic\j2me\group\9.2\techview_j2me_92.mrp" filter="java"/>
       
  1533             <package name="techview_j2me_midp2" mrp="common\generic\j2me\group\techview_j2me_midp2.mrp" filter="java"/>
       
  1534           </component>
       
  1535           <component name="MIDP PIM">
       
  1536             <!-- Built By J2ME -->
       
  1537           </component>
       
  1538           <component name="Bluetooth 1.0">
       
  1539             <!-- Built By J2ME -->
       
  1540           </component>
       
  1541           <component name="WMA 1.1">
       
  1542             <!-- Built By J2ME -->
       
  1543           </component>
       
  1544         </module>
       
  1545         <module name="CLDC 1.1" level="config">
       
  1546           <component name="Java IO">
       
  1547             <!-- Built By J2ME -->
       
  1548           </component>
       
  1549           <component name="Java Lang">
       
  1550             <!-- Built By J2ME -->
       
  1551           </component>
       
  1552           <component name="Java Utilities">
       
  1553             <!-- Built By J2ME -->
       
  1554           </component>
       
  1555         </module>
       
  1556         <module name="Bluetooth and SMS Push" level="config">
       
  1557           <component name="Bluetooth 1.0">
       
  1558             <!-- Built By J2ME -->
       
  1559           </component>
       
  1560           <component name="WMA 1.1">
       
  1561             <!-- Built By J2ME -->
       
  1562           </component>
       
  1563         </module>
       
  1564         <module name="Low Level Plugins" level="config">
       
  1565           <component name="LCDUI Plugin">
       
  1566             <!-- Built By J2ME -->
       
  1567           </component>
       
  1568           <component name="Runtime Plugin">
       
  1569             <!-- Built By J2ME -->
       
  1570           </component>
       
  1571         </module>
       
  1572         <module name="Virtual Machine" level="package">
       
  1573           <component name="CLDC Hi 1.1">
       
  1574             <!-- Built By J2ME -->
       
  1575           </component>
       
  1576         </module>
       
  1577       </logicalset>
       
  1578     </layer>
       
  1579     <layer name="UI">
       
  1580       <logicalset name="Techview">
       
  1581         <module name="Apps">
       
  1582           <component name="Simple App">
       
  1583             <unit unitID="SIMPLEAPP" name="techview_simpleapp" bldFile="common\Techview\Apps\SimpleApp\group" mrp="common\Techview\Apps\SimpleApp\group\techview_simpleapp.mrp" filter="techview"/>
       
  1584           </component>
       
  1585           <component name="CONTACUI">
       
  1586             <unit unitID="CONTACUI" name="techview_contacui" bldFile="common\techview\APPS\CONTACUI\GROUP" mrp="common\techview\Apps\contacui\group\techview_contacui.mrp" filter="techview" priority="30"/>
       
  1587           </component>
       
  1588           <component name="AGENDA">
       
  1589             <unit unitID="AGENDA" name="techview_agenda" bldFile="common\techview\APPS\AGENDA\GROUP" mrp="common\techview\Apps\agenda\group\techview_agenda.mrp" filter="techview"/>
       
  1590           </component>
       
  1591           <component name="AUDIO">
       
  1592             <unit unitID="AUDIO" name="techview_audio" bldFile="common\techview\APPS\AUDIO\GROUP" mrp="common\techview\Apps\Audio\group\techview_audio.mrp" filter="techview"/>
       
  1593           </component>
       
  1594           <component name="CONTACTS">
       
  1595             <unit unitID="CONTACTS" name="techview_contacts" bldFile="common\techview\APPS\CONTACTS\GROUP" mrp="common\techview\Apps\contacts\group\techview_contacts.mrp" filter="techview"/>
       
  1596           </component>
       
  1597           <component name="SYNCMLAPP">
       
  1598             <unit unitID="SYNCMLAPP" name="techview_syncmlapp" bldFile="common\techview\APPS\SYNCMLAPP\GROUP" mrp="common\techview\Apps\syncMLApp\group\techview_syncmlapp.mrp" filter="techview"/>
       
  1599           </component>
       
  1600           <component name="Techview Mobile Active Sync ">
       
  1601             <prebuilt name="techview_mas" version="M04092_Symbian_OS" contract="Symbian_MAS_ISC"/>
       
  1602             <package name ="techview_mas" mrp="common\generic\tools\cbr\mrpfiles\techview_mas.mrp" filter="techview"/>
       
  1603           </component>
       
  1604           <component name="HELP">
       
  1605             <unit unitID="HELP" name="techview_help" bldFile="common\techview\APPS\HELP\GROUP" mrp="common\techview\Apps\help\group\techview_help.mrp" filter="techview"/>
       
  1606           </component>
       
  1607           <component name="TIMEW">
       
  1608             <unit unitID="TIMEW" name="techview_timew" bldFile="common\techview\APPS\TIMEW\GROUP" mrp="common\techview\Apps\timew\group\techview_timew.mrp" filter="techview"/>
       
  1609           </component>
       
  1610           <component name="SECUI">
       
  1611             <unit unitID="SECUI" name="techview_secui" bldFile="common\techview\APPS\SECUI\GROUP" mrp="common\techview\Apps\secui\group\techview_secui.mrp" filter="techview"/>
       
  1612           </component>
       
  1613           <component name="BLUETOOTHUI">
       
  1614             <unit unitID="BLUETOOTHUI" name="techview_bluetoothui" bldFile="common\techview\COMMSUI\BLUETOOTHUI\GROUP" mrp="common\techview\CommsUI\bluetoothui\group\techview_bluetoothui.mrp" filter="techview"/>
       
  1615             <unit unitID="REFTSP" name="bluetooth_remotecontrol_refTSP" bldFile="common\generic\bluetooth\latest\bluetooth\remotecontrol\reference\refTSP\group" mrp="common\generic\bluetooth\latest\bluetooth\remotecontrol\reference\refTSP\group\bluetooth_remotecontrol_refTSP.mrp" filter="techview"/>
       
  1616           </component>
       
  1617           <component name="PHONEUI">
       
  1618             <unit unitID="PHONEUI" name="techview_phoneui" bldFile="common\techview\COMMSUI\PHONEUI\GROUP" mrp="common\techview\CommsUI\PhoneUi\group\techview_phoneui.mrp" filter="techview"/>
       
  1619           </component>
       
  1620           <component name="IAPSTATUSAPP">
       
  1621             <unit unitID="IAPSTATUSAPP" name="techview_iapstatusapp" bldFile="common\techview\COMMSUI\IAPSTATUSAPP\GROUP" mrp="common\techview\CommsUI\IAPStatusApp\group\techview_iapstatusapp.mrp" filter="techview"/>
       
  1622           </component>
       
  1623           <component name="CONNECTUI">
       
  1624             <unit unitID="CONNECTUI" name="techview_connectui" bldFile="common\techview\commsui\connectui\group" mrp="common\techview\CommsUI\ConnectUI\group\techview_connectui.mrp" filter="techview"/>
       
  1625           </component>
       
  1626           <component name="USBUI">
       
  1627             <unit unitID="USBUI" name="techview_UsbUi" bldFile="common\techview\CommsUI\UsbUi\group" mrp="common\techview\commsui\UsbUi\group\techview_UsbUi.mrp" filter="techview"/>
       
  1628           </component>
       
  1629           <component name="MESSAGINGUI">
       
  1630             <unit unitID="MESSAGINGUI" name="techview_messagingui" bldFile="common\techview\MESSAGINGUI\GROUP" mrp="common\techview\MessagingUi\Group\techview_messagingui.mrp" filter="techview"/>
       
  1631           </component>
       
  1632           <component name="AGENTNOTIFIER">
       
  1633             <unit unitID="AGENTNOTIFIER" name="techview_networking_agentnotifier" contract="TCPIP_v4-v6_PRT"  bldFile="common\techview\networking\agentnotifier\group" mrp="common\techview\networking\agentnotifier\group\techview_networking_agentnotifier.mrp" filter="techview"/>
       
  1634           </component>
       
  1635           <component name="VPNUI">
       
  1636             <unit unitID="VPNUIV2" name="techview_networking_vpnui" contract="TCPIP_v4-v6_PRT"  bldFile="common\techview\networking\vpnui\version2\group" mrp="common\techview\networking\vpnui\version2\group\techview_networking_vpnui.mrp" filter="techview"/>
       
  1637           </component>
       
  1638           <component name="STAT_DEVICE">
       
  1639             <unit unitID="STAT_DEVICE" name="testtools_stat_device_techview" bldFile="common\testtools\stat\device\source\statapi\techview" mrp="common\testtools\stat\device\group\testtools_stat_device_techview.mrp" filter="techview"/>
       
  1640           </component>
       
  1641           <component name="RESOURCE_HANDLER_UI">
       
  1642             <unit unitID="RESOURCE_HANDLER" name="Testtools_ResourceHandler_Techview" bldFile="common\testtools\ResourceHandler\TVResourceHandler\group" mrp="common\testtools\ResourceHandler\TVResourceHandler\group\Testtools_ResourceHandler_techview.mrp" filter="techview"/>
       
  1643           </component>
       
  1644         </module>
       
  1645         <module name="Toolkit">
       
  1646           <component name="UIKLAF">
       
  1647             <unit unitID="UIKLAF" name="techview_uiklaf" bldFile="common\techview\TOOLKIT\UIKLAF\GROUP" mrp="common\techview\toolkit\uiklaf\GROUP\techview_uiklaf.mrp" filter="techview" priority="10"/>
       
  1648           </component>
       
  1649           <component name="EIKSTD">
       
  1650             <unit unitID="EIKSTD" name="techview_eikstd" bldFile="common\techview\TOOLKIT\EIKSTD\GROUP" mrp="common\techview\toolkit\eikstd\group\techview_eikstd.mrp" filter="techview" priority="20"/>
       
  1651           </component>
       
  1652           <component name="EXTRAS">
       
  1653             <unit unitID="EXTRAS" name="techview_extras" bldFile="common\techview\TOOLKIT\EXTRAS\GROUP" mrp="common\techview\toolkit\extras\group\techview_extras.mrp" filter="techview"/>
       
  1654           </component>
       
  1655           <component name="STATUSPANE">
       
  1656             <unit unitID="STATUSPANE" name="techview_statuspane" bldFile="common\techview\TOOLKIT\STATUSPANE\GROUP" mrp="common\techview\toolkit\statuspane\group\techview_statuspane.mrp" filter="techview"/>
       
  1657           </component>
       
  1658           <component name="SHELL">
       
  1659             <unit unitID="SHELL" name="techview_shell" bldFile="common\techview\TOOLKIT\SHELL\GROUP" mrp="common\techview\toolkit\shell\group\techview_shell.mrp" filter="techview"/>
       
  1660           </component>
       
  1661           <component name="STARTUP">
       
  1662             <unit unitID="STARTUP" name="techview_startup" bldFile="common\techview\TOOLKIT\STARTUP\GROUP" mrp="common\techview\toolkit\startup\group\techview_startup.mrp" filter="techview"/>
       
  1663           </component>
       
  1664           <component name="ROMKIT">
       
  1665             <unit unitID="ROMKIT" name="techview_romkit" bldFile="common\techview\TOOLKIT\ROMKIT\GROUP" mrp="common\techview\toolkit\romkit\group\techview_romkit.mrp" filter="techview"/>
       
  1666             <package name="techview_roms_9.2" mrp="cedar\generic\utils\techview_roms_9.2.mrp" filter="techview,9.3"/>
       
  1667             <package name="techview_roms_Future" mrp="cedar\generic\utils\techview_roms_Future.mrp" filter="techview,Future"/>
       
  1668             <package name="techview_roms_9.4" mrp="cedar\generic\utils\techview_roms_9.4.mrp" filter="techview,!9.3,!Future"/>
       
  1669            </component>
       
  1670           <component name="FEPSETUP">
       
  1671             <unit unitID="FEPSETUP" name="techview_fepsetup" bldFile="common\techview\MISC\FEPSETUP\GROUP" mrp="common\techview\misc\fepsetup\group\techview_fepsetup.mrp" filter="techview"/>
       
  1672           </component>
       
  1673           <component name="FEPS">
       
  1674             <unit unitID="FEPS" name="techview_feps" bldFile="common\techview\MISC\FEPS\GROUP" mrp="common\techview\misc\feps\group\techview_feps.mrp" filter="techview"/>
       
  1675           </component>
       
  1676           <component name="CCTLCOLSCHEME">
       
  1677             <unit unitID="CCTLCOLSCHEME" name="techview_cctlcolscheme" bldFile="common\techview\MISC\CCTLCOLSCHEME\GROUP" mrp="common\techview\misc\cctlcolscheme\group\techview_cctlcolscheme.mrp" filter="techview"/>
       
  1678           </component>
       
  1679           <component name="SOUNDSETUP">
       
  1680             <unit unitID="SOUNDSETUP" name="techview_soundsetup" bldFile="common\techview\MISC\SOUNDSETUP\GROUP" mrp="common\techview\misc\soundsetup\group\techview_soundsetup.mrp" filter="techview"/>
       
  1681           </component>
       
  1682           <component name="KEYCLICKREF">
       
  1683             <unit unitID="KEYCLICKREF" name="techview_KeyClickRef" bldFile="common\techview\MISC\KEYCLICKREF\GROUP" mrp="common\techview\misc\keyclickref\group\techview_keyclickref.mrp" filter="techview"/>
       
  1684           </component>
       
  1685           <component name="Configuration Files">
       
  1686             <package name="techview_additional_cedar" mrp="common\techview\misc\mrpfiles\techview_additional_cedar.mrp" filter="techview"/>
       
  1687             <package name="techview_epoc_ini" mrp="common\techview\misc\mrpfiles\techview_epoc_ini.mrp" filter="techview"/>
       
  1688           </component>
       
  1689         </module>
       
  1690       </logicalset>
       
  1691     </layer>
       
  1692     <layer name="MISC">
       
  1693 
       
  1694 
       
  1695       <module name="Other BSPs">
       
  1696           <component name="Assabet BSP">
       
  1697             <unit unitID="ASSABET_EKA2" name="base_assabet" bldFile="cedar\generic\BASE\ASSABET" mrp="cedar\generic\base\assabet\base_assabet.mrp"/>
       
  1698             <package name="base_sa1100" mrp="cedar\generic\base\sa1100\base_sa1100.mrp"/>
       
  1699           </component>
       
  1700           <component name="Integrator BSP">
       
  1701             <unit unitID="INTEGRATORAP_EKA2" name="base_integrator_integratorap" bldFile="cedar\generic\base\integrator\integratorap" mrp="cedar\generic\base\integrator\integratorap\base_integrator_integratorap.mrp"/>
       
  1702             <unit unitID="INTEGRATOR_CORE_EKA2" name="base_integrator_core_8.1b" bldFile="cedar\generic\base\integrator\core" mrp="cedar\generic\base\integrator\core\base_integrator_core_8.1b.mrp"/>
       
  1703             <unit unitID="INTEGRATOR_CM920_EKA2" name="base_integrator_core_cm920" bldFile="cedar\generic\base\integrator\core\cm920" mrp="cedar\generic\base\integrator\core\cm920\base_integrator_core_cm920.mrp"/>
       
  1704             <unit unitID="INTEGRATOR_CM1136_EKA2" name="base_integrator_core_cm1136" bldFile="cedar\generic\base\integrator\core\cm1136" mrp="cedar\generic\base\integrator\core\cm1136\base_integrator_core_cm1136.mrp"/>
       
  1705             <unit unitID="INTEGRATOR_LMXX600_EKA2" name="base_integrator_logic_lmxx600" bldFile="cedar\generic\base\integrator\logic\lmxx600" mrp="cedar\generic\base\integrator\logic\lmxx600\base_integrator_logic_lmxx600.mrp"/>
       
  1706             <unit unitID="INTEGRATOR_LMNAND_EKA2" name="base_integrator_logic_lmnand" bldFile="cedar\generic\base\integrator\logic\lmnand" mrp="cedar\generic\base\integrator\logic\lmnand\base_integrator_logic_lmnand.mrp"/>
       
  1707             <package name="base_integrator_logic_lm_pana" contract="SD_Card_PSL"  mrp="cedar\generic\base\integrator\logic\lm_pana\base_integrator_logic_lm_pana.mrp"/>
       
  1708           </component>
       
  1709       </module>
       
  1710       <module name="MISC">
       
  1711           <component name="Core Apps Test">
       
  1712 	    <!-- XML Previous Location: Application Services/Other Application Services/ -->
       
  1713             <package name="app-services_coreappstest" mrp="common\generic\app-services\coreappstest\group\app-services_coreappstest.mrp"/> 
       
  1714           </component>
       
  1715           <component name="DUMMY">
       
  1716             <unit unitID="DUMMY" name="additional_dummy" bldFile="common\generic\tools\cbr\dummy" mrp="common\generic\tools\cbr\dummy\additional_dummy.mrp"/>
       
  1717           </component>
       
  1718           <component name="E32TEST">
       
  1719             <unit unitID="E32TEST_EKA2" name="base_e32test" bldFile="cedar\generic\BASE\E32Test\GROUP" mrp="cedar\generic\base\e32test\group\base_e32test.mrp"/>
       
  1720             <unit unitID="BASE_SDIOTESTS" name="base_sdiotests" bldFile="cedar\generic\base\e32utils\sdio" mrp="cedar\generic\base\e32utils\sdio\base_sdiotests.mrp" filter="gt" />
       
  1721           </component>
       
  1722           <component name="E32UTILS">
       
  1723             <unit unitID="E32UTILS_EKA2" name="base_e32utils" contract="NAND_Flash_XSR_Unistore_2_Other_Portions"  bldFile="cedar\generic\BASE\E32Utils\GROUP" mrp="cedar\generic\base\e32utils\group\base_e32utils.mrp"/>
       
  1724           </component>
       
  1725             <component name="EAYsymb Protocol">
       
  1726             <!-- XML Previous location: OS Services/Comms Services/Networking Services/Network Protocol Plugins/ -->
       
  1727               <!-- No unit or source but listed in Component Summary -->
       
  1728             </component>
       
  1729           <component name="Error Resolver Data">
       
  1730             <unit unitID="ERRORRESGT" name="app-framework_errorresgt" bldFile="common\generic\APP-FRAMEWORK\ERRORRESGT\GROUP" mrp="common\generic\app-framework\errorresgt\group\app-framework_errorresgt.mrp"/>
       
  1731           </component>
       
  1732           <component name="Ethernet Services">
       
  1733             <!-- XML Previous location: OS Services/Comms Services/Networking Services/Link Layer Control/ -->
       
  1734             <!-- Built by ETHER802 -->
       
  1735           </component>
       
  1736           <component name="ETHER AGT">
       
  1737             <!-- XML Previous location: OS Services/Comms Services/Networking Services/Networking Plugins/ -->
       
  1738             <!-- No unit or source but listed in Component Summary -->
       
  1739           </component>
       
  1740           <component name="GDITOOLS">
       
  1741             <unit unitID="GDITOOLS" name="graphics_gditools" bldFile="common\generic\GRAPHICS\GDITools\GROUP" mrp="common\generic\graphics\gditools\group\graphics_gditools.mrp"/>
       
  1742           </component>
       
  1743           <component name="GDTRAN">
       
  1744             <unit unitID="GDTRAN" name="GDTRAN" bldFile="common\generic\GRAPHICS\GDTran\GROUP" mrp="common\generic\graphics\gdtran\group\graphics_gdtran.mrp"/>
       
  1745           </component>
       
  1746           <component name="INTEGRATIONTEST">
       
  1747             <unit unitID="INTEGRATIONTEST" name="networking_integrationtest" bldFile="common\generic\NETWORKING\Integrationtest\group" mrp="common\generic\networking\integrationtest\Group\networking_integrationtest.mrp"/>
       
  1748             <package name="app-framework_testframework" mrp="common\generic\app-framework\testframework\group\app-framework_testframework.mrp"/>
       
  1749             <package name="app-framework_word" mrp="common\generic\app-framework\word\group\app-framework_word.mrp"/>
       
  1750             <package name="messaging" mrp="common\generic\messaging\group\messaging.mrp"/>
       
  1751             <package name="messaging_testframework" mrp="common\generic\messaging\testframework\group\messaging_testframework.mrp"/>
       
  1752             <package name="security_testframework" mrp="common\generic\security\testframework\group\security_testframework.mrp"/>
       
  1753           </component>
       
  1754           <component name="Mobile IP">
       
  1755             <!-- XML Previous location: OS Services/Comms Services/Networking Services/Networking Plugins/ -->
       
  1756             <unit unitID="MOBILEIP" name="networking_mobileip" bldFile="common\generic\networking\mobileip\group" mrp="common\generic\networking\mobileip\group\networking_mobileip.mrp"/>
       
  1757           </component>
       
  1758           <component name="Send As">
       
  1759 	    <!-- XML Previous Location: Application Services/Messaging Application Support/ -->
       
  1760           <unit unitID="MSG_SENDAS2" name="messaging_sendas2" bldFile="common\generic\messaging\sendas2\group" mrp="common\generic\messaging\sendas2\group\messaging_sendas2.mrp"/>
       
  1761           </component>
       
  1762           <component name="MSG TEST">
       
  1763 	    <!-- XML Previous Location: Application Services/Messaging Application Support/ -->
       
  1764             <unit unitID="MSG_TEST" name="messaging_test" bldFile="common\generic\messaging\test\group" mrp="common\generic\messaging\test\group\messaging_test.mrp"/>
       
  1765           </component>
       
  1766           <component name="MSG URLHANDLER">
       
  1767 	    <!-- XML Previous Location: Application Services/Messaging Application Support/ -->
       
  1768             <unit unitID="MSG_URLHANDLER" name="messaging_urlhandler" bldFile="common\generic\messaging\urlhandler\group" mrp="common\generic\messaging\urlhandler\group\messaging_urlhandler.mrp"/>
       
  1769           </component>
       
  1770           <component name="Multimedia Validation Suite">
       
  1771 	    <unit unitID="MVS_APP" name="multimedia_mvs_app" bldFile="common\generic\multimedia\mvs\application\group" mrp="common\generic\multimedia\mvs\application\group\multimedia_mvs_app.mrp" filter="!9.3"/>
       
  1772 	    <unit unitID="MVS_AGENTS" name="multimedia_mvs_agents" bldFile="common\generic\multimedia\mvs\agents\group" mrp="common\generic\multimedia\mvs\agents\group\multimedia_mvs_agents.mrp" filter="!9.3"/>
       
  1773             <package name="multimedia_inttest_mvs_source" mrp="common\generic\multimedia\inttest\mvs\group\multimedia_inttest_mvs_source.mrp" filter="!9.3"/>
       
  1774           </component>
       
  1775           <component name="SCHEDULER">
       
  1776             <unit unitID="SCHEDULER" name="networking_scheduler" contract="TCPIP_v4-v6_PRT"  bldFile="common\generic\NETWORKING\SCHEDULER\GROUP" mrp="common\generic\networking\scheduler\group\networking_scheduler.mrp"/>
       
  1777           </component>
       
  1778           <component name="SECURITYCOMMON">
       
  1779             <unit unitID="SECURITYCOMMON" name="security_common" bldFile="common\generic\SECURITY\COMMON\GROUP" mrp="common\generic\security\common\group\security_common.mrp"/>
       
  1780             <unit unitID="SECURITYCONFIG" name="security_config" bldFile="common\generic\security\securityconfig\group" mrp="common\generic\security\securityconfig\group\security_config.mrp"/>
       
  1781           </component>
       
  1782           <component name="SYSTEMMONITOR">
       
  1783             <unit unitID="SYSTEMMONITOR" name="testtools_systemmonitor" bldFile="common\testtools\systemmonitor\group" mrp="common\testtools\SystemMonitor\group\testtools_systemmonitor.mrp"/>
       
  1784           </component>
       
  1785           <component name="TEMPLATE_EKA2">
       
  1786             <unit unitID="TEMPLATE_EKA2" name="base_template" bldFile="cedar\generic\base\template\template_variant" mrp="cedar\generic\base\template\base_template.mrp"/>
       
  1787           </component>
       
  1788           <component name="TESTTOOLS_UTILITIES">
       
  1789              <unit unitID="TESTTOOLS_UTILITIES" name="testtools_utilities" bldFile="common\testtools\utilities\group" mrp="common\testtools\utilities\group\testtools_utilities.mrp"/>
       
  1790           </component>
       
  1791           <component name="WAP Base">
       
  1792             <!-- XML Previous location: OS Services/Comms Services/Networking Services/WAP Stack/ -->
       
  1793             <unit unitID="WAPBASE" name="wap-browser_wapbase" bldFile="common\generic\WAP-BROWSER\WAPBASE\GROUP" mrp="common\generic\wap-browser\wapbase\Group\wap-browser_wapbase.mrp"/>
       
  1794           </component>
       
  1795           <component name="NWSS WAP Stack">
       
  1796             <!-- XML Previous location: OS Services/Comms Services/Networking Services/WAP Stack/ -->
       
  1797             <!-- built by WAPSTACK -->
       
  1798           </component>
       
  1799           <component name="WLDDATABASEKIT">
       
  1800             <unit unitID="WLDDATABASEKIT" name="WLDDATABASEKIT" bldFile="common\generic\APP-SERVICES\Wlddatabasekit\GROUP" mrp="common\generic\app-services\wlddatabasekit\group\app-services_wlddatabasekit_cedar.mrp"/>
       
  1801           </component>
       
  1802           <component name="WLDTOOLS">
       
  1803             <unit unitID="WLDTOOLS" name="app-services_wldtools" bldFile="common\generic\APP-SERVICES\WLDTOOLS\GROUP" mrp="common\generic\app-services\wldtools\group\app-services_wldtools.mrp"/>
       
  1804           </component>
       
  1805       </module>
       
  1806     </layer>
       
  1807   </systemModel>
       
  1808   
       
  1809   <build>
       
  1810     <option name="KEEPGOING" abldOption="-keepgoing" description="Causes make to keepgoing on errors" enable="Y"/>
       
  1811     <option name="SAVESPACE" abldOption="-savespace" description="Causes the removal of intermediate files" enable="Y"/>
       
  1812     <target name="WINS" abldTarget="wins" description="MSVC Compiler"/>
       
  1813     <target name="WINS_REL" abldTarget="wins urel" description="MSVC Compiler"/>
       
  1814     <target name="WINS_DEB" abldTarget="wins udeb" description="MSVC Compiler"/>
       
  1815     <target name="WINSCW" abldTarget="winscw" description="CodeWarrior Compiler"/>
       
  1816     <target name="WINSCW_REL" abldTarget="winscw urel" description="CodeWarrior Compiler"/>
       
  1817     <target name="WINSCW_DEB" abldTarget="winscw udeb" description="CodeWarrior Compiler"/>
       
  1818     <target name="TOOLS" abldTarget="tools" description="MSVC Compiler for Tools"/>
       
  1819     <target name="TOOLS_REL" abldTarget="tools rel" description="MSVC Compiler for Tools Release mode only"/>
       
  1820     <target name="TOOLS2" abldTarget="tools2" description="MinGW GCC Compiler for Tools"/>
       
  1821     <target name="TOOLS2_REL" abldTarget="tools2 rel" description="MinGW GCC Compiler for Tools Release mode only"/>
       
  1822     <target name="ARMV5" abldTarget="armv5" description="RVCT Compiler"/>
       
  1823     <target name="ARMV5_REL" abldTarget="armv5 urel" description="RVCT Compiler"/>
       
  1824     <target name="ARMV5_DEB" abldTarget="armv5 udeb" description="RVCT Compiler"/>
       
  1825 
       
  1826     <!-- Aditional Targets -->
       
  1827     <target name="CWTOOLS" abldTarget="cwtools" description="CodeWarrior Compiler for Tools"/> <!-- Not supported -->
       
  1828     <target name="CWTOOLS_REL" abldTarget="cwtools rel" description="CodeWarrior Compiler for Tools Release mode only"/> <!-- Not supported -->
       
  1829     <target name="GCCXML" abldTarget="gccxml" description="GCCXML for Code comparision tools"/>
       
  1830     <target name="GCCXML_REL" abldTarget="gccxml urel" description="GCCXML for Code comparision tools release mode only"/>
       
  1831     
       
  1832     <targetList name="default_9.0" description="Main Targets for 9.0" target="WINSCW ARMV5"/>
       
  1833     <targetList name="default_9.0_rel" description="Main Targets for 9.0_rel" target="WINSCW_REL ARMV5_REL"/>
       
  1834     <targetList name="default_9.0_deb" description="Main Targets for 9.0_deb" target="WINSCW_DEB ARMV5_DEB"/>
       
  1835     <targetList name="tools" description="tools Targets" target="TOOLS"/>
       
  1836     <targetList name="tools_rel" description="tools Release Targets" target="TOOLS_REL"/>
       
  1837     <targetList name="tools2" description="tools Targets" target="TOOLS2"/>
       
  1838     <targetList name="tools2_rel" description="tools Release Targets" target="TOOLS2_REL"/>
       
  1839     <targetList name="gccxml" description="tools Targets" target="GCCXML"/>
       
  1840     <targetList name="gccxml_rel" description="tools Release Targets" target="GCCXML_REL"/>
       
  1841 
       
  1842     
       
  1843     <unitList name="PLATTEST_LIST" description="PlatTest Code">
       
  1844     	<unitRef unit="PLATTEST"/>
       
  1845     </unitList>
       
  1846     
       
  1847 
       
  1848  <!-- 9.3 configuration -->
       
  1849 
       
  1850     <configuration name="Custkit_9.3" description="9.3 Custkit build" filter="9.3,custkit">
       
  1851       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  1852       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  1853       <layerRef layerName="Base Services"/>
       
  1854       <layerRef layerName="OS Services"/>
       
  1855       <layerRef layerName="Application Services"/>
       
  1856       <layerRef layerName="UI Framework"/>
       
  1857       <layerRef layerName="UI"/>
       
  1858       <layerRef layerName="Programming Support"/>
       
  1859       <layerRef layerName="MISC"/>
       
  1860       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  1861       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  1862       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  1863       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  1864       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  1865       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  1866       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1867       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1868       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1869       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  1870       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  1871       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1872       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1873       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1874       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  1875       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1876       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  1877       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1878       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1879       <task><buildLayer command="abld -what build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1880       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1881     </configuration>
       
  1882 
       
  1883     <configuration name="GT_9.3" description="9.3 GT build" filter="9.3,gt">
       
  1884       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  1885       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  1886       <layerRef layerName="Base Services"/>
       
  1887       <layerRef layerName="OS Services"/>
       
  1888       <layerRef layerName="Application Services"/>
       
  1889       <layerRef layerName="UI Framework"/>
       
  1890       <layerRef layerName="UI"/>
       
  1891       <layerRef layerName="Programming Support"/>
       
  1892       <layerRef layerName="MISC"/>
       
  1893       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  1894       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  1895       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  1896       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  1897       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  1898       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  1899       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1900       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1901       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  1902       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  1903       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  1904       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1905       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1906       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1907       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  1908       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1909       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  1910       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1911       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1912       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  1913       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1914       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  1915       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  1916       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1917     </configuration>
       
  1918     
       
  1919     <configuration name="TV_9.3" description="9.3 Techview build" filter="9.3,techview">
       
  1920       <layerRef layerName="UI"/>
       
  1921       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  1922       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  1923       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  1924       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1925       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  1926       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1927       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1928       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  1929       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1930       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  1931       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  1932       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1933       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="SetupBuildConfig.bat 9.1"/></task>
       
  1934       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="copy configuration.cfg %CleanSourceDir%\common\generic\plattest\group\"/></task>
       
  1935       <task>
       
  1936       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1937       	<buildLayer command="bldmake bldfiles" unitParallel="Y"/>
       
  1938       </task>
       
  1939       <task>
       
  1940       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1941       	<buildLayer command="abld export" unitParallel="Y"/>
       
  1942       </task>
       
  1943       <task>
       
  1944       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1945       	<buildLayer command="abld export -what" unitParallel="N"/>
       
  1946       </task>
       
  1947       <task>
       
  1948       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1949       	<buildLayer command="abld export -check" unitParallel="N"/>
       
  1950       </task>
       
  1951       <task>
       
  1952       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1953       	<buildLayer command="abld test build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  1954       </task>
       
  1955       <task>
       
  1956       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1957       	<buildLayer command="abld test -what build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  1958       </task>
       
  1959       <task>
       
  1960       	<unitListRef unitList="PLATTEST_LIST"/>
       
  1961       	<buildLayer command="abld test -check build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  1962       </task>
       
  1963     </configuration>
       
  1964 
       
  1965     <configuration name="JAVA_9.3" description="9.3 JAVA build" filter="9.3,java">
       
  1966       <layerRef layerName="Java J2ME"/>
       
  1967       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  1968       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  1969       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  1970       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1971       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  1972       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1973       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  1974       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  1975       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1976       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  1977       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  1978       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  1979     </configuration>
       
  1980     
       
  1981     <!-- 9.4 configuration -->
       
  1982 
       
  1983     <configuration name="Custkit_9.4" description="9.4 Custkit build" filter="9.4,custkit">
       
  1984       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  1985       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  1986       <layerRef layerName="Base Services"/>
       
  1987       <layerRef layerName="OS Services"/>
       
  1988       <layerRef layerName="Application Services"/>
       
  1989       <layerRef layerName="UI Framework"/>
       
  1990       <layerRef layerName="UI"/>
       
  1991       <layerRef layerName="Programming Support"/>
       
  1992       <layerRef layerName="MISC"/>
       
  1993       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  1994       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  1995       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  1996       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  1997       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  1998       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  1999       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2000       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2001       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2002       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2003       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2004       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2005       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2006       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2007       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2008       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2009       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2010       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2011       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2012       <task><buildLayer command="abld -what build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2013       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2014     </configuration>
       
  2015 
       
  2016     <configuration name="GT_9.4" description="9.4 GT build" filter="9.4,gt">
       
  2017       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  2018       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  2019       <layerRef layerName="Base Services"/>
       
  2020       <layerRef layerName="OS Services"/>
       
  2021       <layerRef layerName="Application Services"/>
       
  2022       <layerRef layerName="UI Framework"/>
       
  2023       <layerRef layerName="UI"/>
       
  2024       <layerRef layerName="Programming Support"/>
       
  2025       <layerRef layerName="MISC"/>
       
  2026       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  2027       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  2028       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2029       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2030       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  2031       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  2032       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2033       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2034       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2035       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2036       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2037       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2038       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2039       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2040       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2041       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2042       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2043       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2044       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2045       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2046       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2047       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2048       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2049       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2050     </configuration>
       
  2051     
       
  2052     <configuration name="TV_9.4" description="9.4 Techview build" filter="9.4,techview">
       
  2053       <layerRef layerName="UI"/>
       
  2054       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2055       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2056       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2057       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2058       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2059       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2060       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2061       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2062       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2063       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2064       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2065       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2066       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="SetupBuildConfig.bat 9.1"/></task>
       
  2067       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="copy configuration.cfg %CleanSourceDir%\common\generic\plattest\group\"/></task>
       
  2068       <task>
       
  2069       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2070       	<buildLayer command="bldmake bldfiles" unitParallel="Y"/>
       
  2071       </task>
       
  2072       <task>
       
  2073       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2074       	<buildLayer command="abld export" unitParallel="Y"/>
       
  2075       </task>
       
  2076       <task>
       
  2077       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2078       	<buildLayer command="abld export -what" unitParallel="N"/>
       
  2079       </task>
       
  2080       <task>
       
  2081       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2082       	<buildLayer command="abld export -check" unitParallel="N"/>
       
  2083       </task>
       
  2084       <task>
       
  2085       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2086       	<buildLayer command="abld test build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2087       </task>
       
  2088       <task>
       
  2089       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2090       	<buildLayer command="abld test -what build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2091       </task>
       
  2092       <task>
       
  2093       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2094       	<buildLayer command="abld test -check build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2095       </task>
       
  2096     </configuration>
       
  2097 
       
  2098     <configuration name="JAVA_9.4" description="9.4 JAVA build" filter="9.4,java">
       
  2099       <layerRef layerName="Java J2ME"/>
       
  2100       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2101       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2102       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2103       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2104       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2105       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2106       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2107       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2108       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2109       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2110       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2111       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2112     </configuration>
       
  2113 
       
  2114     <!-- 9.5 configuration -->
       
  2115 
       
  2116     <configuration name="Custkit_9.5" description="9.5 Custkit build" filter="9.5,custkit">
       
  2117       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  2118       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  2119       <layerRef layerName="Base Services"/>
       
  2120       <layerRef layerName="OS Services"/>
       
  2121       <layerRef layerName="Application Services"/>
       
  2122       <layerRef layerName="UI Framework"/>
       
  2123       <layerRef layerName="UI"/>
       
  2124       <layerRef layerName="Programming Support"/>
       
  2125       <layerRef layerName="MISC"/>
       
  2126       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  2127       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  2128       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2129       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2130       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  2131       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  2132       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2133       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2134       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2135       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2136       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2137       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2138       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2139       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2140       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2141       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2142       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2143       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2144       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2145       <task><buildLayer command="abld -what build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2146       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2147     </configuration>
       
  2148 
       
  2149     <configuration name="GT_9.5" description="9.5 GT build" filter="9.5,gt">
       
  2150       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  2151       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  2152       <layerRef layerName="Base Services"/>
       
  2153       <layerRef layerName="OS Services"/>
       
  2154       <layerRef layerName="Application Services"/>
       
  2155       <layerRef layerName="UI Framework"/>
       
  2156       <layerRef layerName="UI"/>
       
  2157       <layerRef layerName="Programming Support"/>
       
  2158       <layerRef layerName="MISC"/>
       
  2159       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  2160       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  2161       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2162       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2163       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  2164       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  2165       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2166       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2167       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2168       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2169       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2170       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2171       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2172       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2173       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2174       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2175       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2176       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2177       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2178       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2179       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2180       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2181       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2182       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2183     </configuration>
       
  2184     
       
  2185     <configuration name="TV_9.5" description="9.5 Techview build" filter="9.5,techview">
       
  2186       <layerRef layerName="UI"/>
       
  2187       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2188       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2189       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2190       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2191       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2192       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2193       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2194       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2195       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2196       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2197       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2198       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2199       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="SetupBuildConfig.bat 9.1"/></task>
       
  2200       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="copy configuration.cfg %CleanSourceDir%\common\generic\plattest\group\"/></task>
       
  2201       <task>
       
  2202       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2203       	<buildLayer command="bldmake bldfiles" unitParallel="Y"/>
       
  2204       </task>
       
  2205       <task>
       
  2206       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2207       	<buildLayer command="abld export" unitParallel="Y"/>
       
  2208       </task>
       
  2209       <task>
       
  2210       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2211       	<buildLayer command="abld export -what" unitParallel="N"/>
       
  2212       </task>
       
  2213       <task>
       
  2214       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2215       	<buildLayer command="abld export -check" unitParallel="N"/>
       
  2216       </task>
       
  2217       <task>
       
  2218       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2219       	<buildLayer command="abld test build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2220       </task>
       
  2221       <task>
       
  2222       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2223       	<buildLayer command="abld test -what build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2224       </task>
       
  2225       <task>
       
  2226       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2227       	<buildLayer command="abld test -check build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2228       </task>
       
  2229     </configuration>
       
  2230 
       
  2231     <configuration name="JAVA_9.5" description="9.5 JAVA build" filter="9.5,java">
       
  2232       <layerRef layerName="Java J2ME"/>
       
  2233       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2234       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2235       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2236       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2237       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2238       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2239       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2240       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2241       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2242       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2243       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2244       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2245     </configuration>
       
  2246 
       
  2247  <!-- Future configuration -->
       
  2248 
       
  2249     <configuration name="Custkit_Future" description="Future Custkit build" filter="Future,custkit">
       
  2250       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  2251       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  2252       <layerRef layerName="Base Services"/>
       
  2253       <layerRef layerName="OS Services"/>
       
  2254       <layerRef layerName="Application Services"/>
       
  2255       <layerRef layerName="UI Framework"/>
       
  2256       <layerRef layerName="UI"/>
       
  2257       <layerRef layerName="Programming Support"/>
       
  2258       <layerRef layerName="MISC"/>
       
  2259       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  2260       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  2261       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2262       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2263       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  2264       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  2265       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2266       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2267       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2268       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2269       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2270       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2271       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2272       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2273       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2274       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2275       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2276       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2277       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2278       <task><buildLayer command="abld -what build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2279       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2280     </configuration>
       
  2281 
       
  2282     <configuration name="GT_Future" description="Future GT build" filter="Future,gt">
       
  2283       <layerRef layerName="Tools and Utils and SDKENG"/>
       
  2284       <layerRef layerName="Kernel Services and Hardware Interface"/>
       
  2285       <layerRef layerName="Base Services"/>
       
  2286       <layerRef layerName="OS Services"/>
       
  2287       <layerRef layerName="Application Services"/>
       
  2288       <layerRef layerName="UI Framework"/>
       
  2289       <layerRef layerName="UI"/>
       
  2290       <layerRef layerName="Programming Support"/>
       
  2291       <layerRef layerName="MISC"/>
       
  2292       <task><specialInstructions name="BootStrap1" cwd="cedar\generic\tools\e32toolp\group" command="setupprj.bat secure"/></task>
       
  2293       <task><specialInstructions name="BootStrap2" cwd="cedar\generic\tools\e32toolp\group" command="bld.bat rel"/></task>
       
  2294       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2295       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2296       <task><buildLayer command="abld makefile" targetList="tools" unitParallel="Y" targetParallel="N"/></task>
       
  2297       <task><buildLayer command="abld library" targetList="tools" unitParallel="N" targetParallel="N"/></task>
       
  2298       <task><buildLayer command="abld target" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2299       <task><buildLayer command="abld -what build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2300       <task><buildLayer command="abld -check build" targetList="tools_rel" unitParallel="N" targetParallel="N"/></task>
       
  2301       <task><buildLayer command="abld makefile" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2302       <task><buildLayer command="abld library" targetList="tools2" unitParallel="Y" targetParallel="Y"/></task>
       
  2303       <task><buildLayer command="abld target" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2304       <task><buildLayer command="abld -what build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2305       <task><buildLayer command="abld -check build" targetList="tools2_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2306       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2307       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2308       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2309       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2310       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2311       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2312       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2313       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2314       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2315       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2316     </configuration>
       
  2317     
       
  2318     <configuration name="TV_Future" description="Future Techview build" filter="Future,techview">
       
  2319       <layerRef layerName="UI"/>
       
  2320       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2321       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2322       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2323       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2324       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2325       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2326       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2327       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2328       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2329       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2330       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2331       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2332       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="SetupBuildConfig.bat 9.1"/></task>
       
  2333       <task><specialInstructions name="Copy Plattest Configuration" cwd="common\generic\plattest\group" command="copy configuration.cfg %CleanSourceDir%\common\generic\plattest\group\"/></task>
       
  2334       <task>
       
  2335       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2336       	<buildLayer command="bldmake bldfiles" unitParallel="Y"/>
       
  2337       </task>
       
  2338       <task>
       
  2339       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2340       	<buildLayer command="abld export" unitParallel="Y"/>
       
  2341       </task>
       
  2342       <task>
       
  2343       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2344       	<buildLayer command="abld export -what" unitParallel="N"/>
       
  2345       </task>
       
  2346       <task>
       
  2347       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2348       	<buildLayer command="abld export -check" unitParallel="N"/>
       
  2349       </task>
       
  2350       <task>
       
  2351       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2352       	<buildLayer command="abld test build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2353       </task>
       
  2354       <task>
       
  2355       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2356       	<buildLayer command="abld test -what build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2357       </task>
       
  2358       <task>
       
  2359       	<unitListRef unitList="PLATTEST_LIST"/>
       
  2360       	<buildLayer command="abld test -check build" targetList="default_9.0" unitParallel="N" targetParallel="N"/>
       
  2361       </task>
       
  2362     </configuration>
       
  2363 
       
  2364     <configuration name="JAVA_Future" description="Future JAVA build" filter="Future,java">
       
  2365       <layerRef layerName="Java J2ME"/>
       
  2366       <task><buildLayer command="bldmake bldfiles" unitParallel="Y"/></task>
       
  2367       <task><buildLayer command="abld export" unitParallel="Y"/></task>
       
  2368       <task><buildLayer command="abld makefile" targetList="default_9.0 gccxml" unitParallel="Y" targetParallel="N"/></task>
       
  2369       <task><buildLayer command="abld resource" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2370       <task><buildLayer command="abld library" targetList="default_9.0 gccxml" unitParallel="N" targetParallel="N"/></task>
       
  2371       <task><buildLayer command="abld target" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2372       <task><buildLayer command="abld final" targetList="default_9.0 gccxml_rel" unitParallel="N" targetParallel="N"/></task>
       
  2373       <task><buildLayer command="abld -what export" unitParallel="Y"/></task>
       
  2374       <task><buildLayer command="abld -what target" targetList="default_9.0_rel gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2375       <task><buildLayer command="abld -what target" targetList="default_9.0_deb" unitParallel="Y" targetParallel="Y"/></task>
       
  2376       <task><buildLayer command="abld help" unitParallel="Y"/></task>
       
  2377       <task><buildLayer command="abld -check build" targetList="default_9.0 gccxml_rel" unitParallel="Y" targetParallel="Y"/></task>
       
  2378     </configuration>
       
  2379 
       
  2380   </build>
       
  2381 
       
  2382 </SystemDefinition>