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

Unified Diff: build/common.gypi

Issue 1012223002: Add flag to disable full PAN storage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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 | chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/common.gypi
diff --git a/build/common.gypi b/build/common.gypi
index cfc4d070f96194d89d159659672ef77c325ae1a2..bc263e64840224249e286b223182bf756f776d05 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -1021,6 +1021,15 @@
}, {
'v8_use_external_startup_data%': 0,
}],
+
+ # Controls whether Wallet cards can be saved to the local instance of
+ # chrome. TODO(estade): set to 0 for Linux before M43 branch.
+ ['desktop_linux==1', {
+ 'enable_save_wallet_cards_locally%': 1,
+ }, {
+ 'enable_save_wallet_cards_locally%': 1,
+ }],
+
],
# Set this to 1 to enable use of concatenated impulse responses
@@ -1172,6 +1181,7 @@
'enable_themes%': '<(enable_themes)',
'enable_autofill_dialog%': '<(enable_autofill_dialog)',
'enable_prod_wallet_service%': '<(enable_prod_wallet_service)',
+ 'enable_save_wallet_cards_locally%': '<(enable_save_wallet_cards_locally)',
'enable_background%': '<(enable_background)',
'linux_use_bundled_gold%': '<(linux_use_bundled_gold)',
'linux_use_bundled_binutils%': '<(linux_use_bundled_binutils)',
@@ -2942,6 +2952,9 @@
['enable_prod_wallet_service==1', {
'defines': ['ENABLE_PROD_WALLET_SERVICE=1'],
}],
+ ['enable_save_wallet_cards_locally==1', {
+ 'defines': ['ENABLE_SAVE_WALLET_CARDS_LOCALLY=1'],
+ }],
['enable_background==1', {
'defines': ['ENABLE_BACKGROUND=1'],
}],
« no previous file with comments | « no previous file | chrome/browser/ui/autofill/card_unmask_prompt_controller_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698