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

Unified Diff: build/config/BUILD.gn

Issue 365793002: Add lots of GN targets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « BUILD.gn ('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 9e9c88ffc7fb57c3ef905a2aef62cd43712df96e..b0a8ab4a3eafd5f9ed0d8e4f337706d0375739ea 100644
--- a/build/config/BUILD.gn
+++ b/build/config/BUILD.gn
@@ -32,12 +32,9 @@ config("feature_flags") {
defines = [
"CHROMIUM_BUILD",
"ENABLE_ONE_CLICK_SIGNIN",
- "ENABLE_REMOTING=1",
"ENABLE_NOTIFICATIONS",
"ENABLE_EGLIMAGE=1",
"ENABLE_BACKGROUND=1",
- "ENABLE_GOOGLE_NOW=1",
- "ENABLE_SETTINGS_APP=1",
"USE_MOJO=1",
"V8_DEPRECATION_WARNINGS", # Don't use deprecated V8 APIs anywhere.
# Temporary suppression until Blink code can be removed.
@@ -160,6 +157,9 @@ config("feature_flags") {
if (enable_app_list) {
defines += [ "ENABLE_APP_LIST=1" ]
}
+ if (enable_settings_app) {
+ defines += [ "ENABLE_SETTINGS_APP=1" ]
+ }
if (enable_managed_users) {
defines += [ "ENABLE_MANAGED_USERS=1" ]
}
@@ -172,6 +172,15 @@ config("feature_flags") {
if (enable_wifi_bootstrapping) {
defines += [ "ENABLE_WIFI_BOOTSTRAPPING=1" ]
}
+ if (enable_image_loader_extension) {
+ defines += [ "IMAGE_LOADER_EXTENSION=1" ]
+ }
+ if (enable_remoting) {
+ defines += [ "ENABLE_REMOTING=1" ]
+ }
+ if (enable_google_now) {
+ defines += [ "ENABLE_GOOGLE_NOW=1" ]
+ }
}
# Debug/release ----------------------------------------------------------------
« no previous file with comments | « BUILD.gn ('k') | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698