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

Unified Diff: content/shell/android/javatests/content_shell_test_apk.xml

Issue 10690190: Upstream GestureDetectorProxyTest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: content/shell/android/javatests/content_shell_test_apk.xml
diff --git a/content/shell/android/javatests/content_shell_test_apk.xml b/content/shell/android/javatests/content_shell_test_apk.xml
index 497a81c9b6a0d13ba9a018f0bc496a1a711e0935..d2d21dde1fe5ec18d76bded99b94bb1723611e46 100644
--- a/content/shell/android/javatests/content_shell_test_apk.xml
+++ b/content/shell/android/javatests/content_shell_test_apk.xml
@@ -27,6 +27,7 @@
<path id="out.dex.jar.input.ref">
<fileset dir="${PRODUCT_DIR}/content_shell/java/libs"/>
+ <fileset dir="${PRODUCT_DIR}/content_shell_test/java/libs"/>
<pathelement location="${PRODUCT_DIR}/content_shell/classes"/>
</path>
<property name="java.compilerargs" value="-classpath ${toString:out.dex.jar.input.ref}"/>
@@ -63,6 +64,16 @@
</copy>
</then>
</if>
+
+ <!-- We also want a .jar as well as an .apk for so that proguard can
+ be used to list the tests by annotation. -->
+ <jar destfile="${out.dir}/${ant.project.name}-debug.jar">
+ <fileset dir="${out.dir}/classes" includes="**/*.class"/>
+ <zipfileset
+ includes="**/*.class"
+ src="${PRODUCT_DIR}/content_shell_test/java/libs/chromium_content_javatests.jar"/>
+ </jar>
+
</target>
<import file="${sdk.dir}/tools/ant/build.xml" />

Powered by Google App Engine
This is Rietveld 408576698