Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/org.eclipse.linuxtools.profiling.snapshot/plugin.xml')
-rw-r--r--profiling/org.eclipse.linuxtools.profiling.snapshot/plugin.xml84
1 files changed, 0 insertions, 84 deletions
diff --git a/profiling/org.eclipse.linuxtools.profiling.snapshot/plugin.xml b/profiling/org.eclipse.linuxtools.profiling.snapshot/plugin.xml
deleted file mode 100644
index 52e4d2e5a2..0000000000
--- a/profiling/org.eclipse.linuxtools.profiling.snapshot/plugin.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.4"?>
-<plugin>
- <extension
- id="org.eclipse.linuxtools.profiling.snapshot.launch"
- name="Profile As Snapshot"
- point="org.eclipse.debug.ui.launchShortcuts">
- <shortcut
- class="org.eclipse.linuxtools.profiling.snapshot.launch.SnapshotLaunchShortcut"
- id="org.eclipse.linuxtools.profiling.snapshot"
- label="Profile As Snapshot"
- modes="profile">
-
- <contextualLaunch>
- <enablement>
- <with
- variable="selection">
- <count
- value="1">
- </count>
- <iterate>
- <or>
- <instanceof
- value="org.eclipse.cdt.core.model.IBinary">
- </instanceof>
- <instanceof
- value="org.eclipse.cdt.core.model.ICProject">
- </instanceof>
- <test
- property="org.eclipse.cdt.launch.isExecutable">
- </test>
- <test
- property="org.eclipse.cdt.launch.isCProject">
- </test>
- <and>
- <instanceof
- value="org.eclipse.ui.IFileEditorInput">
- </instanceof>
- <adapt
- type="org.eclipse.core.resources.IResource">
- <adapt
- type="org.eclipse.cdt.core.model.ICElement">
- </adapt>
- </adapt>
- </and>
- </or>
- </iterate>
- </with>
- </enablement>
- </contextualLaunch>
- </shortcut>
- </extension>
- <extension
- point="org.eclipse.debug.ui.launchConfigurationTabGroups">
- <launchConfigurationTabGroup
- class="org.eclipse.linuxtools.profiling.snapshot.SnapshotLaunchConfigurationTabGroup"
- id="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationTabGroup"
- type="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationType">
- </launchConfigurationTabGroup>
- </extension>
- <extension
- point="org.eclipse.debug.core.launchConfigurationTypes">
- <launchConfigurationType
- delegate="org.eclipse.linuxtools.profiling.snapshot.launch.SnapshotLaunchConfigurationDelegate"
- id="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationType"
- modes="profile"
- name="Profile As Snapshot"
- public="true"
- sourceLocatorId="org.eclipse.cdt.debug.core.sourceLocator"
- sourcePathComputerId="org.eclipse.cdt.debug.core.sourcePathComputer">
- </launchConfigurationType>
- </extension>
- <extension
- point="org.eclipse.ui.preferencePages">
- <page
- category="org.eclipse.linuxtools.profiling.provider.MainPreferencePage"
- class="org.eclipse.linuxtools.profiling.snapshot.SnapshotPreferencesPage"
- id="org.eclipse.linuxtools.profiling.snapshot.preferences"
- name="Snapshot">
- </page>
- </extension>
-
-
-</plugin>

Back to the top