os/mm/mmdevicefw/mdf/mmpfiles/omxcomponent.mmp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // @file
    15 // @SYMPurpose		omxcomponent.dll A component that provides Symbian C++
    16 // translation to OMX components.
    17 // 
    18 //
    19 
    20 #include		"../src/openmax/omxuids.hrh"	// get UIDs
    21 
    22 TARGET			omxcomponent.dll 
    23 CAPABILITY		ALL -TCB
    24 TARGETTYPE		dll
    25 UID				KSharedLibraryUidDefine KOmxComponentDllDefine
    26 VENDORID		0x70000001
    27 
    28 USERINCLUDE		../src/openmax
    29 USERINCLUDE		../inc/openmax
    30 
    31 OS_LAYER_SYSTEMINCLUDE_SYMBIAN
    32 
    33 SOURCEPATH		../src/openmax
    34 SOURCE			omxcomponentbody.cpp
    35 SOURCE			omxprocessingunit.cpp
    36 SOURCE			omxinputport.cpp
    37 SOURCE			omxoutputport.cpp
    38 SOURCE			omxinputportbody.cpp
    39 SOURCE			omxoutputportbody.cpp
    40 
    41 LIBRARY			euser.lib
    42 LIBRARY			ecom.lib
    43 LIBRARY			mmcommonutils.lib
    44 LIBRARY			omxilcoreclient.lib
    45 LIBRARY			mmfserverbaseclasses.lib
    46 
    47 DEFFILE			omxcomponent.def
    48 NOSTRICTDEF
    49 
    50