| 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 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 <then> | 186 <then> |
| 187 <echo message="Copying gdbserver to the apk to enable native debugging"/
> | 187 <echo message="Copying gdbserver to the apk to enable native debugging"/
> |
| 188 <copy todir="${out.dir}/libs/${target.abi}"> | 188 <copy todir="${out.dir}/libs/${target.abi}"> |
| 189 <path refid="native.libs.gdbserver"/> | 189 <path refid="native.libs.gdbserver"/> |
| 190 </copy> | 190 </copy> |
| 191 </then> | 191 </then> |
| 192 </if> | 192 </if> |
| 193 | 193 |
| 194 <!-- Package all the compiled .class files into a .jar. --> | 194 <!-- Package all the compiled .class files into a .jar. --> |
| 195 <jar | 195 <jar |
| 196 jarfile="${lib.java.dir}/chromium_apk_${PACKAGE_NAME}.jar" | 196 jarfile="${lib.java.dir}/${JAR_NAME}" |
| 197 basedir="${out.classes.absolute.dir}" | 197 basedir="${out.classes.absolute.dir}" |
| 198 /> | 198 /> |
| 199 </target> | 199 </target> |
| 200 | 200 |
| 201 <!-- | 201 <!-- |
| 202 Override obfuscate target to pass javac.custom.classpath to Proguard. SDK to
ols do not provide | 202 Override obfuscate target to pass javac.custom.classpath to Proguard. SDK to
ols do not provide |
| 203 any way to pass custom class paths to Proguard. | 203 any way to pass custom class paths to Proguard. |
| 204 --> | 204 --> |
| 205 <target name="-obfuscate"> | 205 <target name="-obfuscate"> |
| 206 <if condition="${proguard.enabled}"> | 206 <if condition="${proguard.enabled}"> |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 271 -libraryjars ${project.target.classpath.value} | 271 -libraryjars ${project.target.classpath.value} |
| 272 -dump "${obfuscate.absolute.dir}/dump.txt" | 272 -dump "${obfuscate.absolute.dir}/dump.txt" |
| 273 -printseeds "${obfuscate.absolute.dir}/seeds.txt" | 273 -printseeds "${obfuscate.absolute.dir}/seeds.txt" |
| 274 -printusage "${obfuscate.absolute.dir}/usage.txt" | 274 -printusage "${obfuscate.absolute.dir}/usage.txt" |
| 275 -printmapping "${obfuscate.absolute.dir}/mapping.txt" | 275 -printmapping "${obfuscate.absolute.dir}/mapping.txt" |
| 276 </proguard> | 276 </proguard> |
| 277 </then> | 277 </then> |
| 278 </if> | 278 </if> |
| 279 </target> | 279 </target> |
| 280 </project> | 280 </project> |
| OLD | NEW |