Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeff Johnston2012-10-30 00:08:57 +0000
committerCamilo Bernal2012-10-30 18:59:34 +0000
commitc041b5c0b83b5c1fb30cfcacac6fc9a3fd7801d2 (patch)
tree34b07a5a117b40b1ebba1b003c807caf4ab49536
parent9742397df61fee5aee6eab0a0b9198fd2fb4a3d4 (diff)
downloadorg.eclipse.linuxtools-c041b5c0b83b5c1fb30cfcacac6fc9a3fd7801d2.tar.gz
org.eclipse.linuxtools-c041b5c0b83b5c1fb30cfcacac6fc9a3fd7801d2.tar.xz
org.eclipse.linuxtools-c041b5c0b83b5c1fb30cfcacac6fc9a3fd7801d2.zip
Make profiling provider framework accessible in repository
- Add profiling user's guide to profiling feature - Activate gcov and gprof launch plug-ins in their respective features. Change-Id: I403bc2e4af52e86d4b28e27adeab874e8fdbb985 Reviewed-on: https://git.eclipse.org/r/8408 Tested-by: Hudson CI Reviewed-by: Camilo Bernal <cabernal@redhat.com> IP-Clean: Camilo Bernal <cabernal@redhat.com> Tested-by: Camilo Bernal <cabernal@redhat.com>
-rwxr-xr-xgcov/org.eclipse.linuxtools.gcov-feature/feature.xml7
-rw-r--r--gprof/org.eclipse.linuxtools.gprof-feature/feature.xml7
-rw-r--r--profiling/org.eclipse.linuxtools.profiling-feature/feature.xml6
-rw-r--r--profiling/org.eclipse.linuxtools.profiling-feature/pom.xml18
4 files changed, 38 insertions, 0 deletions
diff --git a/gcov/org.eclipse.linuxtools.gcov-feature/feature.xml b/gcov/org.eclipse.linuxtools.gcov-feature/feature.xml
index a627809977..3d5f9ba7b9 100755
--- a/gcov/org.eclipse.linuxtools.gcov-feature/feature.xml
+++ b/gcov/org.eclipse.linuxtools.gcov-feature/feature.xml
@@ -35,4 +35,11 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.eclipse.linuxtools.gcov.launch"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
</feature>
diff --git a/gprof/org.eclipse.linuxtools.gprof-feature/feature.xml b/gprof/org.eclipse.linuxtools.gprof-feature/feature.xml
index 18e86a0250..0f29beb284 100644
--- a/gprof/org.eclipse.linuxtools.gprof-feature/feature.xml
+++ b/gprof/org.eclipse.linuxtools.gprof-feature/feature.xml
@@ -35,4 +35,11 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.eclipse.linuxtools.gprof.launch"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
</feature>
diff --git a/profiling/org.eclipse.linuxtools.profiling-feature/feature.xml b/profiling/org.eclipse.linuxtools.profiling-feature/feature.xml
index 3a898cd143..86bb72bb7c 100644
--- a/profiling/org.eclipse.linuxtools.profiling-feature/feature.xml
+++ b/profiling/org.eclipse.linuxtools.profiling-feature/feature.xml
@@ -67,4 +67,10 @@
version="0.0.0"
unpack="false"/>
+ <plugin
+ id="org.eclipse.linuxtools.profiling.docs"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
</feature>
diff --git a/profiling/org.eclipse.linuxtools.profiling-feature/pom.xml b/profiling/org.eclipse.linuxtools.profiling-feature/pom.xml
index 9635f5826a..5d3609ca0c 100644
--- a/profiling/org.eclipse.linuxtools.profiling-feature/pom.xml
+++ b/profiling/org.eclipse.linuxtools.profiling-feature/pom.xml
@@ -26,6 +26,24 @@
<build>
<plugins>
<plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>source-feature</id>
+ <phase>package</phase>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ <configuration>
+ <excludes>
+ <plugin id="org.eclipse.linuxtools.profiling.docs"/>
+ </excludes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${tycho-version}</version>

Back to the top