pushmtm/group/PushMtmUtil.mmp
branchRCL_3
changeset 69 4455192101e4
equal deleted inserted replaced
65:8e6fa1719340 69:4455192101e4
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Project specification file
       
    15 *
       
    16 */
       
    17 
       
    18 #include <defaultcaps.hrh>
       
    19 #include <data_caging_paths.hrh>
       
    20 #include <bldvariant.hrh>
       
    21 #include <platform_paths.hrh>
       
    22 #include <platform/mw/browser_platform_variant.hrh>
       
    23 
       
    24 TARGET          PushMtmUtil.dll
       
    25 TARGETTYPE      dll
       
    26 UID             0x1000008d 0x10008D44
       
    27 
       
    28 CAPABILITY      CAP_GENERAL_DLL
       
    29 VENDORID        VID_DEFAULT
       
    30 
       
    31 USERINCLUDE     ../MtmUtilInc
       
    32 USERINCLUDE     ../Inc
       
    33 
       
    34 APP_LAYER_SYSTEMINCLUDE
       
    35 #if defined(__PLATFORM_VERSION_32__)
       
    36 SYSTEMINCLUDE   APP_LAYER_PUBLIC_EXPORT_PATH(push)
       
    37 #endif
       
    38 
       
    39 SOURCEPATH      ../MtmUtilSrc
       
    40 SOURCE          PushAsyncOpRunner.cpp
       
    41 #ifdef __PUSH_WHITELIST
       
    42 SOURCE          PushAuthenticationUtilitiesWL.cpp
       
    43 #else  // __PUSH_WHITELIST
       
    44 SOURCE          PushAuthenticationUtilitiesPure.cpp
       
    45 #endif // __PUSH_WHITELIST
       
    46 SOURCE          PushInitiator.cpp
       
    47 SOURCE          PushInitiatorList.cpp
       
    48 SOURCE          PushMtmOperation.cpp
       
    49 SOURCE          PushMtmSettings.cpp
       
    50 SOURCE          PushMtmUtil.cpp
       
    51 SOURCE          PushMtmUtilPanic.cpp
       
    52 #ifdef __PUSH_WHITELIST
       
    53 SOURCE          WhiteListImporterWL.cpp
       
    54 #else  // __PUSH_WHITELIST
       
    55 SOURCE          WhiteListImporterDummy.cpp
       
    56 #endif // __PUSH_WHITELIST
       
    57 
       
    58 // Define the following __TEST_LOG_MMP macro if logging is required.
       
    59 // Uncomment it if you want logging. This macro is used only in the mmp file.
       
    60 // In the source files use __TEST_LOG__.
       
    61 //#define __TEST_LOG_MMP
       
    62 
       
    63 #if defined __TEST_LOG_MMP
       
    64 MACRO           __TEST_LOG__
       
    65 #endif
       
    66 
       
    67 LIBRARY         efsrv.lib
       
    68 LIBRARY         estor.lib
       
    69 LIBRARY         euser.lib
       
    70 LIBRARY         featmgr.lib
       
    71 #ifdef __TEST_LOG_MMP
       
    72 DEBUGLIBRARY         flogger.lib
       
    73 #endif
       
    74 LIBRARY			inetprotutil.lib
       
    75 LIBRARY         msgs.lib
       
    76 #ifdef __PUSH_WHITELIST
       
    77 LIBRARY         PushMsgEntry.lib
       
    78 LIBRARY         WapPushUtils.lib
       
    79 #endif // __PUSH_WHITELIST
       
    80 LIBRARY         SISLPushMsgUtils.lib
       
    81 LIBRARY         CENTRALREPOSITORY.lib
       
    82 
       
    83 #if defined(ARMCC)
       
    84     DEFFILE ../EABI/PUSHMTMUTILU_EKA2.def
       
    85 #else
       
    86     DEFFILE ../BWinsCw/PUSHMTMUTILU_EKA2.def
       
    87 #endif
       
    88