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

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

Issue 383613002: Make android_apk template actually create an apk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-apk-dex
Patch Set: Created 6 years, 4 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 | build/android/gyp/ant.py » ('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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
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="${RESOURCE_PACKAGED_APK_NAM E}" /> 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="intermediate.dex.file" location="${DEX_FILE_PATH}" />
57 <property name="intermediate.dex.file" location="${out.absolute.dir}/${dex.fil e.name}" />
58 57
59 <!-- Macro that enables passing a variable list of external jar files 58 <!-- Macro that enables passing a variable list of external jar files
60 to ApkBuilder. --> 59 to ApkBuilder. -->
61 <macrodef name="package-helper"> 60 <macrodef name="package-helper">
62 <element name="extra-jars" optional="yes" /> 61 <element name="extra-jars" optional="yes" />
63 <sequential> 62 <sequential>
64 <apkbuilder 63 <apkbuilder
65 outfolder="${out.absolute.dir}" 64 outfolder="${out.absolute.dir}"
66 resourcefile="${resource.package.file.name}" 65 resourcefile="${resource.package.file.name}"
67 apkfilepath="${out.packaged.file}" 66 apkfilepath="${out.packaged.file}"
(...skipping 20 matching lines...) Expand all
88 <jarfile path="${emma.device.jar}" /> 87 <jarfile path="${emma.device.jar}" />
89 </extra-jars> 88 </extra-jars>
90 </package-helper> 89 </package-helper>
91 </then> 90 </then>
92 <else> 91 <else>
93 <package-helper /> 92 <package-helper />
94 </else> 93 </else>
95 </if> 94 </if>
96 </target> 95 </target>
97 </project> 96 </project>
OLDNEW
« no previous file with comments | « no previous file | build/android/gyp/ant.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698