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

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: Keep extracting for components/ 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 69b7780153164cf13bea62e11e7a637cfd74f4d9..34c80e7afa9e1573bba36b9fb531359529f46d82 100644
--- a/build/config/android/rules.gni
+++ b/build/config/android/rules.gni
@@ -1615,8 +1615,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