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

Side by Side Diff: build/android/ant/sdk-targets.xml

Issue 11094015: Rename output jar created by apks to have chromium_apk_ prefix. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 2 months 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
« no previous file with comments | « no previous file | chrome/chrome_android.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 <then> 190 <then>
191 <echo message="Copying gdbserver to the apk to enable native debugging"/ > 191 <echo message="Copying gdbserver to the apk to enable native debugging"/ >
192 <copy todir="${out.dir}/libs/${target.abi}"> 192 <copy todir="${out.dir}/libs/${target.abi}">
193 <path refid="native.libs.gdbserver"/> 193 <path refid="native.libs.gdbserver"/>
194 </copy> 194 </copy>
195 </then> 195 </then>
196 </if> 196 </if>
197 197
198 <!-- Package all the compiled .class files into a .jar. --> 198 <!-- Package all the compiled .class files into a .jar. -->
199 <jar 199 <jar
200 jarfile="${lib.java.dir}/chromium_${PACKAGE_NAME}.jar" 200 jarfile="${lib.java.dir}/chromium_apk_${PACKAGE_NAME}.jar"
201 basedir="${out.classes.absolute.dir}" 201 basedir="${out.classes.absolute.dir}"
202 /> 202 />
203 </target> 203 </target>
204 204
205 <!-- 205 <!--
206 Override obfuscate target to pass javac.custom.classpath to Proguard. SDK to ols do not provide 206 Override obfuscate target to pass javac.custom.classpath to Proguard. SDK to ols do not provide
207 any way to pass custom class paths to Proguard. 207 any way to pass custom class paths to Proguard.
208 --> 208 -->
209 <target name="-obfuscate"> 209 <target name="-obfuscate">
210 <if condition="${proguard.enabled}"> 210 <if condition="${proguard.enabled}">
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 -libraryjars ${project.target.classpath.value} 275 -libraryjars ${project.target.classpath.value}
276 -dump "${obfuscate.absolute.dir}/dump.txt" 276 -dump "${obfuscate.absolute.dir}/dump.txt"
277 -printseeds "${obfuscate.absolute.dir}/seeds.txt" 277 -printseeds "${obfuscate.absolute.dir}/seeds.txt"
278 -printusage "${obfuscate.absolute.dir}/usage.txt" 278 -printusage "${obfuscate.absolute.dir}/usage.txt"
279 -printmapping "${obfuscate.absolute.dir}/mapping.txt" 279 -printmapping "${obfuscate.absolute.dir}/mapping.txt"
280 </proguard> 280 </proguard>
281 </then> 281 </then>
282 </if> 282 </if>
283 </target> 283 </target>
284 </project> 284 </project>
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698