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

Unified Diff: build/common.gypi

Issue 9453035: Implement one click login. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Cleanup old filenames from chrome_browser.gypi Created 8 years, 10 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 | chrome/app/chromium_strings.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
===================================================================
--- build/common.gypi (revision 124931)
+++ build/common.gypi (working copy)
@@ -229,6 +229,9 @@
# libraries on linux x86-64 and arm, plus ASLR.
'linux_fpic%': 1,
+ # Whether one-click signin is enabled or not.
+ 'enable_one_click_signin%': 0,
+
# Enable navigator.registerProtocolHandler and supporting UI.
'enable_register_protocol_handler%': 1,
@@ -372,6 +375,12 @@
'file_manager_extension%': 0,
}],
+ # For now one-click signin is enabled only for windows since the UI
+ # is not yet complete for other platforms.
+ ['OS=="win"', {
+ 'enable_one_click_signin%': 1,
+ }],
+
['OS=="android"', {
'proprietary_codecs%': 1,
'enable_webrtc%': 0,
@@ -458,6 +467,7 @@
'use_titlecase_in_grd_files%': '<(use_titlecase_in_grd_files)',
'use_third_party_translations%': '<(use_third_party_translations)',
'remoting%': '<(remoting)',
+ 'enable_one_click_signin%': '<(enable_one_click_signin)',
'enable_webrtc%': '<(enable_webrtc)',
'chromium_win_pch%': '<(chromium_win_pch)',
'p2p_apis%': '<(p2p_apis)',
@@ -1137,6 +1147,9 @@
['use_nss==1', {
'defines': ['USE_NSS=1'],
}],
+ ['enable_one_click_signin==1', {
+ 'defines': ['ENABLE_ONE_CLICK_SIGNIN'],
+ }],
['toolkit_uses_gtk==1', {
'defines': ['TOOLKIT_USES_GTK=1'],
}],
« no previous file with comments | « no previous file | chrome/app/chromium_strings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698