1 # Copyright 2015 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 a helper to java_apk.gypi. It should be used to create an
6 # action that runs ApkBuilder via ANT.
9 # apk_name - File name (minus path & extension) of the output apk.
10 # android_manifest_path - Path to AndroidManifest.xml.
11 # app_manifest_version_name - set the apps 'human readable' version number.
12 # app_manifest_version_code - set the apps version number.
14 # asset_location - The directory where assets are located (if any).
15 # create_density_splits - Whether to create density-based apk splits. Splits
16 # are supported only for minSdkVersion >= 21.
17 # resource_zips - List of paths to resource zip files.
18 # shared_resources - Make a resource package that can be loaded by a different
19 # application at runtime to access the package's resources.
20 # extensions_to_not_compress - E.g.: 'pak,dat,bin'
21 # extra_inputs - List of extra action inputs.
24 'asset_location%': '',
25 'create_density_splits%': 0,
27 'shared_resources%': 0,
28 'extensions_to_not_compress%': '',
30 'resource_packaged_apk_name': '<(apk_name)-resources.ap_',
31 'resource_packaged_apk_path': '<(intermediate_dir)/<(resource_packaged_apk_name)',
33 'action_name': 'package_resources_<(apk_name)',
34 'message': 'packaging resources for <(apk_name)',
36 # TODO: This isn't always rerun correctly, http://crbug.com/351928
37 '<(DEPTH)/build/android/gyp/util/build_utils.py',
38 '<(DEPTH)/build/android/gyp/package_resources.py',
39 '<(android_manifest_path)',
43 '<(resource_packaged_apk_path)',
46 'python', '<(DEPTH)/build/android/gyp/package_resources.py',
47 '--android-sdk', '<(android_sdk)',
48 '--android-sdk-tools', '<(android_sdk_tools)',
49 '--configuration-name', '<(CONFIGURATION_NAME)',
50 '--android-manifest', '<(android_manifest_path)',
51 '--version-code', '<(app_manifest_version_code)',
52 '--version-name', '<(app_manifest_version_name)',
53 '--no-compress', '<(extensions_to_not_compress)',
54 '--apk-path', '<(resource_packaged_apk_path)',
57 ['shared_resources == 1', {
62 ['asset_location != ""', {
64 '--asset-dir', '<(asset_location)',
67 ['create_density_splits == 1', {
69 '--create-density-splits',
72 '<(resource_packaged_apk_path)-hdpi',
73 '<(resource_packaged_apk_path)-xhdpi',
74 '<(resource_packaged_apk_path)-xxhdpi',
75 '<(resource_packaged_apk_path)-tvdpi',
78 ['resource_zips != []', {
80 '--resource-zips', '>(resource_zips)',