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

Side by Side Diff: build/android/ant/apk-obfuscate.xml

Issue 295473002: Remove apk-codegen.xml (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix proguard.txt Created 6 years, 7 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 | Annotate | Revision Log
« no previous file with comments | « build/android/ant/apk-codegen.xml ('k') | build/android/ant/apk-package-resources.xml » ('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) 2005-2008 The Android Open Source Project 3 Copyright (C) 2005-2008 The Android Open Source Project
4 4
5 Licensed under the Apache License, Version 2.0 (the "License"); 5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License. 6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at 7 You may obtain a copy of the License at
8 8
9 http://www.apache.org/licenses/LICENSE-2.0 9 http://www.apache.org/licenses/LICENSE-2.0
10 10
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 <pathconvert pathsep='" -include "' property="proguard.configcmd" 153 <pathconvert pathsep='" -include "' property="proguard.configcmd"
154 refid="proguard.configpath"/> 154 refid="proguard.configpath"/>
155 155
156 <mkdir dir="${obfuscate.absolute.dir}"/> 156 <mkdir dir="${obfuscate.absolute.dir}"/>
157 <delete file="${preobfuscate.jar.file}"/> 157 <delete file="${preobfuscate.jar.file}"/>
158 <delete file="${obfuscated.jar.abs.file}"/> 158 <delete file="${obfuscated.jar.abs.file}"/>
159 <jar basedir="${out.classes.absolute.dir}" 159 <jar basedir="${out.classes.absolute.dir}"
160 destfile="${preobfuscate.jar.file}"/> 160 destfile="${preobfuscate.jar.file}"/>
161 <proguard> 161 <proguard>
162 -include "${proguard.configcmd}" 162 -include "${proguard.configcmd}"
163 -include "${out.absolute.dir}/proguard.txt"
164 -injars ${project.all.classes.value} 163 -injars ${project.all.classes.value}
165 -outjars "${obfuscated.jar.abs.file}" 164 -outjars "${obfuscated.jar.abs.file}"
166 -libraryjars ${project.target.classpath.value} 165 -libraryjars ${project.target.classpath.value}
167 -dump "${obfuscate.absolute.dir}/dump.txt" 166 -dump "${obfuscate.absolute.dir}/dump.txt"
168 -printseeds "${obfuscate.absolute.dir}/seeds.txt" 167 -printseeds "${obfuscate.absolute.dir}/seeds.txt"
169 -printusage "${obfuscate.absolute.dir}/usage.txt" 168 -printusage "${obfuscate.absolute.dir}/usage.txt"
170 -printmapping "${obfuscate.absolute.dir}/mapping.txt" 169 -printmapping "${obfuscate.absolute.dir}/mapping.txt"
171 </proguard> 170 </proguard>
172 </then> 171 </then>
173 </if> 172 </if>
174 <touch file="${STAMP}" /> 173 <touch file="${STAMP}" />
175 </target> 174 </target>
176 </project> 175 </project>
OLDNEW
« no previous file with comments | « build/android/ant/apk-codegen.xml ('k') | build/android/ant/apk-package-resources.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698