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

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

Issue 1192263002: Create xxxhdpi density splits when density splits are enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 5 years, 6 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/gyp/package_resources.py ('k') | build/android/pylib/device/device_utils.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 a helper to java_apk.gypi. It should be used to create an 5 # This file is a helper to java_apk.gypi. It should be used to create an
6 # action that runs ApkBuilder via ANT. 6 # action that runs ApkBuilder via ANT.
7 # 7 #
8 # Required variables: 8 # Required variables:
9 # apk_name - File name (minus path & extension) of the output apk. 9 # apk_name - File name (minus path & extension) of the output apk.
10 # android_manifest_path - Path to AndroidManifest.xml. 10 # android_manifest_path - Path to AndroidManifest.xml.
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ], 65 ],
66 }], 66 }],
67 ['create_density_splits == 1', { 67 ['create_density_splits == 1', {
68 'action': [ 68 'action': [
69 '--create-density-splits', 69 '--create-density-splits',
70 ], 70 ],
71 'outputs': [ 71 'outputs': [
72 '<(resource_packaged_apk_path)-hdpi', 72 '<(resource_packaged_apk_path)-hdpi',
73 '<(resource_packaged_apk_path)-xhdpi', 73 '<(resource_packaged_apk_path)-xhdpi',
74 '<(resource_packaged_apk_path)-xxhdpi', 74 '<(resource_packaged_apk_path)-xxhdpi',
75 '<(resource_packaged_apk_path)-xxxhdpi',
75 '<(resource_packaged_apk_path)-tvdpi', 76 '<(resource_packaged_apk_path)-tvdpi',
76 ], 77 ],
77 }], 78 }],
78 ['resource_zips != []', { 79 ['resource_zips != []', {
79 'action': [ 80 'action': [
80 '--resource-zips', '>(resource_zips)', 81 '--resource-zips', '>(resource_zips)',
81 ], 82 ],
82 'inputs': [ 83 'inputs': [
83 '>@(resource_zips)', 84 '>@(resource_zips)',
84 ], 85 ],
85 }], 86 }],
86 ], 87 ],
87 } 88 }
OLDNEW
« no previous file with comments | « build/android/gyp/package_resources.py ('k') | build/android/pylib/device/device_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698