os/graphics/windowing/windowserver/minigui/group/minigui.oby
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/windowing/windowserver/minigui/group/minigui.oby	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,185 @@
     1.4 +#ifndef __MINIGUI_OBY__
     1.5 +#define __MINIGUI_OBY__
     1.6 +
     1.7 +// Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies).
     1.8 +// All rights reserved.
     1.9 +// This component and the accompanying materials are made available
    1.10 +// under the terms of "Eclipse Public License v1.0"
    1.11 +// which accompanies this distribution, and is available
    1.12 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.13 +//
    1.14 +// Initial Contributors:
    1.15 +// Nokia Corporation - initial contribution.
    1.16 +//
    1.17 +// Contributors:
    1.18 +//
    1.19 +// Description:
    1.20 +// This OBY File is used to build Mini-Gui ROM Images.
    1.21 +// 
    1.22 +// Use the following buildrom command line, or similar:
    1.23 +//	buildrom -orombld.img -DUSE_SDIO_SD_MMC -DWITH_TVOUT -DUSE_24UBPP_DISPLAY_VARIANT_TV -D_INTERNAL_MMC -DUSE_DATA_PAGING h4hrp minigui pagedrom platsec
    1.24 +// Note there is no need to specify -D_NAND2 
    1.25 +
    1.26 +define OBEYFILE minigui
    1.27 +define ROMDATE	##TODAY##
    1.28 +
    1.29 +// We used to define _NAND2 on the commandline to buildrom.  However, it
    1.30 +// does not make rombuild create a rofs image.  Instead it needs to be
    1.31 +// specified in the oby file itself.
    1.32 +#define _NAND2
    1.33 +
    1.34 +// Undefine things in global System Include that stops the NCP rom from working.
    1.35 +#undef USE_CUSTOM_MMC_PARTITION
    1.36 +#undef SYMBIAN_EXCLUDE_SCDV
    1.37 +#undef SYMBIAN_GRAPHICS_USE_GCE 
    1.38 +#undef SYMBIAN_GRAPHICS_ADAPTATION
    1.39 +#undef SGA_SW_NO_GRAPHICSRESOURCE 
    1.40 +#undef SYMBIAN_EXCLUDE_KEYMAP  
    1.41 +
    1.42 +
    1.43 +
    1.44 +#define NO_METROTRK_APP // don't want metrotrk application
    1.45 +#define HAS_ETHERNET	// include etherDrv, ether802, DHCP
    1.46 +#define SYMBIAN_EXCLUDE_FAX
    1.47 +#undef __IPSEC
    1.48 +#define SYMBIAN_EXCLUDE_OBEX
    1.49 +
    1.50 +#ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    1.51 +#define _SSMSTARTUPMODE 8	//for ssma boot up.
    1.52 +#else
    1.53 +#define _STARTUPMODE8		// for sysstart.iby
    1.54 +#endif
    1.55 +
    1.56 +// Various workarounds to avoid dependencies on UIKON
    1.57 +
    1.58 +#define __TLS_IBY__			// exclude TLS
    1.59 +#define __TLSPROVIDER_IBY__		// exclude TLSPROVIDER 
    1.60 +#define __OBEXPROTOCOL_IBY__	// exclude obex.dll etc
    1.61 +#define __WLANEAPMETHODS_IBY__	// exclude eap_tls.msy & friends
    1.62 +// 
    1.63 +
    1.64 +#ifndef SYMBIAN_BASE_USE_GCE
    1.65 +#define SYMBIAN_BASE_USE_GCE
    1.66 +#endif
    1.67 +#ifndef SYMBIAN_GRAPHICS_USE_GCE
    1.68 +#define SYMBIAN_GRAPHICS_USE_GCE
    1.69 +#endif
    1.70 +#include <header.iby>				/* ROM header definitions */
    1.71 +#include <base.iby>					/* The lowest-level of the operating system */
    1.72 +
    1.73 +#ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
    1.74 +
    1.75 +#include <ssma.iby>			/*System State Management Architecture*/
    1.76 +#include <ssplugins.iby>		/*System State Management Plugins*/
    1.77 +
    1.78 +//Include SSM optional components to enable teams to build a plain textshell rom (on the lines of DEF128306), 
    1.79 +//following removal of h4_textshell_rom.oby.
    1.80 +#include <amastart.iby>
    1.81 +
    1.82 +#include <shma.iby>
    1.83 +#include <ssrefplugins.iby>
    1.84 +#else
    1.85 +#include <sysstart.iby>
    1.86 +#include <sysstartconfig.iby>
    1.87 +#endif // SYMBIAN_SYSTEM_STATE_MANAGEMENT
    1.88 +
    1.89 +#include <debug.iby>
    1.90 +
    1.91 +#include <eshell.iby>
    1.92 +
    1.93 +#include <centralrepository.iby>
    1.94 +	file=ABI_DIR\BUILD_DIR\abclient.dll			sys\bin\abclient.dll
    1.95 +
    1.96 +#include <crypto.iby>
    1.97 +
    1.98 +#include <c32.iby>
    1.99 +#include <ecuart.iby>
   1.100 +#include <irda.iby>
   1.101 +#include <stdlib.iby>
   1.102 +#include <gdi.iby>
   1.103 +#include <fntstore.iby>
   1.104 +#include <fbserv.iby>
   1.105 +#include <bitgdi.iby>
   1.106 +#include <iculayoutengine.iby>
   1.107 +#include <freetype.iby>
   1.108 +#include <directgdi.iby>
   1.109 +#include <wserv.iby>
   1.110 +#include <econs_wserv.iby>
   1.111 +data=DATAZ_\wsini_minigui.ini	\system\data\wsini.ini
   1.112 +
   1.113 +#include <printers.iby>
   1.114 +
   1.115 +
   1.116 +
   1.117 +#include <traces.iby>
   1.118 +
   1.119 +#include <inetprotutil.iby>		/* needed for mmfcontrollerframework.dll */
   1.120 +#include <sysagent.iby>
   1.121 +#include <network.iby>	
   1.122 +#include <dial.iby>		// needed by commsdat
   1.123 +#include <etel.iby>
   1.124 +#include <smsstack.iby>
   1.125 +#include <etelmm.iby>
   1.126 +#include <etelpckt.iby>
   1.127 +#include <mmtsy.iby>
   1.128 +#include <etelsat.iby>
   1.129 +#include <sysawatcher.iby>
   1.130 +#include <bafl.iby>
   1.131 +#include <ecom.iby>
   1.132 +#include <store.iby>
   1.133 +#include <dbms.iby>
   1.134 +#include <pwrcli.iby>
   1.135 +#include <xml.iby>
   1.136 +#include <ups.iby>
   1.137 +#include <securitycommonutils.iby>
   1.138 +
   1.139 +/* Feature Management run-time */
   1.140 +#ifdef SYMBIAN_FEATURE_MANAGER
   1.141 +
   1.142 +// Include both old and new components when Feature Manager enabled
   1.143 +#include <featmgr.iby>
   1.144 +#include <featreg.iby>
   1.145 +
   1.146 +#else 
   1.147 +
   1.148 +// Include only the original Feature Registry otherwise
   1.149 +#include <featreg.iby>
   1.150 +#ifndef ROM_FEATURE_MANAGEMENT
   1.151 +/* Provide a default configuration file for the feature registry */ 
   1.152 +data=EPOCROOT##epoc32\data\config\featreg_default.cfg    private\102744CA\featreg.cfg
   1.153 +#endif
   1.154 +#endif
   1.155 +
   1.156 +// The following section are all indirect dependencies arising from TEF testexecute depending
   1.157 +// on apparc
   1.158 +#include <mmcommon.iby>
   1.159 +#include <ezlib.iby>
   1.160 +file=ABI_DIR\BUILD_DIR\Http.dll                 System\Libs\Http.dll
   1.161 +file=ABI_DIR\BUILD_DIR\httputils.dll			System\Libs\httputils.dll
   1.162 +#include <asnpkcs.iby>
   1.163 +#include <filetokens.iby>
   1.164 +#include <imageconversion.iby>
   1.165 +#include <ocsp.iby>
   1.166 +#include <certman.iby>
   1.167 +#include <swi.iby>
   1.168 +#include <bluetooth.iby>
   1.169 +#include <openenv.iby>
   1.170 +#ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
   1.171 +#include <scr.iby>
   1.172 +#include <sts.iby>
   1.173 +#include <sif.iby>
   1.174 +#endif
   1.175 +#ifdef SYMBIAN_UNIVERSAL_INSTALL_FRAMEWORK
   1.176 +#include <scr.iby>
   1.177 +#include <sts.iby>
   1.178 +#include <sif.iby>
   1.179 +#endif
   1.180 +#include <caf.iby>
   1.181 +#include <apparc.iby>		/* Application architecture DLLs */
   1.182 +#include <emime.iby>		/* Mime recognition */
   1.183 +// This is the end of the indirect dependencies arising from TEF testexecute
   1.184 +// depending on apparc
   1.185 +
   1.186 +#include <testexecute.iby>		// TEF
   1.187 +
   1.188 +#endif /* __MINIGUI_OBY__ */