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

Unified Diff: content/app/BUILD.gn

Issue 1413893003: Move v8_use_external_startup_data out of //build/config:feature_flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_v8_module_args
Patch Set: Created 5 years, 2 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: content/app/BUILD.gn
diff --git a/content/app/BUILD.gn b/content/app/BUILD.gn
index d8f67912097511b30d267305abfaf6274572ed26..d3a5e162a45659b55cfc93e552128573f31db535 100644
--- a/content/app/BUILD.gn
+++ b/content/app/BUILD.gn
@@ -3,6 +3,7 @@
# found in the LICENSE file.
import("//build/config/chrome_build.gni")
+import("//build_overrides/v8.gni")
content_app_sources = [
"android/app_jni_registrar.cc",
@@ -72,6 +73,10 @@ content_app_extra_configs = [
"//content:content_implementation",
]
+if (v8_use_external_startup_data) {
+ content_app_extra_configs += [ "//v8:external_startup_data" ]
+}
+
if (!is_multi_dll_chrome) {
content_app_deps += [ "//content/gpu:gpu_sources" ]
}

Powered by Google App Engine
This is Rietveld 408576698