Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCamilo Bernal2012-07-20 14:42:20 +0000
committerAlexander Kurtakov2012-08-13 06:27:23 +0000
commitf76f4f3b3fdba19a9c31de63078c97577348dab6 (patch)
tree14c5e850567efaf1414d372c06574393746e6b17 /oprofile
parent3a4e285b915e2a1d4c7a6f39eba8def33b0f21d9 (diff)
downloadorg.eclipse.linuxtools-f76f4f3b3fdba19a9c31de63078c97577348dab6.tar.gz
org.eclipse.linuxtools-f76f4f3b3fdba19a9c31de63078c97577348dab6.tar.xz
org.eclipse.linuxtools-f76f4f3b3fdba19a9c31de63078c97577348dab6.zip
Add launch provider to oprofile.
Change-Id: Ieabbac3e0a10590527d65249c0d33f3262117b2e Reviewed-on: https://git.eclipse.org/r/6898 Reviewed-by: Alexander Kurtakov <akurtako@redhat.com> IP-Clean: Alexander Kurtakov <akurtako@redhat.com> Tested-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'oprofile')
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.launch/META-INF/MANIFEST.MF3
-rw-r--r--oprofile/org.eclipse.linuxtools.oprofile.launch/plugin.xml13
2 files changed, 15 insertions, 1 deletions
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.launch/META-INF/MANIFEST.MF b/oprofile/org.eclipse.linuxtools.oprofile.launch/META-INF/MANIFEST.MF
index 2b0090c38a..657cae495b 100644
--- a/oprofile/org.eclipse.linuxtools.oprofile.launch/META-INF/MANIFEST.MF
+++ b/oprofile/org.eclipse.linuxtools.oprofile.launch/META-INF/MANIFEST.MF
@@ -12,7 +12,8 @@ Require-Bundle: org.eclipse.core.runtime;bundle-version="3.4.0",
org.eclipse.core.filesystem;bundle-version="1.3.100",
org.eclipse.jface.text;bundle-version="3.7.0",
org.eclipse.ui;bundle-version="3.4.0",
- org.eclipse.debug.ui;bundle-version="3.7.0"
+ org.eclipse.debug.ui;bundle-version="3.7.0",
+ org.eclipse.linuxtools.profiling.snapshot;bundle-version="1.1.0"
Bundle-Activator: org.eclipse.linuxtools.internal.oprofile.launch.OprofileLaunchPlugin
Bundle-ActivationPolicy: lazy
Bundle-Localization: plugin
diff --git a/oprofile/org.eclipse.linuxtools.oprofile.launch/plugin.xml b/oprofile/org.eclipse.linuxtools.oprofile.launch/plugin.xml
index 5dc9074da9..a5ff3869d9 100644
--- a/oprofile/org.eclipse.linuxtools.oprofile.launch/plugin.xml
+++ b/oprofile/org.eclipse.linuxtools.oprofile.launch/plugin.xml
@@ -126,4 +126,17 @@
</contextualLaunch>
</shortcut>
</extension>
+ <extension
+ point="org.eclipse.linuxtools.profiling.launch.launchProvider">
+ <provider
+ default="false"
+ delegate="org.eclipse.linuxtools.internal.oprofile.launch.launching.OprofileLaunchConfigurationDelegate"
+ id="org.eclipse.linuxtools.oprofile.launch.provider"
+ name="Oprofile"
+ priority="2"
+ shortcut="org.eclipse.linuxtools.internal.oprofile.launch.launching.OprofileLaunchShortcut"
+ tabgroup="org.eclipse.linuxtools.internal.oprofile.launch.configuration.OprofileLaunchConfigurationTabGroup"
+ type="snapshot">
+ </provider>
+ </extension>
</plugin>

Back to the top