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

Unified Diff: build/common.gypi

Issue 12282004: Added personal_data_manager android implementation for auto-populating auto-fill on android builds … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Feature flag-guard Created 7 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
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index f267679afbef9ff0f26ee3da4bec4006bf4524fe..185b4a7004ac2b877d1b0215cbc30c3d40497f85 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -301,6 +301,10 @@
# libraries on linux x86-64 and arm, plus ASLR.
'linux_fpic%': 1,
+ # Whether a default android autofill profile should be constructed
+ # from the user's contact profile.
+ 'enable_android_autofill_autopopulator%': 0,
+
# Whether one-click signin is enabled or not.
'enable_one_click_signin%': 0,
@@ -695,6 +699,7 @@
'use_third_party_translations%': '<(use_third_party_translations)',
'remoting%': '<(remoting)',
'enable_one_click_signin%': '<(enable_one_click_signin)',
+ 'enable_android_autofill_autopopulator%': '<(enable_android_autofill_autopopulator)',
'enable_webrtc%': '<(enable_webrtc)',
'chromium_win_pch%': '<(chromium_win_pch)',
'configuration_policy%': '<(configuration_policy)',
@@ -1774,6 +1779,9 @@
['enable_webrtc==1', {
'defines': ['ENABLE_WEBRTC=1'],
}],
+ ['enable_android_autofill_autopopulator==1', {
+ 'defines': ['ENABLE_ANDROID_AUTOFILL_AUTOPOPULATOR=1'],
+ }],
['proprietary_codecs==1', {
'defines': ['USE_PROPRIETARY_CODECS'],
}],
« no previous file with comments | « no previous file | chrome/android/testshell/java/AndroidManifest.xml » ('j') | chrome/android/testshell/java/AndroidManifest.xml » ('J')

Powered by Google App Engine
This is Rietveld 408576698