Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2014-02-20 09:34:37 +0000
committerAlexander Kurtakov2014-02-20 09:34:37 +0000
commit33029c31f19c5fff9776631a726a1e53e26b649f (patch)
tree0bd518188df6795c5c70aed2a9723d2411296365
parent897b92cc4a46c61a007f4f4d92e4bdd69c3ae557 (diff)
downloadeclipse.platform.swt-33029c31f19c5fff9776631a726a1e53e26b649f.tar.gz
eclipse.platform.swt-33029c31f19c5fff9776631a726a1e53e26b649f.tar.xz
eclipse.platform.swt-33029c31f19c5fff9776631a726a1e53e26b649f.zip
Bug 428615 - Remove apigeneration from build.xml and buildFragment.xml
Let's not keep useless stuff into build files. Change-Id: I3e5d9f50e5967e436380f5d34d0812a22cefaf53 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.swt/build.xml14
-rw-r--r--bundles/org.eclipse.swt/buildFragment.xml18
2 files changed, 0 insertions, 32 deletions
diff --git a/bundles/org.eclipse.swt/build.xml b/bundles/org.eclipse.swt/build.xml
index 7c693f3196..dfc629217a 100644
--- a/bundles/org.eclipse.swt/build.xml
+++ b/bundles/org.eclipse.swt/build.xml
@@ -44,12 +44,6 @@
<target name="gather.bin.parts" depends="init" if="destination.temp.folder">
<mkdir dir="${destination.temp.folder}/${full.name}" />
- <antcall target="apitools.generation">
- <param name="target.folder" value="${destination.temp.folder}/${full.name}"/>
- <param name="projectLocation" value="${basedir}"/>
- <param name="binary.folders" value="${build.result.folder}"/>
- <param name="projectName" value="${full.name}"/>
- </antcall>
<copy todir="${destination.temp.folder}/${full.name}">
<fileset dir="${basedir}" includes="plugin.properties,about.html,about_files/,META-INF/" />
</copy>
@@ -74,12 +68,4 @@
<target name="clean" depends="init">
</target>
-
- <target name="apitools.generation" if="generateAPIDescription">
- <apitooling.apigeneration
- projectName="${projectName}"
- project="${projectLocation}"
- binary="${binary.folders}"
- target="${target.folder}"/>
- </target>
</project> \ No newline at end of file
diff --git a/bundles/org.eclipse.swt/buildFragment.xml b/bundles/org.eclipse.swt/buildFragment.xml
index ce0f0efea9..2da48c75e8 100644
--- a/bundles/org.eclipse.swt/buildFragment.xml
+++ b/bundles/org.eclipse.swt/buildFragment.xml
@@ -482,14 +482,6 @@
</copy>
<chmod perm="755" dir="${destination.temp.folder}/${full.name}" includes="swt*.dll,libswt*.so,libswt*.sl,libswt*.a,libswt*.jnilib,libXm.so.2" />
<eclipse.versionReplacer path="${destination.temp.folder}/${full.name}" version="${version.suffix}" />
- <antcall target="apitools.generation">
- <param name="target.folder" value="${destination.temp.folder}/${full.name}"/>
- <param name="projectLocation" value="${fragmentdir}"/>
- <param name="binary.folders" value="${build.result.folder}/@dot"/>
- <param name="projectName" value="${full.name}"/>
- <param name="extraSourceLocations" value="${plugindir}"/>
- <param name="extraManifests" value="${plugindir}/META-INF/MANIFEST.MF"/>
- </antcall>
</target>
<target name="swtdownload" depends="init">
@@ -576,14 +568,4 @@
</jar>
<delete dir="${temp.folder}" />
</target>
-
- <target name="apitools.generation" if="generateAPIDescription">
- <apitooling.apigeneration
- projectName="${projectName}"
- project="${projectLocation}"
- binary="${binary.folders}"
- target="${target.folder}"
- extraManifests="${extraManifests}"
- extraSourceLocations="${extraSourceLocations}"/>
- </target>
</project>

Back to the top