bluetoothengine/btui/Ecom/group/BtuiPlugin.mmp
branchRCL_3
changeset 56 9386f31cc85b
parent 0 f63038272f30
equal deleted inserted replaced
55:613943a21004 56:9386f31cc85b
       
     1 /*
       
     2 * Copyright (c) 2002-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 "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:  This module contains the views of BTUI.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #include <platform_paths.hrh>
       
    20 #include <data_caging_paths.hrh>
       
    21 #include <bldvariant.hrh>
       
    22 
       
    23 
       
    24 CAPABILITY          CAP_ECOM_PLUGIN NetworkControl
       
    25 TARGET              BtuiPlugin.dll 
       
    26 TARGETTYPE          PLUGIN
       
    27 UID                 0x10009D8D 0x1020742B // UPDATE THIS
       
    28 VENDORID            VID_DEFAULT
       
    29 
       
    30 //********* UIDs *************
       
    31 //0x1020742B 	//DLL UID
       
    32 //0x1020742C 	//Impl1. UID
       
    33 //0x1020745C	//impl2. UID
       
    34 //0x1020745D	//impl3. UID 
       
    35 //****************************
       
    36 
       
    37 SOURCEPATH      ../src
       
    38 SOURCE          BTUIMainContainer.cpp
       
    39 SOURCE          BTUIMainView.cpp
       
    40 SOURCE          BTUIViewsCommonUtils.cpp
       
    41 SOURCE          BTUIKeyWatcher.cpp
       
    42 SOURCE          BTUIActive.cpp
       
    43 
       
    44 #ifdef __BT_SAP
       
    45 SOURCE          BTUISap.cpp
       
    46 #else
       
    47 SOURCE          BTUINonSap.cpp
       
    48 #endif
       
    49 
       
    50 SOURCE          BTUIBlockedDevicesView.cpp
       
    51 SOURCE          BTUIPairedDevicesView.cpp
       
    52 SOURCE          BTUIDeviceContainer.cpp
       
    53 SOURCE          BtuiPluginImplementationTable.cpp
       
    54 SOURCE          btuipluginman.cpp
       
    55 
       
    56 //BTUI plugin resource definition
       
    57 START RESOURCE  ../data/BtuiViewResources.rss
       
    58 HEADER
       
    59 TARGETPATH 		RESOURCE_FILES_DIR
       
    60 LANGUAGE_IDS
       
    61 END  
       
    62 
       
    63 
       
    64 //***********ECOM resource definition******************
       
    65 //--Ecom resource TARGET name must be same as DLL name,
       
    66 //--otherwise Ecom won't recognise it. 
       
    67 //*****************************************************
       
    68 START RESOURCE      ../data/1020742B.rss
       
    69 TARGET              BtuiPlugin.rsc   
       
    70 END 
       
    71 
       
    72 
       
    73 USERINCLUDE     ../inc	
       
    74 USERINCLUDE     ../../inc	
       
    75 USERINCLUDE	../data //for documents
       
    76 
       
    77 
       
    78 SYSTEMINCLUDE   ../../inc   	//for private API headers (BluetoothEngine subsystem)
       
    79 SYSTEMINCLUDE   ../../../inc    //for internal API headers (localconnectivity)
       
    80 APP_LAYER_SYSTEMINCLUDE
       
    81 
       
    82 SYSTEMINCLUDE   /epoc32/include/ecom
       
    83 
       
    84 #ifdef __SERIES60_HELP
       
    85 SYSTEMINCLUDE   /epoc32/include/cshelp
       
    86 #endif
       
    87 LIBRARY         btdevmodel.lib	// Model of BTUI 
       
    88 LIBRARY         btengdiscovery.lib	// device search
       
    89 LIBRARY         btengsettings.lib	// main settings view
       
    90 LIBRARY			btengdevman.lib		// sap name,PairedDevicesView,Blocked devices view
       
    91 LIBRARY			btengconnman.lib	// sap address, connect/disconnect device
       
    92 LIBRARY			btmanclient.lib		// TBTRegistrySearch for sap address
       
    93 LIBRARY         euser.lib apparc.lib cone.lib       // Symbian OS framework libraries
       
    94 LIBRARY         eikcore.lib eikcoctl.lib eikctl.lib // UIKON libraries
       
    95 LIBRARY         avkon.lib                           // Series 60 UI library
       
    96 LIBRARY         bafl.lib                            // Basic Application Framework Library
       
    97 LIBRARY         btdevice.lib                        // Bluetooth device handling routines
       
    98 LIBRARY         bluetooth.lib                       // Bluetooth device address handling routines
       
    99 LIBRARY         commonengine.lib                    // Series 60 common components library publish & subsribe and string loader
       
   100 LIBRARY         aknnotify.lib                       // Avkon global notes
       
   101 LIBRARY         AknSkins.lib                        // Skinned icons
       
   102 LIBRARY         aknicon.lib
       
   103 LIBRARY         centralrepository.lib               // Central Repository
       
   104 LIBRARY         FeatMgr.lib
       
   105 LIBRARY         ecom.lib
       
   106 LIBRARY         charconv.lib
       
   107 LIBRARY         esock.lib
       
   108 
       
   109 LIBRARY     	GSEcomPlugin.lib
       
   110 LIBRARY         GSFramework.lib
       
   111 
       
   112 // For cover display support:
       
   113 LIBRARY         eikdlg.lib
       
   114 LIBRARY         estor.lib
       
   115 
       
   116 
       
   117 #ifdef __BT_SAP
       
   118 //LIBRARY         BTSap.lib
       
   119 #endif
       
   120                 
       
   121 DEBUGLIBRARY    flogger.lib                         // File logging services
       
   122 
       
   123 #ifdef __SERIES60_HELP
       
   124 LIBRARY         hlplch.lib                          // Help library
       
   125 #endif
       
   126 
       
   127 LIBRARY         egul.lib 
       
   128 LIBRARY         btfeatures.lib
       
   129 
       
   130 // This is optional - used only by Codewarrior IDE for .RSS file editing.
       
   131 //DOCUMENT            ../data/1020742B.rss 
       
   132 //DOCUMENT            ../data/BtuiViewResources.rss
       
   133 
       
   134 //**** End of .mmp *****