aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Ducrohet <xav@android.com>2011-10-17 12:13:00 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-10-17 12:13:00 -0700
commit30dd60a963a5bfdf44305ae23800d5570466c035 (patch)
tree905b22662c3cc443a41c77df8bfe894528235aac
parente7307ece6a17a2cf250bdc7ba9a4cf5cf0dfc8e3 (diff)
parentb29886ed1a08c2d900ffb5fe4789db3701584d6d (diff)
downloadsdk-30dd60a963a5bfdf44305ae23800d5570466c035.zip
sdk-30dd60a963a5bfdf44305ae23800d5570466c035.tar.gz
sdk-30dd60a963a5bfdf44305ae23800d5570466c035.tar.bz2
Merge "Rename the modifier target only to nodeps."
-rw-r--r--files/ant/build.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/files/ant/build.xml b/files/ant/build.xml
index 16ae6a1..f5c1e30 100644
--- a/files/ant/build.xml
+++ b/files/ant/build.xml
@@ -366,7 +366,7 @@
<!-- ******************************************************* -->
<!-- target to disable building dependencies -->
- <target name="only">
+ <target name="nodeps">
<property name="dont.build.deps" value="true" />
</target>
@@ -481,7 +481,7 @@
<subant failonerror="true"
buildpathref="project.libraries"
antfile="build.xml">
- <target name="only" />
+ <target name="nodeps" />
<target name="${build.target}" />
</subant>
<echo></echo>
@@ -1272,14 +1272,14 @@
<echo> (tested projects and libraries)at the same time</echo>
<echo> using: 'ant all clean'</echo>
<echo> debug: Builds the application and signs it with a debug key.</echo>
- <echo> The 'only' target can be used to only build the</echo>
+ <echo> The 'nodeps' target can be used to only build the</echo>
<echo> current project and ignore the libraries using:</echo>
- <echo> 'ant only debug'</echo>
+ <echo> 'ant nodeps debug'</echo>
<echo> release: Builds the application. The generated apk file must be</echo>
<echo> signed before it is published.</echo>
- <echo> The 'only' target can be used to only build the</echo>
+ <echo> The 'nodeps' target can be used to only build the</echo>
<echo> current project and ignore the libraries using:</echo>
- <echo> 'ant only release'</echo>
+ <echo> 'ant nodeps release'</echo>
<echo> instrument:Builds an instrumented package and signs it with a</echo>
<echo> debug key.</echo>
<echo> test: Runs the tests. Project must be a test project and</echo>