sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// ecomserver.exe Plug-in server framework
|
sl@0
|
15 |
// When macro defined trace messages are compiled in and sent to RDebug
|
sl@0
|
16 |
// This line must always be commented before submitting to the MCL. See EComDebug.h
|
sl@0
|
17 |
// MACRO ECOM_TRACE
|
sl@0
|
18 |
// EPOCHEAPSIZE
|
sl@0
|
19 |
// Investigations were carried out for defect INC115057. It was found (using RDir rather
|
sl@0
|
20 |
// than CDir) that after a scan of around 1150 plug-ins the committed heap size increased
|
sl@0
|
21 |
// from 3980 to 618380 bytes. After a re-scan the committed heap size was still 618380.
|
sl@0
|
22 |
// The max is set to 2MB to avoid overflows when the number of plug-ins a licensee has is larger.
|
sl@0
|
23 |
// The min is set to 192K. This is approximately 85% of the techview committed heap after bootup
|
sl@0
|
24 |
// so all devices will need at least this. (In techview environment with 317 plug-ins the committed
|
sl@0
|
25 |
// heap size after bootup was 233K)
|
sl@0
|
26 |
//
|
sl@0
|
27 |
//
|
sl@0
|
28 |
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@file
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
|
sl@0
|
33 |
EPOCHEAPSIZE 0x00030000 0x00200000
|
sl@0
|
34 |
|
sl@0
|
35 |
TARGET ecomserver.exe
|
sl@0
|
36 |
|
sl@0
|
37 |
targettype EXE
|
sl@0
|
38 |
|
sl@0
|
39 |
// Dynamic Dll UID followed by the unique UID for this executable
|
sl@0
|
40 |
UID 0x1000008D 0x10009D8F
|
sl@0
|
41 |
VENDORID 0x70000001
|
sl@0
|
42 |
CAPABILITY ProtServ
|
sl@0
|
43 |
SOURCEPATH ../../Framework/frame
|
sl@0
|
44 |
|
sl@0
|
45 |
// And keep this server side
|
sl@0
|
46 |
SOURCE EComServerStart.cpp
|
sl@0
|
47 |
SOURCE EComServer.cpp EComServerSession.cpp resolvercache.cpp
|
sl@0
|
48 |
SOURCE Registrar.cpp RegistryData.cpp DefaultResolver.cpp
|
sl@0
|
49 |
SOURCE RegistryResolveTransaction.cpp
|
sl@0
|
50 |
SOURCE ParseImplementationData.cpp
|
sl@0
|
51 |
SOURCE Discoverer.cpp BackupNotifier.cpp
|
sl@0
|
52 |
SOURCE DowngradePath.cpp
|
sl@0
|
53 |
|
sl@0
|
54 |
SOURCE ImplementationInformation.cpp RomOnlyResolver.cpp
|
sl@0
|
55 |
SOURCE EComEntry.cpp
|
sl@0
|
56 |
SOURCE clientrequest.cpp
|
sl@0
|
57 |
SOURCE EComEntryBase.cpp
|
sl@0
|
58 |
SOURCE ServerStartupManager.cpp
|
sl@0
|
59 |
SOURCE DriveInfo.cpp
|
sl@0
|
60 |
SOURCE FileUtils.cpp
|
sl@0
|
61 |
SOURCE EComPerformance.cpp
|
sl@0
|
62 |
#ifdef __ECOM_SERVER_TESTABILITY__
|
sl@0
|
63 |
SOURCE TestHarnessDomainMember.cpp
|
sl@0
|
64 |
#endif
|
sl@0
|
65 |
SOURCE EComPatchDataConstantv2.cpp
|
sl@0
|
66 |
|
sl@0
|
67 |
USERINCLUDE ../../Framework/inc ../../Test_Bed/inc
|
sl@0
|
68 |
OS_LAYER_SYSTEMINCLUDE_SYMBIAN
|
sl@0
|
69 |
|
sl@0
|
70 |
LIBRARY euser.lib efsrv.lib estor.lib bafl.lib domaincli.lib
|
sl@0
|
71 |
LIBRARY bsul.lib hal.lib
|
sl@0
|
72 |
|
sl@0
|
73 |
SMPSAFE
|