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

Unified Diff: chrome/common/features.gni

Issue 1830543002: Make some chrome feature flags customizable in GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/features.gni
diff --git a/chrome/common/features.gni b/chrome/common/features.gni
index 06e0804209f715e646d8ec72955683bc89a446cc..5cc2a0997b899ba60691f9c597fd06697776e53f 100644
--- a/chrome/common/features.gni
+++ b/chrome/common/features.gni
@@ -18,16 +18,16 @@ declare_args() {
# pages. https://github.com/polymer/vulcanize
use_vulcanize = true
+ # Enables support for background apps.
+ enable_background = !is_ios && !is_android
+
+ enable_one_click_signin = is_win || is_mac || (is_linux && !is_chromeos)
+
# Set to true to bundle all the mash related mojo services into chrome.
# Specify --mash to chrome to have chrome start the mash environment.
enable_package_mash_services = is_chromeos
}
-enable_one_click_signin = is_win || is_mac || (is_linux && !is_chromeos)
-
-# Enables support for background apps.
-enable_background = !is_ios && !is_android
-
chrome_grit_defines = [
"enable_background=$enable_background",
"enable_google_now=$enable_google_now",
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698