| author | Camilo Bernal | 2012-07-10 16:32:36 (EDT) |
|---|---|---|
| committer | Alexander Kurtakov | 2012-07-24 01:59:54 (EDT) |
| commit | de0f3c227d8001e68a3301b0d209e42b96d7b571 (patch) (side-by-side diff) | |
| tree | 72d2d6664c61a3175e7208239b8e7880804767ec | |
| parent | 401669a5168ecbf49932b15629103b349c880de9 (diff) | |
| download | org.eclipse.linuxtools-de0f3c227d8001e68a3301b0d209e42b96d7b571.zip org.eclipse.linuxtools-de0f3c227d8001e68a3301b0d209e42b96d7b571.tar.gz org.eclipse.linuxtools-de0f3c227d8001e68a3301b0d209e42b96d7b571.tar.bz2 | |
Added launch provider for perf.
Change-Id: Ie61e62c80ef933e28c9344551d94a4b3db081623
Reviewed-on: https://git.eclipse.org/r/6894
Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
IP-Clean: Alexander Kurtakov <akurtako@redhat.com>
Tested-by: Alexander Kurtakov <akurtako@redhat.com>
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF | 3 | ||||
| -rw-r--r-- | perf/org.eclipse.linuxtools.perf/plugin.xml | 11 |
2 files changed, 13 insertions, 1 deletions
diff --git a/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF b/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF index 4727330..b7a482b 100644 --- a/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF +++ b/perf/org.eclipse.linuxtools.perf/META-INF/MANIFEST.MF @@ -18,7 +18,8 @@ Require-Bundle: org.eclipse.ui, org.eclipse.jface.text;bundle-version="3.7.0", org.eclipse.cdt.launch;bundle-version="7.0.0", org.eclipse.linuxtools.profiling.ui;bundle-version="0.9.0", - org.eclipse.ui.ide + org.eclipse.ui.ide, + org.eclipse.linuxtools.profiling.snapshot;bundle-version="1.1.0" Bundle-RequiredExecutionEnvironment: JavaSE-1.6 Bundle-ActivationPolicy: lazy Import-Package: org.eclipse.core.filesystem, diff --git a/perf/org.eclipse.linuxtools.perf/plugin.xml b/perf/org.eclipse.linuxtools.perf/plugin.xml index e735019..21ff0d9 100644 --- a/perf/org.eclipse.linuxtools.perf/plugin.xml +++ b/perf/org.eclipse.linuxtools.perf/plugin.xml @@ -131,5 +131,16 @@ launcher="org.eclipse.linuxtools.internal.perf.launch.PerfOpenData" name="Perf Viewer"> </editor> + </extension> + <extension + point="org.eclipse.linuxtools.profiling.launch.launchProvider"> + <provider + delegate="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigDelegate" + id="org.eclipse.linuxtools.perf.provider" + priority="1" + shortcut="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchShortcut" + tabgroup="org.eclipse.linuxtools.internal.perf.launch.PerfLaunchConfigurationTabGroup" + type="snapshot"> + </provider> </extension> </plugin> |

