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

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

Issue 11580006: [Android] Output unchecked warnings and fix existing instances. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/android/ant/sdk-targets.xml » ('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 371201253bb490ffccc415a40e65ac616341a92e..8f5eaa0abc0a2cc2b758434c727ba616bc30a589 100644
--- a/build/android/ant/chromium-jars.xml
+++ b/build/android/ant/chromium-jars.xml
@@ -69,13 +69,14 @@
</fail>
<javac
- srcdir="${javac.srcdir}"
- destdir="${dest.dir}"
- classpathref="javac.custom.classpath"
- debug="true"
- includeantruntime="false"
- includes="${JAVAC_INCLUDES}"
- />
+ srcdir="${javac.srcdir}"
+ destdir="${dest.dir}"
+ classpathref="javac.custom.classpath"
+ debug="true"
+ includeantruntime="false"
+ includes="${JAVAC_INCLUDES}">
+ <compilerarg value="-Xlint:unchecked"/>
+ </javac>
</target>
<target name="dist" depends="compile"
« no previous file with comments | « no previous file | build/android/ant/sdk-targets.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698