debuggercdi/com.nokia.cdt.debug.common/plugin.xml
author Ed Swartz <ed.swartz@nokia.com>
Thu, 08 Apr 2010 15:03:50 -0500
changeset 1186 067198a8221d
parent 1102 fc2867001a80
child 1260 f3b387a17eb7
permissions -rw-r--r--
Bug 11067: fix some issues with the PNP launch wizard 1) If Sys TRK is detected, and you select to install a package, a Sys TRK launch is created 2) Error message was confusing when Carbide chose to install a package but SIS configuration was not complete. 3) In an internal layout, assume Sys TRK is more likely than App TRK if we cannot tell from the connection.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1096
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     2
<?eclipse version="3.4"?>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     3
<plugin>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     4
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     5
   <extension
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     6
         point="org.eclipse.debug.core.sourcePathComputers">
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     7
      <sourcePathComputer
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     8
            class="com.nokia.cdt.debug.common.internal.source.lookup.CarbideSourcePathComputerDelegate"
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
     9
            id="com.nokia.cdt.debug.common.internal.source.lookup.CarbideSourcePathComputer"/>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    10
   </extension>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    11
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    12
	<!-- *************** Source Container Types **************** -->
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    13
   
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    14
   <extension
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    15
         point="org.eclipse.debug.core.sourceContainerTypes">
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    16
      <sourceContainerType
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    17
            class="com.nokia.cdt.debug.common.internal.source.lookup.SymbianSourceContainerType"
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    18
            description="Maps source files to EPOCROOT"
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    19
            id="com.nokia.cdt.debug.common.containerType.mapping"
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    20
            name="Symbian OS SDK Mapping"/>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    21
    </extension>
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    22
1102
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    23
    <!-- Executables view -->
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    24
    
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    25
   <extension
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    26
       point="org.eclipse.cdt.debug.core.ExecutablesProvider">
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    27
      <provider class="com.nokia.cdt.debug.common.internal.executables.CarbideExecutablesProvider"/>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    28
   </extension>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    29
  
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    30
   <extension
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    31
       point="org.eclipse.cdt.debug.core.SourceFilesProvider">
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    32
      <provider class="org.eclipse.cdt.debug.edc.internal.symbols.EDCSourceFilesProvider"/>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    33
   </extension>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    34
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    35
	<extension
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    36
       point="org.eclipse.cdt.debug.core.SourceRemappingProvider">
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    37
      <provider class="com.nokia.cdt.debug.common.internal.executables.SymbianSourceFileRemappingFactory"/>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    38
   </extension>
fc2867001a80 Refactor executables view support extension from com.nokia.carbide.cpp.edc to com.nokia.cdt.debug.common.
timkelly
parents: 1096
diff changeset
    39
1096
96e5879cd42d Initial commit. Refactor out source mapping support into common plugin to be used with DE and EDC.
timkelly
parents:
diff changeset
    40
</plugin>