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

Unified Diff: build/android/ant/apk-package.xml

Issue 13427020: [Android] Extract signing+zipaligning to python (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/gyp/finalize_apk.py » ('j') | build/android/gyp/finalize_apk.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/ant/apk-package.xml
diff --git a/build/android/ant/apk-package.xml b/build/android/ant/apk-package.xml
index 51ceb0273c7e7f4734f25fa5cdb86b41b8f79197..12e196139516c38e00a8297ef799803efa09fdcc 100644
--- a/build/android/ant/apk-package.xml
+++ b/build/android/ant/apk-package.xml
@@ -15,7 +15,7 @@
limitations under the License.
-->
-<project default="-do-sign">
+<project default="-package">
<property name="verbose" value="false" />
<property name="out.dir" location="${OUT_DIR}" />
<!-- Output directories -->
@@ -167,33 +167,4 @@
<nativefolder path="${native.libs.absolute.dir}" />
</apkbuilder>
</target>
-
-
-
- <property name="key.store" value="${KEYSTORE_PATH}"/>
- <property name="key.store.password" value="chromium"/>
- <property name="key.alias" value="chromiumdebugkey"/>
- <property name="key.alias.password" value="chromium"/>
- <property name="zipalign" location="${android.tools.dir}/zipalign" />
-
- <!-- Signs and zipaligns the apk. -->
- <target name="-do-sign" depends="-package">
- <sequential>
- <echo level="info">Signing final apk...</echo>
- <signapk
- input="${out.packaged.file}"
- output="${out.unaligned.file}"
- keystore="${key.store}"
- storepass="${key.store.password}"
- alias="${key.alias}"
- keypass="${key.alias.password}" />
-
- <zipalign
- executable="${zipalign}"
- input="${out.unaligned.file}"
- output="${out.final.file}"
- verbose="${verbose}" />
- <echo level="info">Release Package: ${out.final.file}</echo>
- </sequential>
- </target>
</project>
« no previous file with comments | « no previous file | build/android/gyp/finalize_apk.py » ('j') | build/android/gyp/finalize_apk.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698