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

Unified Diff: content/public/android/javatests/content_javatests.xml

Issue 10831227: Make jars build from a single ant .xml template (Closed) Base URL: http://git.chromium.org/chromium/src.git@ant_aidl
Patch Set: Created 8 years, 4 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
Index: content/public/android/javatests/content_javatests.xml
diff --git a/content/public/android/javatests/content_javatests.xml b/content/public/android/javatests/content_javatests.xml
deleted file mode 100644
index 73d05d8e095c72bb46265685c6abfbe8a364bd2b..0000000000000000000000000000000000000000
--- a/content/public/android/javatests/content_javatests.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<!-- Copyright (c) 2012 The Chromium Authors. All rights reserved.
-
- Use of this source code is governed by a BSD-style license that can be
- found in the LICENSE file.
--->
-<project name="ContentJavaTests" default="dist" basedir=".">
- <description>
- building content-only instrumentation tests with ant
- </description>
- <!-- set global properties for this build -->
- <property name="src" location="src"/>
- <property name="out.dir" location="${PRODUCT_DIR}/lib.java"/>
- <property name="classes.dir" location="${PRODUCT_DIR}/java/${PACKAGE_NAME}"/>
- <property name="jar.dir" location="${out.dir}"/>
-
- <target name="init">
- <!-- Create the time stamp -->
- <tstamp/>
- <!-- Create the build directory structure used by compile -->
- <mkdir dir="${out.dir}"/>
- </target>
-
- <target name="compile" depends="init"
- description="compile the source " >
- <!-- Create the classes output directory -->
- <mkdir dir="${classes.dir}"/>
-
- <!-- Compile the java code from ${src} into ${classes.dir} -->
- <!-- Gyp target should have compiled aidl files into java source files in
- lib.jar (see content.gyp:common_aidl). -->
- <javac srcdir="${src}" destdir="${classes.dir}" debug="true" includeantruntime="false">
- <classpath>
- <pathelement path="${ANDROID_SDK}/android.jar" />
- <pathelement path="${jar.dir}/chromium_base.jar" />
- <pathelement path="${jar.dir}/chromium_base_javatests.jar" />
- <pathelement path="${jar.dir}/chromium_content.jar" />
- </classpath>
- </javac>
- </target>
-
- <target name="dist" depends="compile"
- description="generate the distribution" >
- <!-- Create the distribution directory -->
- <mkdir dir="${jar.dir}"/>
-
- <!-- Put everything in ${classes.dir} into the chromium_content_tests.jar file -->
- <jar jarfile="${jar.dir}/chromium_${PACKAGE_NAME}.jar" basedir="${classes.dir}"/>
- </target>
-
- <target name="clean" description="clean up" >
- <!-- Delete the generated content -->
- <delete dir="${classes.dir}"/>
- <delete file="${jar.dir}/chromium_${PACKAGE_NAME}.jar"/>
- </target>
-</project>

Powered by Google App Engine
This is Rietveld 408576698