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

Side by Side Diff: build/android/finalize_apk_action.gypi

Issue 608853005: Add rename and inflate support to the RezipApk tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Don't remove the rezip dependency. The bot needs it. Created 6 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 | build/android/gyp/finalize_apk.py » ('j') | build/android/rezip/RezipApk.java » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 # This file is meant to be included into an action to provide an action that 5 # This file is meant to be included into an action to provide an action that
6 # signs and zipaligns an APK. 6 # signs and zipaligns an APK.
7 # 7 #
8 # To use this, create a gyp action with the following form: 8 # To use this, create a gyp action with the following form:
9 # { 9 # {
10 # 'action_name': 'some descriptive action name', 10 # 'action_name': 'some descriptive action name',
11 # 'variables': { 11 # 'variables': {
12 # 'input_apk_path': 'relative/path/to/input.apk', 12 # 'input_apk_path': 'relative/path/to/input.apk',
13 # 'output_apk_path': 'relative/path/to/output.apk', 13 # 'output_apk_path': 'relative/path/to/output.apk',
14 # }, 14 # },
15 # 'includes': [ '../../build/android/finalize_apk.gypi' ], 15 # 'includes': [ '../../build/android/finalize_apk.gypi' ],
16 # }, 16 # },
17 # 17 #
18 18
19 { 19 {
20 'message': 'Signing/aligning <(_target_name) APK: <(input_apk_path)', 20 'message': 'Signing/aligning <(_target_name) APK: <(input_apk_path)',
21 'variables': { 21 'variables': {
22 'keystore_path%': '<(DEPTH)/build/android/ant/chromium-debug.keystore', 22 'keystore_path%': '<(DEPTH)/build/android/ant/chromium-debug.keystore',
23 'keystore_name%': 'chromiumdebugkey', 23 'keystore_name%': 'chromiumdebugkey',
24 'keystore_password%': 'chromium', 24 'keystore_password%': 'chromium',
25 'conditions': [ 25 'conditions': [
26 # Webview doesn't use zipalign or rezip. 26 # Webview doesn't use zipalign or rezip_apk_jar.
27 ['android_webview_build==0', { 27 ['android_webview_build==0', {
28 'zipalign_path%': ['<!@(find <(android_sdk_root) -name zipalign)'], 28 'zipalign_path%': ['<!@(find <(android_sdk_root) -name zipalign)'],
29 'rezip_path%': '<(PRODUCT_DIR)/rezip',
30 'rezip_apk_jar_path%': '<(PRODUCT_DIR)/lib.java/rezip_apk.jar' 29 'rezip_apk_jar_path%': '<(PRODUCT_DIR)/lib.java/rezip_apk.jar'
31 }, { 30 }, {
32 'zipalign_path%': "", 31 'zipalign_path%': "",
33 'rezip_path%': "",
34 'rezip_apk_jar_path%': "", 32 'rezip_apk_jar_path%': "",
35 }], 33 }],
36 ], 34 ],
37 }, 35 },
38 'inputs': [ 36 'inputs': [
39 '<(DEPTH)/build/android/gyp/util/build_utils.py', 37 '<(DEPTH)/build/android/gyp/util/build_utils.py',
40 '<(DEPTH)/build/android/gyp/finalize_apk.py', 38 '<(DEPTH)/build/android/gyp/finalize_apk.py',
41 '<(keystore_path)', 39 '<(keystore_path)',
42 '<(input_apk_path)', 40 '<(input_apk_path)',
43 ], 41 ],
44 'outputs': [ 42 'outputs': [
45 '<(output_apk_path)', 43 '<(output_apk_path)',
46 ], 44 ],
47 'action': [ 45 'action': [
48 'python', '<(DEPTH)/build/android/gyp/finalize_apk.py', 46 'python', '<(DEPTH)/build/android/gyp/finalize_apk.py',
49 '--zipalign-path=<(zipalign_path)', 47 '--zipalign-path=<(zipalign_path)',
50 '--unsigned-apk-path=<(input_apk_path)', 48 '--unsigned-apk-path=<(input_apk_path)',
51 '--final-apk-path=<(output_apk_path)', 49 '--final-apk-path=<(output_apk_path)',
52 '--key-path=<(keystore_path)', 50 '--key-path=<(keystore_path)',
53 '--key-name=<(keystore_name)', 51 '--key-name=<(keystore_name)',
54 '--key-passwd=<(keystore_password)', 52 '--key-passwd=<(keystore_password)',
55 '--load-library-from-zip-file=<(load_library_from_zip_file)', 53 '--load-library-from-zip-file=<(load_library_from_zip_file)',
56 '--rezip-path=<(rezip_path)',
57 '--rezip-apk-jar-path=<(rezip_apk_jar_path)', 54 '--rezip-apk-jar-path=<(rezip_apk_jar_path)',
58 ], 55 ],
59 } 56 }
OLDNEW
« no previous file with comments | « no previous file | build/android/gyp/finalize_apk.py » ('j') | build/android/rezip/RezipApk.java » ('J')

Powered by Google App Engine
This is Rietveld 408576698