author | Tom Pritchard <tomp@symbian.org> |
Wed, 27 Oct 2010 13:24:02 +0100 | |
changeset 88 | ca165d35976d |
child 90 | 62156f66dbad |
permissions | -rw-r--r-- |
88
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
1 |
/* |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
2 |
* Copyright (c) 2004-2006 Nokia Corporation and/or its subsidiary(-ies). |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
3 |
* All rights reserved. |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
4 |
* This component and the accompanying materials are made available |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
5 |
* under the terms of "Eclipse Public License v1.0" |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
6 |
* which accompanies this distribution, and is available |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html". |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
8 |
* |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
9 |
* Initial Contributors: |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
10 |
* Nokia Corporation - initial contribution. |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
11 |
* |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
12 |
* Contributors: |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
13 |
* |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
14 |
* Description: DRM Std Key Storage Module |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
15 |
* |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
16 |
*/ |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
17 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
18 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
19 |
#include <platform_paths.hrh> |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
20 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
21 |
TARGET DrmStdKeyStorage.dll |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
22 |
TARGETTYPE DLL |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
23 |
UID 0x1000008D 0x10205CAF |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
24 |
CAPABILITY CAP_GENERAL_DLL DRM CommDD |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
25 |
VENDORID VID_DEFAULT |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
26 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
27 |
USERINCLUDE ../keystorage/inc |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
28 |
USERINCLUDE ../utils/inc |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
29 |
USERINCLUDE ../../../inc // ADo level inc dir |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
30 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
31 |
// Default system include paths for middleware layer modules. |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
32 |
MW_LAYER_SYSTEMINCLUDE |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
33 |
SYSTEMINCLUDE /epoc32/include/libc |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
34 |
SYSTEMINCLUDE /epoc32/include/ecom |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
35 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
36 |
SOURCEPATH ../keystorage/src |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
37 |
SOURCE DrmStdKeyStorage.cpp |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
38 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
39 |
LIBRARY euser.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
40 |
LIBRARY efsrv.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
41 |
LIBRARY asn1.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
42 |
LIBRARY cryptography.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
43 |
LIBRARY crypto.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
44 |
LIBRARY x500.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
45 |
LIBRARY x509.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
46 |
LIBRARY pkixcert.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
47 |
LIBRARY random.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
48 |
LIBRARY hash.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
49 |
LIBRARY etel.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
50 |
LIBRARY etelmm.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
51 |
LIBRARY flogger.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
52 |
LIBRARY featmgr.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
53 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
54 |
#ifdef RD_MULTIPLE_DRIVE |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
55 |
LIBRARY platformenv.lib |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
56 |
#endif |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
57 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
58 |
#if defined(ARMCC) |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
59 |
deffile ../eabi/ |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
60 |
#elif defined( WINSCW ) |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
61 |
deffile ../bwinscw/ |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
62 |
#elif defined( WINS ) |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
63 |
deffile ../bwins/ |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
64 |
#else |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
65 |
deffile ../bmarm/ |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
66 |
#endif |
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
67 |
|
ca165d35976d
Adding parts of the DRM Engine to be rebuilt
Tom Pritchard <tomp@symbian.org>
parents:
diff
changeset
|
68 |
SMPSAFE |