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

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

Issue 11347026: Check in protobuf java code and generate lite jar. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved target to android conditional 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
« no previous file with comments | « no previous file | build/java.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | build/java.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698