mmfenh/advancedaudiocontroller/audiocontrollerpluginsvariant/mp3audioplaycontroller/Group/MP3AudioPlayControllerPlugin.mmp
changeset 0 71ca22bcf22a
child 43 9894ed580e4a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2004 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:  Project file for building the ECOM Dll MP3AudioPlayControllerPlugin.dll
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <data_caging_paths.hrh>
       
    20 #include <platform_paths.hrh>
       
    21 
       
    22 TARGET 		MP3AudioPlayControllerPlugin.dll
       
    23 TARGETTYPE 	PLUGIN
       
    24 UID 		0x10009D8D 0x101FAFB6
       
    25 VENDORID	VID_DEFAULT
       
    26 
       
    27 TARGETPATH 	/System/Libs/Plugins
       
    28 
       
    29 CAPABILITY CAP_ECOM_PLUGIN
       
    30 
       
    31 SOURCEPATH	../Src
       
    32 SOURCE		MP3AudioPlayControllerPlugin.cpp
       
    33 SOURCE		MP3AudioPlayControllerResource.cpp
       
    34 
       
    35 /*
       
    36 * Added condition to check WINS flag, so that Software decoder is built for Emulator
       
    37 */
       
    38 #ifdef __USE_MP3_CMMFCODEC
       
    39 SOURCE		MP3AudioPlayControllerSwDecoder.cpp
       
    40 #else
       
    41 	#ifdef WINS
       
    42 	SOURCE		MP3AudioPlayControllerSwDecoder.cpp
       
    43 	#else
       
    44 	SOURCE		MP3AudioPlayControllerHwDecoder.cpp
       
    45 	#endif
       
    46 #endif
       
    47 
       
    48 SOURCE		MP3AudioPlayControllerDecoderBuilder.cpp
       
    49 
       
    50 USERINCLUDE	../Inc ../Src
       
    51 USERINCLUDE	../../../../inc
       
    52 USERINCLUDE	../../AdvancedAudioController/Inc
       
    53 USERINCLUDE	../../DevSoundAudioOutput/Inc
       
    54 USERINCLUDE	../../DevSoundAudioInput/Inc
       
    55 USERINCLUDE	../../FileAudioOutput/Inc
       
    56 USERINCLUDE	../../AdvancedAudioControllerUtility/Inc
       
    57 USERINCLUDE     ../../DataSourceAdapter/Inc
       
    58 
       
    59 MW_LAYER_SYSTEMINCLUDE
       
    60 SYSTEMINCLUDE   /epoc32/include/ecom
       
    61 SYSTEMINCLUDE	/epoc32/include/mmf/server
       
    62 SYSTEMINCLUDE	/epoc32/include/mmf/common
       
    63 SYSTEMINCLUDE	/epoc32/include/mmf/plugin
       
    64 
       
    65 SOURCEPATH	../Data
       
    66 
       
    67 START RESOURCE 101FAFB6.rss 
       
    68 TARGET MP3AudioPlayControllerPlugin.rsc
       
    69 END
       
    70 
       
    71 START RESOURCE MP3AudioPlayControllerResource.rss
       
    72 HEADER
       
    73 TARGET MP3AudioPlayControllerResource.rsc       
       
    74 TARGETPATH    RESOURCE_FILES_DIR
       
    75 END
       
    76 
       
    77 LIBRARY 	euser.lib
       
    78 LIBRARY		mmfcontrollerframework.lib
       
    79 LIBRARY 	mmfstandardcustomcommands.lib
       
    80 LIBRARY 	mmfserverbaseclasses.lib
       
    81 LIBRARY 	AdvancedAudioController.lib
       
    82 LIBRARY		MP3AudioControllerUtility.lib
       
    83 LIBRARY         DevSoundAudioOutput.lib
       
    84 LIBRARY		FileAudioOutput.lib
       
    85 LIBRARY		bafl.lib				// Resource file
       
    86 LIBRARY		efsrv.lib
       
    87 LIBRARY         charconv.lib
       
    88 LIBRARY		FrameTable.lib
       
    89 
       
    90 #ifdef EABI
       
    91 LIBRARY     	ecom.lib
       
    92 #endif