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..07110cfc465d8ecc6c77b8bcac20e040a0f35382 100644 |
--- a/build/android/ant/chromium-jars.xml |
+++ b/build/android/ant/chromium-jars.xml |
@@ -38,6 +38,12 @@ |
check-exists="false" |
/> |
+ <condition property="javac_includes_message" |
+ value="" |
+ else="Include filter: ${JAVAC_INCLUDES}"> |
+ <equals arg1="${JAVAC_INCLUDES}" arg2=""/> |
+ </condition> |
+ |
<target name="init"> |
<!-- Create the time stamp --> |
<tstamp/> |
@@ -64,6 +70,7 @@ |
<echo> |
Compiling ${javac.srcdir}, classpath: ${toString:javac.custom.classpath} |
+ ${javac_includes_message} |
</echo> |
<javac |
@@ -72,6 +79,7 @@ |
classpathref="javac.custom.classpath" |
debug="true" |
includeantruntime="false" |
+ includes="${JAVAC_INCLUDES}" |
/> |
</target> |