bluetoothengine/btsac/group/btsac.mmp
changeset 0 f63038272f30
equal deleted inserted replaced
-1:000000000000 0:f63038272f30
       
     1 /*
       
     2 * Copyright (c) 2005 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:  Lists information necessary to compile and link the component
       
    15 *
       
    16 */
       
    17 
       
    18 #include <platform_paths.hrh>
       
    19 
       
    20 // Defines the capability which process would require to load the DLL
       
    21 // i.e., a process with less capability cannot load this DLL
       
    22 // Look at defaultcaps.hrh for a list of capabilities
       
    23 CAPABILITY 	CAP_ECOM_PLUGIN
       
    24 
       
    25 // Manufacturer or platform specific Vender ID (VID). A VID to be granted to 
       
    26 // all software from the same manufacturer.
       
    27 VENDORID 	VID_DEFAULT
       
    28 
       
    29 TARGET      btsac.dll
       
    30 TARGETTYPE	PLUGIN			
       
    31 
       
    32 
       
    33 // UID2 = 0x10009d8d for ECOM plugins.
       
    34 // UID3 = the 'DLL UID' (see resource file)
       
    35 // ECom Dll recognition UID followed by the unique UID for this dll
       
    36 UID 0x10009D8D 0x10208973
       
    37 
       
    38 SOURCEPATH	../src
       
    39 SOURCE			Proxy.cpp
       
    40 SOURCE			btsacGavdp.cpp
       
    41 SOURCE			btsacactive.cpp
       
    42 SOURCE			btsaController.cpp
       
    43 SOURCE			btsacStreamerController.cpp
       
    44 SOURCE			btsacStreamEndPoint.cpp
       
    45 SOURCE			btsacSEPManager.cpp
       
    46 SOURCE			btsacState.cpp
       
    47 SOURCE			btsacStateIdle.cpp
       
    48 SOURCE 			btsacStateListening.cpp
       
    49 SOURCE			btsacStateConnecting.cpp
       
    50 SOURCE     		btsacStateConfiguring.cpp
       
    51 SOURCE			btsacStateConnected.cpp
       
    52 SOURCE			btsacStateConfigured.cpp
       
    53 SOURCE			btsacStateStreaming.cpp
       
    54 SOURCE			btsacStateSuspended.cpp
       
    55 SOURCE          btsacStateAborting.cpp
       
    56 SOURCE 			btsacActivePacketDropIoctl.cpp
       
    57 
       
    58 START RESOURCE  ../data/10208973.rss
       
    59 TARGET btsac.rsc
       
    60 END
       
    61 
       
    62 USERINCLUDE     ../inc ../common
       
    63 SYSTEMINCLUDE   ../../inc ../../../inc /epoc32/include/ecom
       
    64 MW_LAYER_SYSTEMINCLUDE
       
    65 
       
    66 
       
    67 LIBRARY			euser.lib		// Kernel API includes symbian basic class and type definitions and error codes
       
    68 LIBRARY			esock.lib		// RSocketServ is used to open Gavdp 
       
    69 LIBRARY			bluetooth.lib		// Bluetooth library is used to access bluetooth types and API's
       
    70 LIBRARY			bluetoothAV.lib		// A2DP type definitions are needed to use Gavdp
       
    71 LIBRARY			gavdp.lib		// Bluetooth Generic Audio/Video Distribution Profile (GAVDP) API 
       
    72 LIBRARY			ECom.lib		// Symbian E-Com Plugin definitions and types
       
    73 LIBRARY			sdpdatabase.lib		// SDP registeration for Advanced Audio Distribution Profile (A2DP)
       
    74 LIBRARY			btaudiostreamer.lib	// Series 60 Bluetooth Audio Streamer component's API 
       
    75 LIBRARY			btengdiscovery.lib		// Register A2DP SDP service record
       
    76 DEBUGLIBRARY	flogger.lib		// File logging services in debug.h			
       
    77 
       
    78 
       
    79 // end of file