Index: base/android/javatests/base_javatests.xml |
diff --git a/base/android/java/base.xml b/base/android/javatests/base_javatests.xml |
similarity index 87% |
copy from base/android/java/base.xml |
copy to base/android/javatests/base_javatests.xml |
index 74589b467ec9a5ece21cc0d3784c5dd0618dc781..d4aa0812111eb222df9635d1848e06689f849913 100644 |
--- a/base/android/java/base.xml |
+++ b/base/android/javatests/base_javatests.xml |
@@ -1,6 +1,6 @@ |
-<project name="Base" default="dist" basedir="."> |
+<project name="BaseJavaTests" default="dist" basedir="."> |
<description> |
- building base java source code with ant |
+ building base java tests source code with ant |
</description> |
<!-- Set global properties for this build --> |
<property environment="env"/> |
@@ -14,7 +14,7 @@ |
<!-- TODO(jrg): establish a standard for the intermediate java |
directories. Settle on a standard once ant/jar build files |
like this are androidified --> |
- <property name="dest.dir" location="${PRODUCT_DIR}/java/base"/> |
+ <property name="dest.dir" location="${PRODUCT_DIR}/java/base_javatests"/> |
<!-- Set path depending on the type of repository. If ANDROID_BUILD_TOP is |
set then build using the provided location. Otherwise, assume the build |
@@ -38,8 +38,8 @@ |
<!-- Compile the java code from ${src} into ${build} --> |
<!-- TODO(jrg): adapting this to a proper android antfile will |
remove warnings like this: |
- base.xml:23: warning: 'includeantruntime' was not set, |
- defaulting to build.sysclasspath=last; |
+ base.xml:23: warning: 'includeantruntime' was not set, |
+ defaulting to build.sysclasspath=last; |
set to false for repeatable builds |
--> |
<javac srcdir="${src}" destdir="${dest.dir}" debug="true" includeantruntime="false"> |
@@ -54,7 +54,7 @@ |
<!-- Create the distribution directory --> |
<mkdir dir="${out.dir}"/> |
- <jar jarfile="${out.dir}/chromium_base.jar" basedir="${dest.dir}"/> |
+ <jar jarfile="${out.dir}/chromium_base_javatests.jar" basedir="${dest.dir}"/> |
</target> |
<target name="clean" |