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

Unified Diff: chrome/plugin/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
« no previous file with comments | « build/config/BUILD.gn ('k') | components/html_viewer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/plugin/BUILD.gn
diff --git a/chrome/plugin/BUILD.gn b/chrome/plugin/BUILD.gn
index 1da688a0741b86e45b2e3056bd13812ab31a3b1f..9ab14b5765b106f23576d1adbc143356b55fe2bc 100644
--- a/chrome/plugin/BUILD.gn
+++ b/chrome/plugin/BUILD.gn
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build_overrides/v8.gni")
+
static_library("plugin") {
sources = [
"chrome_content_plugin_client.cc",
@@ -9,6 +11,9 @@ static_library("plugin") {
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ if (v8_use_external_startup_data) {
+ configs += [ "//v8:external_startup_data" ]
brettw 2015/10/20 02:44:41 Did you consider making the config check the flag
Dirk Pranke 2015/10/20 03:00:16 I did, yes. In some cases (e.g., net) we have to
+ }
deps = [
"//base",
« no previous file with comments | « build/config/BUILD.gn ('k') | components/html_viewer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698