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

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

Issue 1147213004: Store and load icudtl.dat directly from the apk rather than extracting on start-up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load-from-apk
Patch Set: fix compile 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 | « build/config/android/internal_rules.gni ('k') | build/java_apk.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index d687112fb20cbf163e108c8283cc64300a55a47a..56d1030037fc851b72a97adfcf677e829cb2b269 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1609,6 +1609,12 @@ template("android_apk") {
dex_path = final_dex_path
load_library_from_apk = _load_library_from_apk
create_density_splits = _create_density_splits
+ if (defined(invoker.extensions_to_not_compress)) {
+ extensions_to_not_compress = invoker.extensions_to_not_compress
+ } else {
+ # Allow icu data to be loaded directly from the .apk.
+ extensions_to_not_compress = "dat"
+ }
version_code = _version_code
version_name = _version_name
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698