diff options
author | Raphael <raphael@google.com> | 2011-11-02 15:49:49 -0700 |
---|---|---|
committer | Raphael <raphael@google.com> | 2011-11-08 14:24:00 -0800 |
commit | 9c014a83a44a2a09e138d4fa9d70893fdc8ce400 (patch) | |
tree | 16442e6f423acffef1a1302b3c36cfe6a144e8c4 /eclipse/buildConfig | |
parent | 97968c4516fbe48b0c43f463745c2278be5a4e09 (diff) | |
download | sdk-9c014a83a44a2a09e138d4fa9d70893fdc8ce400.zip sdk-9c014a83a44a2a09e138d4fa9d70893fdc8ce400.tar.gz sdk-9c014a83a44a2a09e138d4fa9d70893fdc8ce400.tar.bz2 |
SDK: Switch to Eclipse 3.6.2 RCP+CDT for build_server
Change-Id: I3fab918d5d9ed96d753410cfe3cf58a06788a058
Diffstat (limited to 'eclipse/buildConfig')
-rw-r--r-- | eclipse/buildConfig/allElements.xml | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/eclipse/buildConfig/allElements.xml b/eclipse/buildConfig/allElements.xml index 6bdfa9b..0febb6d 100644 --- a/eclipse/buildConfig/allElements.xml +++ b/eclipse/buildConfig/allElements.xml @@ -3,7 +3,7 @@ <!-- 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. --> @@ -13,7 +13,7 @@ <!-- 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" /> @@ -23,7 +23,7 @@ <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" /> @@ -31,13 +31,18 @@ <ant antfile="${genericTargets}" target="${target}"> <property name="type" value="feature" /> + <property name="id" value="com.android.ide.eclipse.adt.ndk" /> + </ant> + + <ant antfile="${genericTargets}" target="${target}"> + <property name="type" value="feature" /> <property name="id" value="com.android.ide.eclipse.traceview" /> </ant> <antcall target="buildInternalFeatures"/> - + </target> - + <!-- ===================================================================== --> <!-- Conditional target for building the internal features --> <!-- Builds if property internalSite is set --> @@ -57,8 +62,8 @@ <property name="type" value="feature" /> <property name="id" value="com.android.ide.eclipse.gldebugger" /> </ant> - </target> - + </target> + <!-- ===================================================================== --> <!-- Targets to assemble the built elements for particular configurations --> <!-- These generally call the generated assemble scripts (named in --> @@ -74,14 +79,18 @@ <ant antfile="${assembleScriptName}" dir="${buildDirectory}"/> </target> + <target name="assemble.com.android.ide.eclipse.adt.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> |