|
1 /* |
|
2 * Copyright (c) 2003-2008 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: Makefile of DRM Engine & DRM Rights Database |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #include <platform_paths.hrh> |
|
20 |
|
21 TARGET RightsServer.exe |
|
22 TARGETTYPE EXE |
|
23 |
|
24 UID 0x1000008d 0x101F51F2 |
|
25 CAPABILITY CAP_SERVER DRM CommDD ProtServ PowerMgmt Location |
|
26 VENDORID VID_DEFAULT |
|
27 |
|
28 // Default system include paths for middleware layer modules. |
|
29 MW_LAYER_SYSTEMINCLUDE |
|
30 SYSTEMINCLUDE /epoc32/include/libc |
|
31 SYSTEMINCLUDE /epoc32/include/connect |
|
32 |
|
33 USERINCLUDE ../server/inc |
|
34 USERINCLUDE ../agentv2/inc |
|
35 USERINCLUDE ../ro/inc |
|
36 USERINCLUDE ../dcf/inc |
|
37 USERINCLUDE ../notifier/inc |
|
38 USERINCLUDE ../utils/inc |
|
39 USERINCLUDE ../roap/inc |
|
40 USERINCLUDE ../roapstorage/inc |
|
41 USERINCLUDE ../drmclock/Inc |
|
42 USERINCLUDE ../keystorage/inc |
|
43 USERINCLUDE ../drmbackup/inc |
|
44 USERINCLUDE ../../../inc // ADo level inc dir |
|
45 |
|
46 SOURCEPATH ../server/src |
|
47 |
|
48 // DRM Engine (server side) |
|
49 SOURCE DRMRightsServer.cpp |
|
50 SOURCE DRMDbSession.cpp |
|
51 // SOURCE drmpermissionlist.cpp |
|
52 SOURCE drmparentstorage.cpp |
|
53 // SOURCE drmpermissionitem.cpp |
|
54 SOURCE DRMReplayCache.cpp |
|
55 SOURCE DRMXOma.cpp |
|
56 SOURCE DRMActiveOperation.cpp |
|
57 SOURCE DRMObsoleteFinder.cpp |
|
58 SOURCE drmconsume.cpp |
|
59 |
|
60 // DRM Rights Database |
|
61 SOURCE drmrightsdb.cpp |
|
62 SOURCE DRMRightsData.cpp |
|
63 SOURCE DRMCommonData.cpp |
|
64 SOURCE DRMRightsCleaner.cpp |
|
65 |
|
66 // DRM Metering |
|
67 #ifdef RD_DRM_METERING |
|
68 SOURCE drmmeteringdbdata.cpp |
|
69 #endif |
|
70 SOURCE drmmeteringdb.cpp |
|
71 |
|
72 // DRM Backup implementation |
|
73 SOURCEPATH ../drmbackup/src |
|
74 SOURCE DRMBackup.cpp |
|
75 SOURCE DRMBackupObserver.cpp |
|
76 |
|
77 // DRM Notifier |
|
78 SOURCEPATH ../notifier/src |
|
79 |
|
80 SOURCE DRMMessageStorage.cpp |
|
81 SOURCE DRMNotifierServer.cpp |
|
82 SOURCE DRMNotifierSession.cpp |
|
83 |
|
84 // RoapStorage |
|
85 SOURCEPATH ../roapstorage/src |
|
86 |
|
87 SOURCE RoapStorageClient.cpp |
|
88 SOURCE RoapStorageServer.cpp |
|
89 SOURCE RoapStorageSession.cpp |
|
90 SOURCE DRMContextDB.cpp |
|
91 // OCSP cert classes |
|
92 SOURCE responsedecoder.cpp |
|
93 SOURCE response.cpp |
|
94 SOURCE responsecertinfo.cpp |
|
95 SOURCE certid.cpp |
|
96 |
|
97 |
|
98 // DRM Clock |
|
99 #ifdef __DRM_CLOCK |
|
100 SOURCEPATH ../drmclock/Src |
|
101 SOURCE DRMClock.cpp |
|
102 SOURCE DRMClockServer.cpp |
|
103 SOURCE DRMClockSession.cpp |
|
104 |
|
105 SOURCE DRMNitzObserver.cpp |
|
106 SOURCE GPSWatcher.cpp |
|
107 SOURCE GPSTimeUpdater.cpp |
|
108 |
|
109 #else |
|
110 #ifdef __DRM_OMA2 |
|
111 SOURCEPATH ../DRMClock/src |
|
112 SOURCE OMA2NotSupportedWithoutDRMClock:define__DRM_CLOCKvariation.cpp |
|
113 #endif // __DRM_OMA2 |
|
114 #endif // __DRM_CLOCK |
|
115 |
|
116 // RDB and Process Watcher |
|
117 SOURCEPATH ../utils/src |
|
118 SOURCE dbwatcher.cpp |
|
119 SOURCE dirwatcher.cpp |
|
120 SOURCE procwatcher.cpp |
|
121 |
|
122 LIBRARY drmdcf.lib |
|
123 LIBRARY drmrights.lib |
|
124 LIBRARY drmserverinterfaces.lib |
|
125 LIBRARY euser.lib |
|
126 LIBRARY estor.lib |
|
127 LIBRARY efsrv.lib |
|
128 LIBRARY hash.lib |
|
129 LIBRARY cryptography.lib |
|
130 LIBRARY crypto.lib |
|
131 LIBRARY asn1.lib |
|
132 LIBRARY x509.lib |
|
133 LIBRARY x500.lib |
|
134 LIBRARY pkixcert.lib |
|
135 LIBRARY drmcrypto.lib |
|
136 LIBRARY drmkeystorage.lib |
|
137 LIBRARY edbms.lib |
|
138 LIBRARY bafl.lib |
|
139 LIBRARY etel.lib |
|
140 LIBRARY etelmm.lib |
|
141 LIBRARY abclient.lib |
|
142 LIBRARY charconv.lib |
|
143 LIBRARY dcfrep.lib |
|
144 LIBRARY drmparsers.lib // DRM message parser for RO import |
|
145 LIBRARY centralrepository.lib // Browser default AP |
|
146 LIBRARY InetProtUtil.lib // URI parser |
|
147 LIBRARY flogger.lib |
|
148 LIBRARY featmgr.lib // Feature Manager |
|
149 LIBRARY wmdrmfileserverclient.lib |
|
150 LIBRARY lbs.lib // GPS libraries |
|
151 LIBRARY eposindicator.lib // GPS positioner indicator lib |
|
152 #ifdef RD_DRM_METERING |
|
153 LIBRARY random.lib |
|
154 #endif |
|
155 |
|
156 LIBRARY StarterClient.lib // reset |
|
157 |
|
158 #ifdef RD_MULTIPLE_DRIVE |
|
159 LIBRARY platformenv.lib |
|
160 #endif |
|
161 |
|
162 LIBRARY SysUtil.lib |
|
163 // LIBRARY commonengine.lib // Backup |
|
164 |
|
165 /* |
|
166 #if !defined(WINS) |
|
167 MACRO DRM_USE_SERIALNUMBER |
|
168 LIBRARY etel.lib |
|
169 #endif |
|
170 */ |
|
171 // Uncomment the following lines to enable internal logging. |
|
172 /* |
|
173 macro _DRM_TESTING |
|
174 USERINCLUDE ../internal/tsrc_internal |
|
175 SOURCEPATH ../internal/tsrc_internal |
|
176 LIBRARY drmdebugtools.lib |
|
177 LIBRARY HAL.lib |
|
178 LIBRARY charconv.lib |
|
179 */ |
|
180 |
|
181 #if defined( WINSCW ) |
|
182 deffile ../bwinscw/ |
|
183 #elif defined( WINS ) |
|
184 deffile ../bwins/ |
|
185 #endif |
|
186 |
|
187 //SMPSAFE |