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

Unified Diff: build/android/finalize_splits_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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | build/android/gyp/package_resources.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/finalize_splits_action.gypi
diff --git a/build/android/finalize_splits_action.gypi b/build/android/finalize_splits_action.gypi
index 0d0fe88b7fbc2bb50b582ce9b7fb34d95e8845f4..4472d5a8a968b80f2c0f0f30391ce199144518e9 100644
--- a/build/android/finalize_splits_action.gypi
+++ b/build/android/finalize_splits_action.gypi
@@ -45,16 +45,18 @@
'<(resource_packaged_apk_path)-hdpi',
'<(resource_packaged_apk_path)-xhdpi',
'<(resource_packaged_apk_path)-xxhdpi',
+ '<(resource_packaged_apk_path)-xxxhdpi',
'<(resource_packaged_apk_path)-tvdpi',
],
'outputs': [
'<(base_output_path)-density-hdpi.apk',
'<(base_output_path)-density-xhdpi.apk',
'<(base_output_path)-density-xxhdpi.apk',
+ '<(base_output_path)-density-xxxhdpi.apk',
'<(base_output_path)-density-tvdpi.apk',
],
'action': [
- '--densities=hdpi,xhdpi,xxhdpi,tvdpi',
+ '--densities=hdpi,xhdpi,xxhdpi,xxxhdpi,tvdpi',
],
}],
# TODO(agrieve): Implement language splits
« no previous file with comments | « no previous file | build/android/gyp/package_resources.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698