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
3 # found in the LICENSE file.
5 # This file is meant to be included into an action to provide an action that
6 # signs and zipaligns an APK.
8 # To use this, create a gyp action with the following form:
10 # 'action_name': 'some descriptive action name',
12 # 'input_apk_path': 'relative/path/to/input.apk',
13 # 'output_apk_path': 'relative/path/to/output.apk',
15 # 'includes': [ '../../build/android/finalize_apk.gypi' ],
20 'message': 'Signing/aligning <(_target_name) APK: <(input_apk_path)',
22 'keystore_path%': '<(DEPTH)/build/android/ant/chromium-debug.keystore',
23 'keystore_name%': 'chromiumdebugkey',
24 'keystore_password%': 'chromium',
26 # Webview doesn't use zipalign or rezip_apk_jar.
27 ['android_webview_build==0', {
28 'zipalign_path%': '<(android_sdk_tools)/zipalign',
29 'rezip_apk_jar_path%': '<(PRODUCT_DIR)/lib.java/rezip_apk.jar'
32 'rezip_apk_jar_path%': "",
37 '<(DEPTH)/build/android/gyp/util/build_utils.py',
38 '<(DEPTH)/build/android/gyp/finalize_apk.py',
46 'python', '<(DEPTH)/build/android/gyp/finalize_apk.py',
47 '--zipalign-path=<(zipalign_path)',
48 '--unsigned-apk-path=<(input_apk_path)',
49 '--final-apk-path=<(output_apk_path)',
50 '--key-path=<(keystore_path)',
51 '--key-name=<(keystore_name)',
52 '--key-passwd=<(keystore_password)',
53 '--load-library-from-zip-file=<(load_library_from_zip_file)',
54 '--rezip-apk-jar-path=<(rezip_apk_jar_path)',