dvrengine/CommonRecordingEngine/group/CommonRecordingEngine.mmp
branchRCL_3
changeset 22 826cea16efd9
parent 21 798ee5f1972c
child 23 13a33d82ad98
equal deleted inserted replaced
21:798ee5f1972c 22:826cea16efd9
     1 /*
       
     2 * Copyright (c) 2007 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:    Symbian style build specification common recording engine*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 #include <platform_paths.hrh>
       
    20 #include "../inc/CRServerConsts.hrh"
       
    21 #include "../inc/VideoServiceUtilsConf.hrh"
       
    22 
       
    23 //OPTION ARMCC --asm --interleave
       
    24 ALWAYS_BUILD_AS_ARM
       
    25 
       
    26 TARGET          CommonRecordingEngine.exe
       
    27 TARGETTYPE      exe
       
    28 UID             0x1000008d KCRServerUid
       
    29 
       
    30 CAPABILITY      CAP_APPLICATION NetworkControl -DRM -AllFiles
       
    31 VENDORID        VID_DEFAULT
       
    32 
       
    33 SOURCEPATH      ../src
       
    34 SOURCE          CCRServer.cpp
       
    35 SOURCE          CCRSession.cpp
       
    36 SOURCE          CCREngine.cpp
       
    37 SOURCE          CCRPacketBuffer.cpp
       
    38 SOURCE          CCRRtspSink.cpp
       
    39 SOURCE          CCRNullSink.cpp
       
    40 SOURCE          CCRStreamingSession.cpp
       
    41 SOURCE          CCRRtspPacketSource.cpp
       
    42 SOURCE          CCRRtpTcpStreamer.cpp
       
    43 SOURCE          CCRRtpTcpStream.cpp
       
    44 SOURCE          CCRConnection.cpp
       
    45 SOURCE          CCRRtspResponse.cpp
       
    46 SOURCE          CCRRtspCommand.cpp
       
    47 SOURCE          CCRRtspCommon.cpp
       
    48 SOURCE          CCRSock.cpp
       
    49 SOURCE          CCRTimer.cpp
       
    50 SOURCE          CCRPacketSinkBase.cpp
       
    51 SOURCE          CCRPacketSourceBase.cpp
       
    52 SOURCE          CCRPunchPacketSender.cpp
       
    53 SOURCE          CCRClientInformer.cpp
       
    54 #ifdef RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    55 SOURCE          CCRRtpFileSource.cpp
       
    56 SOURCE          CCRNullSource.cpp
       
    57 SOURCE          CCRRtpRecordSink.cpp
       
    58 SOURCE          CCRXpsSink.cpp
       
    59 #endif // RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    60 
       
    61 USERINCLUDE     ../inc
       
    62 USERINCLUDE     ../../../conf/
       
    63 
       
    64 #ifdef RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    65 USERINCLUDE     ../DvrRtpClipHandler/inc
       
    66 USERINCLUDE     ../DvrRtpUtils/inc
       
    67 #endif // RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    68 
       
    69 MW_LAYER_SYSTEMINCLUDE 
       
    70 
       
    71 LIBRARY         euser.lib
       
    72 LIBRARY         esock.lib              // Network connection
       
    73 LIBRARY         insock.lib             // Inet address
       
    74 LIBRARY         inetprotutil.lib       // URI parsing utils
       
    75 LIBRARY         commdb.lib             // TCommDbConnPref et al.
       
    76 LIBRARY         hash.lib               // CMD5 class
       
    77 LIBRARY         rtp.lib                // RTP
       
    78 LIBRARY         efsrv.lib              // File server
       
    79 LIBRARY         connmon.lib            // RConnectionMonitor
       
    80 LIBRARY         centralrepository.lib  //
       
    81 LIBRARY         DvrSdpparser.lib       // DVR SDP parser
       
    82 LIBRARY         flogger.lib            // File logger
       
    83 LIBRARY         PlatformEnv.lib
       
    84 LIBRARY         imut.lib               // TImCodecB64
       
    85 
       
    86 #ifdef RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    87 STATICLIBRARY   XPSPacketSink.lib      // XPS packet sink
       
    88 LIBRARY         DvrRtpclipHandler.lib  // Propriatary rtp format
       
    89 LIBRARY         DvrRtpUtils.lib        // DVR rtp utils
       
    90 #ifdef VIA_FEA_IPTV_USE_IPDC
       
    91 LIBRARY         H264GenrToLocalDepack.lib
       
    92 #endif // VIA_FEA_IPTV_USE_IPDC
       
    93 #endif // RD_IPTV_FEA_RTP_CLIP_SUPPORT
       
    94 
       
    95 START WINS      
       
    96 //EXPORTUNFROZEN
       
    97 END
       
    98 
       
    99 START MARM
       
   100 // ?marm_specific_information
       
   101 END