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

Unified Diff: build/config/BUILD.gn

Issue 753103003: Enable external V8 snapshot on Android through GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Brett's comments. Created 6 years 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 | « no previous file | build/module_args/v8.gni » ('j') | build/module_args/v8.gni » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/BUILD.gn
diff --git a/build/config/BUILD.gn b/build/config/BUILD.gn
index c51709c24ce97419a6be64241c616917c635e477..602102aa0d6af3d575e9b9d892273bb6972ea4c3 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -6,6 +6,7 @@ import("//build/config/allocator.gni")
import("//build/config/crypto.gni")
import("//build/config/features.gni")
import("//build/config/ui.gni")
+import("//build/module_args/v8.gni")
declare_args() {
# When set, turns off the (normally-on) iterator debugging and related stuff
@@ -204,6 +205,9 @@ config("feature_flags") {
if (proprietary_codecs) {
defines += [ "USE_PROPRIETARY_CODECS" ]
}
+ if (v8_use_external_startup_data) {
+ defines += [ "V8_USE_EXTERNAL_STARTUP_DATA" ]
+ }
}
# Debug/release ----------------------------------------------------------------
« no previous file with comments | « no previous file | build/module_args/v8.gni » ('j') | build/module_args/v8.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698