aboutsummaryrefslogtreecommitdiff
path: root/eclipse/buildConfig/allElements.xml
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2020-05-08 18:01:22 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-08 18:01:22 +0000
commitccad5384d77328ff1843f4d9296f36a0c3f60343 (patch)
treec4efb96abd28c58f6dc220fdcc8ee8ab69f7ca38 /eclipse/buildConfig/allElements.xml
parentd58f8ba3b1869530926bd5f167103dfa161787a1 (diff)
parent7cb6fc634a03afec776a03f2543185908b3563b0 (diff)
downloadsdk-ccad5384d77328ff1843f4d9296f36a0c3f60343.tar.gz
Merge "Remove all non-Apache2 licensed files from sdk" am: 106d12a4f8 am: 7cb6fc634a
Change-Id: I0fc20e72e7edfc5daf2068bf0aa6ea25ddb4a1c9
Diffstat (limited to 'eclipse/buildConfig/allElements.xml')
-rw-r--r--eclipse/buildConfig/allElements.xml112
1 files changed, 0 insertions, 112 deletions
diff --git a/eclipse/buildConfig/allElements.xml b/eclipse/buildConfig/allElements.xml
deleted file mode 100644
index b3b5c4e1c..000000000
--- a/eclipse/buildConfig/allElements.xml
+++ /dev/null
@@ -1,112 +0,0 @@
-<!-- ========================================================================= -->
-<!-- Feature build ant targets -->
-<!-- Template obtained from org.eclipse.pde.build/templates/headless-build -->
-<!-- ========================================================================= -->
-<project name="allElements Delegator">
-
- <!-- ===================================================================== -->
- <!-- Run a given ${target} on all elements being built -->
- <!-- Replace element.id with the id of the top level element being built. -->
- <!-- If element.id does not exist in ${buildDirectory}/features/element.id -->
- <!-- or ${baseLocation}/features/element.id, then you must provide the -->
- <!-- location by setting the property "pluginPath" -->
- <!-- Add on <ant> task for each top level element being built. -->
- <!-- ===================================================================== -->
- <target name="allElementsDelegator">
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.ddms" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.hierarchyviewer" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.adt" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.ndk" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.traceview" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.gldebugger" />
- </ant>
-
- <antcall target="buildInternalFeatures"/>
- </target>
-
- <!-- ===================================================================== -->
- <!-- Conditional target for building the internal features -->
- <!-- Builds if property internalSite is set -->
- <!-- ===================================================================== -->
- <target name="buildInternalFeatures" if="internalSite">
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.tests" />
- </ant>
-
- <ant antfile="${genericTargets}" target="${target}">
- <property name="type" value="feature" />
- <property name="id" value="com.android.ide.eclipse.pdt" />
- </ant>
- </target>
-
- <!-- ===================================================================== -->
- <!-- Targets to assemble the built elements for particular configurations -->
- <!-- These generally call the generated assemble scripts (named in -->
- <!-- ${assembleScriptName}) but may also add pre and post processing -->
- <!-- Add one target for each root element and each configuration -->
- <!-- Replace element.id with the id of the top level element being built -->
- <!-- ===================================================================== -->
- <target name="assemble.com.android.ide.eclipse.base">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.adt">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.adt.overlay">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.ndk">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.ddms">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.tests">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.hierarchyviewer">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.pdt">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.traceview">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-
- <target name="assemble.com.android.ide.eclipse.gldebugger">
- <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
- </target>
-</project>