windowing/windowserver/minigui/group/minigui.oby
branchRCL_3
changeset 163 bbf46f59e123
parent 11 fed1595b188e
child 164 25ffed67c7ef
equal deleted inserted replaced
150:57c618273d5c 163:bbf46f59e123
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 * This OBY File is used to build miniGUI ROM Images.
       
    16 */
       
    17 
       
    18 #ifndef __MINIGUI_OBY__
     1 #ifndef __MINIGUI_OBY__
    19 #define __MINIGUI_OBY__
     2 #define __MINIGUI_OBY__
       
     3 
       
     4 // Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
       
     5 // All rights reserved.
       
     6 // This component and the accompanying materials are made available
       
     7 // under the terms of "Eclipse Public License v1.0"
       
     8 // which accompanies this distribution, and is available
       
     9 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    10 //
       
    11 // Initial Contributors:
       
    12 // Nokia Corporation - initial contribution.
       
    13 //
       
    14 // Contributors:
       
    15 //
       
    16 // Description:
       
    17 // This OBY File is used to build Mini-Gui ROM Images.
       
    18 // 
       
    19 // Use the following buildrom command line, or similar:
       
    20 //	buildrom -orombld.img -DUSE_SDIO_SD_MMC -DWITH_TVOUT -DUSE_24UBPP_DISPLAY_VARIANT_TV -D_INTERNAL_MMC -DUSE_DATA_PAGING h4hrp minigui pagedrom platsec
       
    21 // Note there is no need to specify -D_NAND2 
    20 
    22 
    21 define OBEYFILE minigui
    23 define OBEYFILE minigui
    22 define ROMDATE	##TODAY##
    24 define ROMDATE	##TODAY##
    23 
    25 
       
    26 // We used to define _NAND2 on the commandline to buildrom.  However, it
       
    27 // does not make rombuild create a rofs image.  Instead it needs to be
       
    28 // specified in the oby file itself.
       
    29 #define _NAND2
       
    30 
       
    31 // Undefine things in global System Include that stops the NCP rom from working.
       
    32 #undef USE_CUSTOM_MMC_PARTITION
       
    33 #undef SYMBIAN_EXCLUDE_SCDV
       
    34 #undef SYMBIAN_GRAPHICS_USE_GCE 
       
    35 #undef SYMBIAN_GRAPHICS_ADAPTATION
       
    36 #undef SGA_SW_NO_GRAPHICSRESOURCE 
       
    37 #undef SYMBIAN_EXCLUDE_KEYMAP  
       
    38 
       
    39 
       
    40 
    24 #define NO_METROTRK_APP // don't want metrotrk application
    41 #define NO_METROTRK_APP // don't want metrotrk application
    25 #define HAS_ETHERNET	// include etherDrv, ether802, DHCP
    42 #define HAS_ETHERNET	// include etherDrv, ether802, DHCP
    26 #define SYMBIAN_EXCLUDE_FAX
    43 #define SYMBIAN_EXCLUDE_FAX
    27 #define SYMBIAN_EXCLUDE_IPSEC
    44 #undef __IPSEC
    28 #define SYMBIAN_EXCLUDE_OBEX
    45 #define SYMBIAN_EXCLUDE_OBEX
    29 
    46 
    30 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    47 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    31 # define _SSMSTARTUPMODE 8	//for ssma boot up.
    48 #define _SSMSTARTUPMODE 8	//for ssma boot up.
    32 #else
    49 #else
    33 # define _STARTUPMODE8		// for sysstart.iby
    50 #define _STARTUPMODE8		// for sysstart.iby
    34 #endif
    51 #endif
    35 
    52 
    36 // Various workarounds to avoid dependencies on UIKON
    53 // Various workarounds to avoid dependencies on UIKON
    37 
    54 
    38 #define __TLS_IBY__			// exclude TLS 
    55 #define __TLS_IBY__			// exclude TLS
       
    56 #define __TLSPROVIDER_IBY__		// exclude TLSPROVIDER 
    39 #define __OBEXPROTOCOL_IBY__	// exclude obex.dll etc
    57 #define __OBEXPROTOCOL_IBY__	// exclude obex.dll etc
    40 #define __WLANEAPMETHODS_IBY__	// exclude eap_tls.msy & friends
    58 #define __WLANEAPMETHODS_IBY__	// exclude eap_tls.msy & friends
    41 // 
    59 // 
    42 
    60 
    43 #ifndef SYMBIAN_BASE_USE_GCE
    61 #ifndef SYMBIAN_BASE_USE_GCE
    44 #define SYMBIAN_BASE_USE_GCE
    62 #define SYMBIAN_BASE_USE_GCE
    45 #endif
    63 #endif
    46 
       
    47 #ifndef SYMBIAN_GRAPHICS_USE_GCE
    64 #ifndef SYMBIAN_GRAPHICS_USE_GCE
    48 #define SYMBIAN_GRAPHICS_USE_GCE
    65 #define SYMBIAN_GRAPHICS_USE_GCE
    49 #endif
    66 #endif
    50 
       
    51 #include <header.iby>				/* ROM header definitions */
    67 #include <header.iby>				/* ROM header definitions */
    52 #include <base.iby>					/* The lowest-level of the operating system */
    68 #include <base.iby>					/* The lowest-level of the operating system */
    53 
    69 
    54 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    70 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    55 # include <ssma.iby>			/*System State Management Architecture*/
    71 
    56 # include <ssplugins.iby>		/*System State Management Plugins*/
    72 #include <ssma.iby>			/*System State Management Architecture*/
       
    73 #include <ssplugins.iby>		/*System State Management Plugins*/
    57 
    74 
    58 //Include SSM optional components to enable teams to build a plain textshell rom (on the lines of DEF128306), 
    75 //Include SSM optional components to enable teams to build a plain textshell rom (on the lines of DEF128306), 
    59 //following removal of h4_textshell_rom.oby.
    76 //following removal of h4_textshell_rom.oby.
    60 # include <amastart.iby>
    77 #include <amastart.iby>
    61 # include <aplp.iby>
       
    62 # include <shma.iby>
       
    63 # include <ssrefplugins.iby>
       
    64 
    78 
       
    79 #include <shma.iby>
       
    80 #include <ssrefplugins.iby>
    65 #else
    81 #else
    66 # include <sysstart.iby>
    82 #include <sysstart.iby>
    67 # include <sysstartconfig.iby>
    83 #include <sysstartconfig.iby>
    68 #endif // SYMBIAN_SYSTEM_STATE_MANAGEMENT
    84 #endif // SYMBIAN_SYSTEM_STATE_MANAGEMENT
    69 
    85 
    70 #include <debug.iby>
    86 #include <debug.iby>
       
    87 
    71 #include <eshell.iby>
    88 #include <eshell.iby>
       
    89 
    72 #include <centralrepository.iby>
    90 #include <centralrepository.iby>
    73 file=ABI_DIR\BUILD_DIR\abclient.dll			sys\bin\abclient.dll
    91 	file=ABI_DIR\BUILD_DIR\abclient.dll			sys\bin\abclient.dll
       
    92 
    74 #include <crypto.iby>
    93 #include <crypto.iby>
       
    94 
    75 #include <c32.iby>
    95 #include <c32.iby>
    76 #include <ecuart.iby>
    96 #include <ecuart.iby>
    77 #include <irda.iby>
    97 #include <irda.iby>
    78 #include <bluetooth.iby>
       
    79 #include <stdlib.iby>
    98 #include <stdlib.iby>
    80 
       
    81 // NGA stack
       
    82 //
       
    83 #include <gdi.iby>
    99 #include <gdi.iby>
    84 #include <bitgdi.iby>
       
    85 #include <fntstore.iby>
   100 #include <fntstore.iby>
    86 #include <fbserv.iby>
   101 #include <fbserv.iby>
       
   102 #include <bitgdi.iby>
    87 #include <iculayoutengine.iby>
   103 #include <iculayoutengine.iby>
    88 #include <freetype.iby>
   104 #include <freetype.iby>
    89 #include <directgdi.iby>
   105 #include <directgdi.iby>
    90 #include <wserv.iby>
   106 #include <wserv.iby>
    91 #include <econs_wserv.iby>
   107 #include <econs_wserv.iby>
    92 data=DATAZ_\wsini_minigui.ini	\system\data\wsini.ini
   108 data=DATAZ_\wsini_minigui.ini	\system\data\wsini.ini
    93 
   109 
    94 // include enough multimedia components to keep cone happy. includes symbian optional, reference and replacable components
   110 #include <printers.iby>
    95 #include <mmf.iby>
       
    96 #include <mmcommon.iby>
       
    97 #include <mdf.iby>
       
    98 #include <devvideo.iby>
       
    99 #include <devsound_pluginsupport.iby>
       
   100 #include <devsound_refplugin.iby>
       
   101 
   111 
   102 #ifdef SYMBIAN_MULTIMEDIA_A3FDEVSOUND
   112 
   103 # include <acf.iby>
       
   104 # include <a3fdevsound.iby>
       
   105 # include <acl.iby>
       
   106 # include <devsoundadaptationinfo.iby>
       
   107 # include <refacladaptation.iby>
       
   108 # include <refmmrc.iby>
       
   109 # include <a3fserverstart.iby>
       
   110 #endif // SYMBIAN_MULTIMEDIA_A3FDEVSOUND
       
   111 
   113 
   112 #include <traces.iby>
   114 #include <traces.iby>
   113 #include <mmf_plugin.iby>
       
   114 #include <omxilcompref.iby>
       
   115 #include <omxilcomp.iby>
       
   116 
   115 
   117 #include <omxilcore.iby>
       
   118 	
       
   119 #include <inetprotutil.iby>		/* needed for mmfcontrollerframework.dll */
   116 #include <inetprotutil.iby>		/* needed for mmfcontrollerframework.dll */
   120 #include <caf.iby>				/* needed for mediaclientutils.dll */
       
   121 #include <sysagent.iby>
   117 #include <sysagent.iby>
   122 #include <network.iby>	
   118 #include <network.iby>	
   123 #include <dial.iby>		// needed by commsdat
   119 #include <dial.iby>		// needed by commsdat
   124 #include <etel.iby>
   120 #include <etel.iby>
   125 #include <smsstack.iby>
   121 #include <smsstack.iby>
   137 #include <ups.iby>
   133 #include <ups.iby>
   138 #include <securitycommonutils.iby>
   134 #include <securitycommonutils.iby>
   139 
   135 
   140 /* Feature Management run-time */
   136 /* Feature Management run-time */
   141 #ifdef SYMBIAN_FEATURE_MANAGER
   137 #ifdef SYMBIAN_FEATURE_MANAGER
       
   138 
   142 // Include both old and new components when Feature Manager enabled
   139 // Include both old and new components when Feature Manager enabled
   143 # include <featmgr.iby>
   140 #include <featmgr.iby>
   144 # include <featreg.iby>
   141 #include <featreg.iby>
   145 
   142 
   146 #else 
   143 #else 
       
   144 
   147 // Include only the original Feature Registry otherwise
   145 // Include only the original Feature Registry otherwise
   148 # include <featreg.iby>
   146 #include <featreg.iby>
   149 # ifndef ROM_FEATURE_MANAGEMENT
   147 #ifndef ROM_FEATURE_MANAGEMENT
   150 /* Provide a default configuration file for the feature registry */ 
   148 /* Provide a default configuration file for the feature registry */ 
   151     data=EPOCROOT##epoc32\data\config\featreg_default.cfg    private\102744CA\featreg.cfg
   149 data=EPOCROOT##epoc32\data\config\featreg_default.cfg    private\102744CA\featreg.cfg
   152 # endif
   150 #endif
   153 #endif
   151 #endif
   154 
   152 
   155 // This upward dependency need to be cleaned up
   153 // The following section are all indirect dependencies arising from TEF testexecute depending
   156 
   154 // on apparc
   157 #include <apparc.iby>		/* Application architecture DLLs */
   155 #include <mmcommon.iby>
   158 #include <emime.iby>		/* Mime recognition */
       
   159 
       
   160 // Stop buildrom complaining. Existing textshell.oby seems to be broken too.
       
   161 
       
   162 #include <ocsp.iby>
       
   163 #include <certman.iby>
       
   164 #include <openenv.iby>
       
   165 #include <swi.iby>
       
   166 
       
   167 #ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
       
   168 #include <scr.iby>
       
   169 #include <sts.iby>
       
   170 #include <sif.iby>
       
   171 #endif
       
   172 
       
   173 #include <ezlib.iby>
   156 #include <ezlib.iby>
   174 file=ABI_DIR\BUILD_DIR\Http.dll                 System\Libs\Http.dll
   157 file=ABI_DIR\BUILD_DIR\Http.dll                 System\Libs\Http.dll
   175 file=ABI_DIR\BUILD_DIR\httputils.dll			System\Libs\httputils.dll
   158 file=ABI_DIR\BUILD_DIR\httputils.dll			System\Libs\httputils.dll
   176 #include <asnpkcs.iby>
   159 #include <asnpkcs.iby>
   177 #include <filetokens.iby>
   160 #include <filetokens.iby>
   178 #include <imageconversion.iby>
   161 #include <imageconversion.iby>
       
   162 #include <ocsp.iby>
       
   163 #include <certman.iby>
       
   164 #include <swi.iby>
       
   165 #include <bluetooth.iby>
       
   166 #include <openenv.iby>
       
   167 #ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
       
   168 #include <scr.iby>
       
   169 #include <sts.iby>
       
   170 #include <sif.iby>
       
   171 #endif
       
   172 #ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
       
   173 #include <scr.iby>
       
   174 #include <sts.iby>
       
   175 #include <sif.iby>
       
   176 #endif
       
   177 #include <caf.iby>
       
   178 #include <apparc.iby>		/* Application architecture DLLs */
       
   179 #include <emime.iby>		/* Mime recognition */
       
   180 // This is the end of the indirect dependencies arising from TEF testexecute
       
   181 // depending on apparc
   179 
   182 
   180 file=ABI_DIR\BUILD_DIR\eikbackupsrv.dll	System\Libs\eikbackupsrv.dll
   183 #include <testexecute.iby>		// TEF
   181 
   184 
   182 #endif /* __MINIGUI_OBY__ */
   185 #endif /* __MINIGUI_OBY__ */