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

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

Issue 291963002: Convert apk-package-resources.xml to python (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 6 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 | « no previous file | 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 <!-- Disables automatic signing. --> 45 <!-- Disables automatic signing. -->
46 <property name="build.is.signing.debug" value="false"/> 46 <property name="build.is.signing.debug" value="false"/>
47 47
48 <!-- SDK tools assume that out.packaged.file is signed and name it "...-unalig ned" --> 48 <!-- SDK tools assume that out.packaged.file is signed and name it "...-unalig ned" -->
49 <property name="out.packaged.file" value="${UNSIGNED_APK_PATH}" /> 49 <property name="out.packaged.file" value="${UNSIGNED_APK_PATH}" />
50 50
51 <property name="native.libs.absolute.dir" location="${NATIVE_LIBS_DIR}" /> 51 <property name="native.libs.absolute.dir" location="${NATIVE_LIBS_DIR}" />
52 52
53 <!-- Intermediate files --> 53 <!-- Intermediate files -->
54 <property name="resource.package.file.name" value="${APK_NAME}.ap_" /> 54 <property name="resource.package.file.name" value="${RESOURCE_PACKAGED_APK_NAM E}" />
55 55
56 <property name="dex.file.name" value="classes.dex" /> 56 <property name="dex.file.name" value="classes.dex" />
57 <property name="intermediate.dex.file" location="${out.absolute.dir}/${dex.fil e.name}" /> 57 <property name="intermediate.dex.file" location="${out.absolute.dir}/${dex.fil e.name}" />
58 58
59 <!-- Macro that enables passing a variable list of external jar files 59 <!-- Macro that enables passing a variable list of external jar files
60 to ApkBuilder. --> 60 to ApkBuilder. -->
61 <macrodef name="package-helper"> 61 <macrodef name="package-helper">
62 <element name="extra-jars" optional="yes" /> 62 <element name="extra-jars" optional="yes" />
63 <sequential> 63 <sequential>
64 <apkbuilder 64 <apkbuilder
(...skipping 23 matching lines...) Expand all
88 <jarfile path="${emma.device.jar}" /> 88 <jarfile path="${emma.device.jar}" />
89 </extra-jars> 89 </extra-jars>
90 </package-helper> 90 </package-helper>
91 </then> 91 </then>
92 <else> 92 <else>
93 <package-helper /> 93 <package-helper />
94 </else> 94 </else>
95 </if> 95 </if>
96 </target> 96 </target>
97 </project> 97 </project>
OLDNEW
« no previous file with comments | « no previous file | build/android/ant/apk-package-resources.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698