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

Side by Side Diff: build/android/ant/sdk-targets.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <?xml version="1.0" encoding="UTF-8"?> 1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <project name="chrome_sdk_overrides" > 7 <project name="chrome_sdk_overrides" >
8 <!-- 8 <!--
9 Redefinition of targets used by SDK tools. 9 Redefinition of targets used by SDK tools.
10 Supported version: SDK tools revision 20. 10 Supported version: SDK tools revision 20.
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 fork="${need.javac.fork}" 55 fork="${need.javac.fork}"
56 includeantruntime="false" 56 includeantruntime="false"
57 source="${java.source}" 57 source="${java.source}"
58 target="${java.target}" 58 target="${java.target}"
59 verbose="${verbose}"> 59 verbose="${verbose}">
60 <src path="${source.absolute.dir}"/> 60 <src path="${source.absolute.dir}"/>
61 <src path="${gen.absolute.dir}"/> 61 <src path="${gen.absolute.dir}"/>
62 <src> 62 <src>
63 <path refid="javac.srcdirs.additional"/> 63 <path refid="javac.srcdirs.additional"/>
64 </src> 64 </src>
65 <compilerarg value="-Xlint:unchecked"/>
65 <compilerarg line="${java.compilerargs}"/> 66 <compilerarg line="${java.compilerargs}"/>
66 </javac> 67 </javac>
67 <!-- 68 <!--
68 If the project is instrumented, then instrument the classes 69 If the project is instrumented, then instrument the classes
69 TODO(shashishekhar): Add option to override emma filter. 70 TODO(shashishekhar): Add option to override emma filter.
70 --> 71 -->
71 <if condition="${build.is.instrumented}"> 72 <if condition="${build.is.instrumented}">
72 <then> 73 <then>
73 <echo level="info"> 74 <echo level="info">
74 Instrumenting classes from ${out.absolute.dir}/classes... 75 Instrumenting classes from ${out.absolute.dir}/classes...
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 -libraryjars ${project.target.classpath.value} 269 -libraryjars ${project.target.classpath.value}
269 -dump "${obfuscate.absolute.dir}/dump.txt" 270 -dump "${obfuscate.absolute.dir}/dump.txt"
270 -printseeds "${obfuscate.absolute.dir}/seeds.txt" 271 -printseeds "${obfuscate.absolute.dir}/seeds.txt"
271 -printusage "${obfuscate.absolute.dir}/usage.txt" 272 -printusage "${obfuscate.absolute.dir}/usage.txt"
272 -printmapping "${obfuscate.absolute.dir}/mapping.txt" 273 -printmapping "${obfuscate.absolute.dir}/mapping.txt"
273 </proguard> 274 </proguard>
274 </then> 275 </then>
275 </if> 276 </if>
276 </target> 277 </target>
277 </project> 278 </project>
OLDNEW
« no previous file with comments | « build/android/ant/chromium-jars.xml ('k') | chrome/android/java/src/org/chromium/chrome/browser/ChromeBrowserProvider.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698