| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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> |
| OLD | NEW |