| 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}"
|
| />
|
|
|
|
|