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

Unified Diff: build/android/ant/chromium-jars.xml

Issue 11363150: Support Java resources within content and chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove obsolete findbugs warnings Created 8 years, 1 month 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: build/android/ant/chromium-jars.xml
diff --git a/build/android/ant/chromium-jars.xml b/build/android/ant/chromium-jars.xml
index 07110cfc465d8ecc6c77b8bcac20e040a0f35382..cd9839d1ace3db533a542bd5227bd5270252ae0f 100644
--- a/build/android/ant/chromium-jars.xml
+++ b/build/android/ant/chromium-jars.xml
@@ -85,9 +85,12 @@
<target name="dist" depends="compile"
description="Generate chromium_${PACKAGE_NAME}.jar.">
- <!-- Create the distribution directory -->
+ <!-- Create the distribution directory. We exclude R.class and R$*.class
+ files since new versions of these files with the correct resource -> ID
+ mapping will be provided when we build each individual apk. -->
<jar
jarfile="${lib.java.dir}/chromium_${PACKAGE_NAME}.jar"
+ excludes="**/R.class **/R$*.class"
basedir="${dest.dir}"
/>

Powered by Google App Engine
This is Rietveld 408576698