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

Unified Diff: build/config/android/rules.gni

Issue 1133603004: Add create_density_splits option to java_apk.gypi / android_apk (gn) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-abi
Patch Set: fixed up gyp_managed_install Created 5 years, 7 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
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index d8255a2137394770b03899e1fa94780984ff9b6f..cb9d9215c270cb2ce1485721461bea2eb1242c81 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1302,6 +1302,8 @@ template("android_apk") {
_rebased_build_config = rebase_path(_build_config, root_build_dir)
_create_abi_split =
defined(invoker.create_abi_split) && invoker.create_abi_split
+ _create_density_splits =
+ defined(invoker.create_density_splits) && invoker.create_density_splits
# Help GN understand that _create_abi_split is not unused (bug in GN).
assert(_create_abi_split || true)
@@ -1493,6 +1495,7 @@ template("android_apk") {
resources_zip = _all_resources_zip_path
dex_path = final_dex_path
load_library_from_apk = _load_library_from_apk
+ create_density_splits = _create_density_splits
version_code = _version_code
version_name = _version_name

Powered by Google App Engine
This is Rietveld 408576698