0
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 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:
|
|
15 |
* This file provides the information required for building
|
|
16 |
* DMC (Device Mode Controller).
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
#include <platform_paths.hrh>
|
|
22 |
|
|
23 |
// Remove library warning
|
|
24 |
#include "kernel/kern_ext.mmh"
|
|
25 |
#include <platform_paths.hrh>
|
|
26 |
#include <non_foundation_paths.hrh>
|
|
27 |
#include "../../config/dmc.cfg"
|
|
28 |
|
|
29 |
TARGET dmc.ldd
|
|
30 |
TARGETTYPE kext
|
|
31 |
|
|
32 |
// Remove suffix -u from def-file
|
|
33 |
NOSTRICTDEF
|
|
34 |
DEFFILE dmc.def
|
|
35 |
|
|
36 |
// Take into use if DMC has to be variated.
|
|
37 |
// FEATUREVARIANT
|
|
38 |
|
|
39 |
UID 0x100000af 0x20021197
|
|
40 |
VENDORID VID_DEFAULT
|
|
41 |
|
|
42 |
CAPABILITY ALL
|
|
43 |
|
|
44 |
USERINCLUDE ../inc
|
|
45 |
USERINCLUDE ../traces
|
|
46 |
|
|
47 |
OS_LAYER_KERNEL_SYSTEMINCLUDE
|
|
48 |
OS_LAYER_SYSTEMINCLUDE
|
|
49 |
NON_FOUNDATION_ADAPT_LAYER_SYSTEMINCLUDE
|
|
50 |
|
|
51 |
SOURCEPATH ../src
|
|
52 |
SOURCE dmc_extension.cpp
|
|
53 |
SOURCE dmc_logical_channel.cpp
|
|
54 |
SOURCE dmc_logical_device.cpp
|
|
55 |
SOURCE dmc_event_handler_ape_cent.cpp
|
|
56 |
SOURCE dmc_mce_isi.cpp
|
|
57 |
|
|
58 |
LIBRARY isaaccessextension.lib
|
|
59 |
LIBRARY isimessagekernel.lib
|
|
60 |
LIBRARY boot_reason_api.lib
|
|
61 |
|
|
62 |
EPOCALLOWDLLDATA
|
|
63 |
SMPSAFE
|
|
64 |
MACRO TRACE_MODE_KERNEL
|
|
65 |
//MACRO MUST_TRACE_FLAG
|
|
66 |
//MACRO API_TRACE_FLAG
|
|
67 |
//MACRO EVENT_TRACE_FLAG
|
|
68 |
//MACRO STATE_TRACE_FLAG
|
|
69 |
|
|
70 |
// End of File
|