summaryrefslogtreecommitdiffstats
path: root/tools/scripts
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-02-19 10:57:29 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-02-19 10:57:29 -0800
commitff4b5f241f323a335897aff754d144f246caede7 (patch)
treeb75e7028787f4dbf258ed6e51995726a7862c928 /tools/scripts
parent87a88c4f030dc8d60911ccb236f45d854e89877e (diff)
downloadandroid_development-ff4b5f241f323a335897aff754d144f246caede7.tar.gz
android_development-ff4b5f241f323a335897aff754d144f246caede7.tar.bz2
android_development-ff4b5f241f323a335897aff754d144f246caede7.zip
auto import from //branches/cupcake/...@132276
Diffstat (limited to 'tools/scripts')
-rw-r--r--tools/scripts/android_rules.xml17
1 files changed, 13 insertions, 4 deletions
diff --git a/tools/scripts/android_rules.xml b/tools/scripts/android_rules.xml
index 8e4f7a26f..469867149 100644
--- a/tools/scripts/android_rules.xml
+++ b/tools/scripts/android_rules.xml
@@ -1,6 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="android_rules" default="debug">
+ <!--
+ This rules file is meant to be imported by the custom Ant task:
+ com.android.ant.AndroidInitTask
+
+ The following properties are put in place by the importing task:
+ android-jar, android-aidl, aapt, aidl, and dx
+
+ Additionnaly, the task sets up the following classpath reference:
+ android.target.classpath
+ This is used by the compiler task as the boot classpath.
+ -->
+
<property name="android-tools" value="${sdk-location}/tools" />
<!-- Input directories -->
@@ -55,13 +67,10 @@
<condition property="exe" value="exe" else=""><os family="windows"/></condition>
<condition property="bat" value="bat" else=""><os family="windows"/></condition>
- <property name="aapt" value="${android-tools}/aapt${exe}"/>
- <property name="aidl" value="${android-tools}/aidl${exe}"/>
<property name="adb" value="${android-tools}/adb${exe}"/>
- <property name="dx" value="${android-tools}/dx${bat}"/>
<property name="apk-builder" value="${android-tools}/apkbuilder${bat}"/>
- <!-- rules -->
+ <!-- rules -->
<!-- Create the output directories if they don't exist yet. -->
<target name="dirs">