tsrc/consoleplayer/player/group/consoleplayer.mmp
changeset 33 e1b6d78dfe6a
child 36 20d2741ccdad
equal deleted inserted replaced
29:b818131c88a3 33:e1b6d78dfe6a
       
     1 /*
       
     2  * Copyright (c) 2010 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:
       
    15  * This file provides the information required for building the
       
    16  * Console Player test app.
       
    17  */
       
    18 
       
    19 #include <platform_paths.hrh>
       
    20 #include <bldvariant.hrh>
       
    21 
       
    22 TARGET          consoleplayer.exe
       
    23 TARGETTYPE      exe
       
    24 UID             0x0 0x10207C89
       
    25 VENDORID        VID_DEFAULT
       
    26 
       
    27 CAPABILITY      ALL -TCB
       
    28 
       
    29 EPOCSTACKSIZE   0x5000             //20KB
       
    30 EPOCHEAPSIZE    0x100000 0x1000000 //1MB-16MB
       
    31 
       
    32 START RESOURCE  consoleplayer_reg.rss
       
    33 TARGETPATH 	    \private\10003a3f\apps
       
    34 END 
       
    35 
       
    36 USERINCLUDE     ..\..\common
       
    37 USERINCLUDE     ..\inc
       
    38 USERINCLUDE     ..\src\mmf
       
    39 
       
    40 SOURCEPATH      ..\..\common
       
    41 SOURCE          testappbase.cpp
       
    42 SOURCE          timercallback.cpp
       
    43 
       
    44 SOURCEPATH      ..\src
       
    45 SOURCE          consoleplayer.cpp
       
    46 SOURCE          playerwindow.cpp
       
    47 
       
    48 SOURCEPATH      ..\src\mmf
       
    49 SOURCE          mmfplayerwindow.cpp
       
    50 
       
    51 MW_LAYER_SYSTEMINCLUDE
       
    52 SYSTEMINCLUDE   \epoc32\include
       
    53 SYSTEMINCLUDE   \epoc32\include\stdapis
       
    54 
       
    55 LIBRARY         euser.lib
       
    56 LIBRARY         efsrv.lib
       
    57 LIBRARY         mediaclientvideo.lib
       
    58 LIBRARY	        gce.lib 
       
    59 LIBRARY         ws32.lib 
       
    60 LIBRARY         gdi.lib
       
    61 LIBRARY		    fntstr.lib
       
    62 LIBRARY         fbscli.lib
       
    63 LIBRARY         estor.lib 
       
    64 LIBRARY         ecom.lib
       
    65 
       
    66 // for volume key handling
       
    67 LIBRARY         remconcoreapi.lib
       
    68 LIBRARY         remconinterfacebase.lib
       
    69 
       
    70 // ----------------------------
       
    71 // CVideoPlayer TESTING SUPPORT
       
    72 // ----------------------------
       
    73 
       
    74 // Uncomment this out to use CVideoPlayerUtility API instead of CVideoPlayerUtility2.
       
    75 //MACRO __USE_VIDEOPLAYER_1__
       
    76 
       
    77 // --------------------------
       
    78 // OpenMAX AL TESTING SUPPORT
       
    79 // --------------------------
       
    80 
       
    81 #ifdef FF_OPENMAX_AL
       
    82 
       
    83 SYSTEMINCLUDE   \epoc32\include\platform\mw\khronos
       
    84 
       
    85 USERINCLUDE  ..\src\openmax_al
       
    86 SOURCEPATH   ..\src\openmax_al
       
    87 
       
    88 SOURCE       opmaxplayerwindow.cpp
       
    89 SOURCE       openmaxplayerutility.cpp
       
    90 LIBRARY      openmaxal.lib
       
    91 LIBRARY      libc.lib
       
    92 
       
    93 #endif