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

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: Delete pointless empty array 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 f3c5f1ae9c4d3e812b2341124fcab0ada197cdc2..7882c3244e4646fbd7da51577faf6288aa990621 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1517,8 +1517,8 @@ template("android_apk") {
if (defined(invoker.extensions_to_not_compress)) {
extensions_to_not_compress = invoker.extensions_to_not_compress
} else {
- # Allow v8 snapshots to be loaded directly from the .apk.
- extensions_to_not_compress = "bin"
+ # Allow v8 snapshots and icu data to be loaded directly from the .apk.
+ extensions_to_not_compress = "bin,dat"
}
version_code = _version_code
« base/i18n/icu_util.cc ('K') | « base/i18n/icu_util.cc ('k') | build/java_apk.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698