Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(52)

Unified Diff: base/android/javatests/base_javatests.xml

Issue 10818039: Upstream Android LongPressDetector (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Target rename base_javatests->base_java_test_support Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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"
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698