testexecfw/stf/stffw/testinterface/group/TestInterface.mmp
changeset 2 8bb370ba6d1d
equal deleted inserted replaced
1:bbd31066657e 2:8bb370ba6d1d
       
     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 "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: MMP file for STIF Test Framework's TestInterface 
       
    15 * module.
       
    16 *
       
    17 */
       
    18 
       
    19 #include <platform_paths.hrh>
       
    20 
       
    21 SMPSAFE
       
    22 
       
    23 TARGET          StifTestInterface.dll
       
    24 TARGETTYPE      dll
       
    25 
       
    26 CAPABILITY	ALL -TCB
       
    27 
       
    28 // First UID is DLL UID, Second UID is STIF Test Framework UID
       
    29 UID             0x1000008D 0x101FB3DE
       
    30 
       
    31 VENDORID 	0x101FB657
       
    32 SECUREID        0x102073E1
       
    33 
       
    34 DEFFILE         StifTestInterface.def
       
    35 
       
    36 OS_LAYER_SYSTEMINCLUDE
       
    37 
       
    38 // ------- Logger -------
       
    39 USERINCLUDE     ../../logger/STFLogger/inc
       
    40 USERINCLUDE     ../../logger/common/inc
       
    41 SOURCEPATH      ../../logger/STFLogger/src
       
    42 
       
    43 SOURCE          STFLogger.cpp
       
    44 SOURCE          STFLoggerOverFlow.cpp
       
    45 SOURCE          StifLogger.cpp
       
    46 
       
    47 
       
    48 // ------- Parser -------
       
    49 USERINCLUDE     ../../parser/inc
       
    50 SOURCEPATH      ../../parser/src
       
    51 
       
    52 SOURCE          StifParser.cpp
       
    53 SOURCE          StifSectionParser.cpp
       
    54 SOURCE          StifItemParser.cpp
       
    55 SOURCE          StifFileParser.cpp
       
    56 
       
    57 // ------- TestInterface -------
       
    58 USERINCLUDE     ../inc
       
    59 USERINCLUDE     ../../../inc
       
    60 SOURCEPATH      ../src
       
    61 
       
    62 SOURCE          TestInterface.cpp
       
    63 SOURCE          TestModuleIf.cpp
       
    64 SOURCE          StifTFwIfProt.cpp 
       
    65 SOURCE          TestModuleParameters.cpp 
       
    66 
       
    67 // ------- TestScripter's TestClass API -------
       
    68 USERINCLUDE     ../../../stfext/testmodules/scriptermod/inc
       
    69 SOURCEPATH      ../../../stfext/testmodules/scriptermod/src
       
    70 
       
    71 SOURCE          TestScripterInternal.cpp
       
    72 
       
    73 // ------- TestInterference -------
       
    74 USERINCLUDE     ../../testinterference/inc
       
    75 SOURCEPATH      ../../testinterference/src
       
    76 
       
    77 SOURCE          StifTestInterference.cpp
       
    78 
       
    79 LIBRARY         euser.lib   		// For TInt, etc.
       
    80 LIBRARY         efsrv.lib   		// For RFs file server
       
    81 LIBRARY         stiftestengine.lib 	// For testengine server
       
    82 LIBRARY         stiftestserver.lib 	// For testengine server
       
    83 LIBRARY         testscripter.lib 	// For testengine server
       
    84 LIBRARY         hal.lib     		// For logging (HAL)
       
    85 //LIBRARY         bafl.lib			// For file system utilities
       
    86 
       
    87 // End of file
       
    88 
       
    89