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

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

Issue 1156873002: Load v8 snapshots directly from APK (and store them uncompressed) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@v8initializer
Patch Set: rebase for review 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
Index: build/config/android/rules.gni
diff --git a/build/config/android/rules.gni b/build/config/android/rules.gni
index b0c8c6ce4e3e21950bfd6482fcb1b3a6183828f7..816be5bd6151cc4f1a571604716d4ebfde95bf1d 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1612,8 +1612,8 @@ template("android_apk") {
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"
+ # Allow icu data and v8 snapshots to be loaded directly from the .apk.
+ extensions_to_not_compress = "dat,bin"
}
version_code = _version_code

Powered by Google App Engine
This is Rietveld 408576698