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

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

Issue 2101243005: Add a snapshot of flutter/engine/src/build to our sdk (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: add README.dart Created 4 years, 5 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 | « build/android/pack_relocations.gypi ('k') | build/android/preprocess_google_play_services.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 # This file is a helper to java_apk.gypi. It should be used to create an
6 # action that runs ApkBuilder via ANT.
7 #
8 # Required variables:
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.
13 # Optional variables:
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 # language_splits - List of languages to create apk splits for.
18 # resource_zips - List of paths to resource zip files.
19 # shared_resources - Make a resource package that can be loaded by a different
20 # application at runtime to access the package's resources.
21 # extensions_to_not_compress - E.g.: 'pak,dat,bin'
22 # extra_inputs - List of extra action inputs.
23 {
24 'variables': {
25 'asset_location%': '',
26 'create_density_splits%': 0,
27 'resource_zips%': [],
28 'shared_resources%': 0,
29 'extensions_to_not_compress%': '',
30 'extra_inputs%': [],
31 'resource_packaged_apk_name': '<(apk_name)-resources.ap_',
32 'resource_packaged_apk_path': '<(intermediate_dir)/<(resource_packaged_apk_n ame)',
33 },
34 'action_name': 'package_resources_<(apk_name)',
35 'message': 'packaging resources for <(apk_name)',
36 'inputs': [
37 # TODO: This isn't always rerun correctly, http://crbug.com/351928
38 '<(DEPTH)/build/android/gyp/util/build_utils.py',
39 '<(DEPTH)/build/android/gyp/package_resources.py',
40 '<(android_manifest_path)',
41 '<@(extra_inputs)',
42 ],
43 'outputs': [
44 '<(resource_packaged_apk_path)',
45 ],
46 'action': [
47 'python', '<(DEPTH)/build/android/gyp/package_resources.py',
48 '--android-sdk', '<(android_sdk)',
49 '--aapt-path', '<(android_aapt_path)',
50 '--configuration-name', '<(CONFIGURATION_NAME)',
51 '--android-manifest', '<(android_manifest_path)',
52 '--version-code', '<(app_manifest_version_code)',
53 '--version-name', '<(app_manifest_version_name)',
54 '--no-compress', '<(extensions_to_not_compress)',
55 '--apk-path', '<(resource_packaged_apk_path)',
56 ],
57 'conditions': [
58 ['shared_resources == 1', {
59 'action': [
60 '--shared-resources',
61 ],
62 }],
63 ['asset_location != ""', {
64 'action': [
65 '--asset-dir', '<(asset_location)',
66 ],
67 }],
68 ['create_density_splits == 1', {
69 'action': [
70 '--create-density-splits',
71 ],
72 'outputs': [
73 '<(resource_packaged_apk_path)_hdpi',
74 '<(resource_packaged_apk_path)_xhdpi',
75 '<(resource_packaged_apk_path)_xxhdpi',
76 '<(resource_packaged_apk_path)_xxxhdpi',
77 '<(resource_packaged_apk_path)_tvdpi',
78 ],
79 }],
80 ['language_splits != []', {
81 'action': [
82 '--language-splits=<(language_splits)',
83 ],
84 'outputs': [
85 "<!@(python <(DEPTH)/build/apply_locales.py '<(resource_packaged_apk_pat h)_ZZLOCALE' <(language_splits))",
86 ],
87 }],
88 ['resource_zips != []', {
89 'action': [
90 '--resource-zips', '>(resource_zips)',
91 ],
92 'inputs': [
93 '>@(resource_zips)',
94 ],
95 }],
96 ],
97 }
OLDNEW
« no previous file with comments | « build/android/pack_relocations.gypi ('k') | build/android/preprocess_google_play_services.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698