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

Unified Diff: build/config/BUILD.gn

Issue 343233004: Add chrome/renderer to the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: work around lack of hunspell Created 6 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
« no previous file with comments | « apps/common/api/api.gyp ('k') | build/config/features.gni » ('j') | no next file with comments »
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 71137f1ecc816774c3a0b5b7ee15a93d842ff3bb..1b64b5358e1ce86a40b15772dc949e09c86fb638 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -37,7 +37,6 @@ config("feature_flags") {
"ENABLE_NOTIFICATIONS",
"ENABLE_EGLIMAGE=1",
"ENABLE_TASK_MANAGER=1",
- "ENABLE_EXTENSIONS=1",
"ENABLE_PLUGIN_INSTALLATION=1",
"ENABLE_SESSION_SERVICE=1",
"ENABLE_THEMES=1",
@@ -138,6 +137,12 @@ config("feature_flags") {
if (disable_ftp_support) {
defines += [ "DISABLE_FTP_SUPPORT=1" ]
}
+ if (!enable_nacl) {
+ defines += [ "DISABLE_NACL" ]
+ }
+ if (enable_extensions) {
+ defines += [ "ENABLE_EXTENSIONS=1" ]
+ }
}
# Debug/release ----------------------------------------------------------------
« no previous file with comments | « apps/common/api/api.gyp ('k') | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698