browserutilities/schemehandler/SchemeDispatcher/group/SchemeDispatcher.mmp
changeset 0 dd21522fd290
child 15 60c5402cb945
equal deleted inserted replaced
-1:000000000000 0:dd21522fd290
       
     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: 
       
    15 *      Project specification for Scheme Handler Dispatcher.   
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 #include <platform_paths.hrh>
       
    21 #include <platform/mw/Browser_platform_variant.hrh>
       
    22 #include    <platform/mw/SchemeDefs.hrh>
       
    23 
       
    24 TARGET      SchemeDispatcher.dll
       
    25 TARGETTYPE  PLUGIN
       
    26 UID         0x10009D8D SCHEME_DISPATCHER_UID
       
    27 
       
    28 VENDORID    VID_DEFAULT
       
    29 
       
    30 SOURCEPATH ../data
       
    31 START RESOURCE SCHEME_DISPATCHER_UID_RSS_NAME
       
    32 	TARGET SchemeDispatcher.rsc
       
    33 END
       
    34 
       
    35 CAPABILITY  CAP_ECOM_PLUGIN
       
    36 
       
    37 SOURCEPATH  ../src
       
    38 
       
    39 SOURCE      DllEntryPoint.cpp
       
    40 SOURCE      BaseHandler.cpp
       
    41 SOURCE      SchemeProxy.cpp
       
    42 SOURCE      FileHandler.cpp
       
    43 SOURCE      HttpHandler.cpp
       
    44 SOURCE      RtspHandler.cpp
       
    45 SOURCE      MailToHandler.cpp
       
    46 SOURCE      WtaiHandler.cpp
       
    47 SOURCE      TelHandler.cpp
       
    48 SOURCE      CtiHandler.cpp
       
    49 SOURCE      MmsHandler.cpp
       
    50 
       
    51 USERINCLUDE     ../inc
       
    52 SYSTEMINCLUDE     ../../../../inc
       
    53 
       
    54 MW_LAYER_SYSTEMINCLUDE
       
    55 MW_LAYER_ECOM_SYSTEMINCLUDE
       
    56 
       
    57 LIBRARY     euser.lib
       
    58 LIBRARY	    ECOM.LIB
       
    59 LIBRARY	    cone.lib
       
    60 LIBRARY     commonui.lib
       
    61 LIBRARY     apgrfx.lib                                                                              
       
    62 LIBRARY     apmime.lib
       
    63 LIBRARY     apparc.lib
       
    64 LIBRARY     efsrv.lib
       
    65 LIBRARY     BROWSERTELSERVICE.LIB
       
    66 LIBRARY     INETPROTUTIL.LIB
       
    67 LIBRARY     estor.lib
       
    68 LIBRARY     ws32.lib
       
    69 LIBRARY     ServiceHandler.lib
       
    70 LIBRARY     BrowserLauncher.lib
       
    71 LIBRARY     avkon.lib
       
    72 LIBRARY Centralrepository.lib
       
    73 
       
    74 // Define this macro if you wish to enable logging
       
    75 //#define __TEST_SCHEMEDISP_LOG_ENABLED
       
    76 
       
    77 #ifdef __TEST_SCHEMEDISP_LOG_ENABLED
       
    78 	MACRO __SCHEMEDISP_LOG__
       
    79 	DEBUGLIBRARY     flogger.lib
       
    80 #endif	// __TEST_SCHEMEDISP_LOG_ENABLED
       
    81 
       
    82