|
1 /* |
|
2 * Copyright (c) 2005 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 the License "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: Feeds server |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <bldvariant.hrh> |
|
20 #include <data_caging_paths.hrh> |
|
21 #include <platform_paths.hrh> |
|
22 #include <platform/mw/Browser_platform_variant.hrh> |
|
23 |
|
24 |
|
25 TARGET FeedsServer.exe |
|
26 TARGETTYPE exe |
|
27 EPOCSTACKSIZE 0x5000 |
|
28 EPOCHEAPSIZE 0x5000 0x1000000 |
|
29 |
|
30 UID 0x1000008d 0x1020728E |
|
31 |
|
32 VENDORID VID_DEFAULT |
|
33 CAPABILITY CAP_SERVER NetworkControl -Location |
|
34 |
|
35 // uncomment to enable logs |
|
36 //MACRO _DEBUG |
|
37 //#define _DEBUG |
|
38 |
|
39 #ifdef RD_SECURE_RES_BIN |
|
40 TARGETPATH /sys/bin |
|
41 #else |
|
42 TARGETPATH /System/Programs |
|
43 #endif |
|
44 |
|
45 |
|
46 // FeedsServer/Server sources |
|
47 SOURCEPATH ../FeedsServer/Server/src |
|
48 SOURCE FeedsDatabase.cpp |
|
49 SOURCE FeedsServer.cpp |
|
50 SOURCE FeedsServerMain.cpp |
|
51 SOURCE FeedsServerSession.cpp |
|
52 SOURCE Task.cpp |
|
53 SOURCE UpdateFeedTask.cpp |
|
54 SOURCE UpdateAllFeedsTask.cpp |
|
55 SOURCE ImportFeedsTask.cpp |
|
56 SOURCE BackRestoreHandler.cpp |
|
57 SOURCE UpdateManager.cpp |
|
58 SOURCE UpdateQueue.cpp |
|
59 |
|
60 |
|
61 // FeedsServer/FeedHandler sources |
|
62 SOURCEPATH ../FeedsServer/FeedHandler/src |
|
63 SOURCE AtomFeedParser.cpp |
|
64 SOURCE FeedHandler.cpp |
|
65 SOURCE FeedParser.cpp |
|
66 SOURCE RssFeedParser.cpp |
|
67 |
|
68 // FeedsServer/FolderHandler sources |
|
69 SOURCEPATH ../FeedsServer/FolderHandler/src |
|
70 SOURCE OpmlParser.cpp |
|
71 SOURCE OpmlWriter.cpp |
|
72 |
|
73 SOURCEPATH ../FeedsServer/UrlHandler/src |
|
74 SOURCE FileHandler.cpp |
|
75 SOURCE HttpConnection.cpp |
|
76 SOURCE ServerHttpConnection.cpp |
|
77 SOURCE SessionHttpConnection.cpp |
|
78 SOURCE HttpHandler.cpp |
|
79 SOURCE UrlHandlerFactory.cpp |
|
80 |
|
81 SOURCEPATH ../FeedsServer/XmlUtils/src |
|
82 SOURCE CleanupLibXml2.cpp |
|
83 SOURCE XmlEncoding.cpp |
|
84 SOURCE XmlEntity.cpp |
|
85 SOURCE XmlUtils.cpp |
|
86 |
|
87 |
|
88 // Utils sources |
|
89 SOURCEPATH ../FeedsServer/Common/src |
|
90 SOURCE LeakTracker.cpp |
|
91 SOURCE Packed.cpp |
|
92 SOURCE PackedFeed.cpp |
|
93 SOURCE PackedFolder.cpp |
|
94 |
|
95 // Include paths |
|
96 USERINCLUDE ../FeedsServer/Server/inc |
|
97 USERINCLUDE ../FeedsServer/Common/inc |
|
98 USERINCLUDE ../FeedsServer/FeedHandler/inc |
|
99 USERINCLUDE ../FeedsServer/FolderHandler/inc |
|
100 USERINCLUDE ../FeedsServer/UrlHandler/inc |
|
101 USERINCLUDE ../FeedsServer/XmlUtils/inc |
|
102 USERINCLUDE ../../inc |
|
103 |
|
104 |
|
105 MW_LAYER_SYSTEMINCLUDE |
|
106 MW_LAYER_LIBC_SYSTEMINCLUDE |
|
107 |
|
108 // Libraries |
|
109 LIBRARY euser.lib |
|
110 #ifdef _DEBUG |
|
111 LIBRARY flogger.lib |
|
112 #else |
|
113 DEBUGLIBRARY flogger.lib |
|
114 #endif |
|
115 LIBRARY bafl.lib |
|
116 LIBRARY InetProtUtil.lib |
|
117 LIBRARY http.lib |
|
118 LIBRARY efsrv.lib |
|
119 LIBRARY XmlEngine.lib |
|
120 LIBRARY XmlEngineDOM.lib |
|
121 LIBRARY XmlEngineUtils.Lib |
|
122 LIBRARY estlib.lib |
|
123 LIBRARY HttpFilterCommon.lib |
|
124 LIBRARY connectionmanager.lib |
|
125 LIBRARY ecom.lib |
|
126 LIBRARY commdb.lib |
|
127 LIBRARY charconv.lib |
|
128 LIBRARY edbms.lib |
|
129 LIBRARY estor.lib |
|
130 LIBRARY centralrepository.lib |
|
131 LIBRARY apengine.lib |
|
132 LIBRARY ESock.lib |
|
133 LIBRARY Avkon.lib |
|
134 LIBRARY etel3rdparty.lib |
|
135 LIBRARY webutils.lib |
|
136 LIBRARY sysutil.lib |