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

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: 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 7007df5dc1fa472dfc5b2e230676fee3d1b444ea..50db3a3f18504e4545c39d7020b66e85789794b0 100644
--- a/build/android/ant/chromium-jars.xml
+++ b/build/android/ant/chromium-jars.xml
@@ -77,9 +77,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