diff options
author | estade <estade@chromium.org> | 2015-03-26 17:37:13 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-27 00:37:50 +0000 |
commit | 056211ede394beefca4b2baee05a8fe9574d5302 (patch) | |
tree | 7c79bc96b399d57dd230bbe497859a8604cbdc97 /build/common.gypi | |
parent | 615510b0a769e83e36e1d1fb27465abb74bed6b4 (diff) | |
download | chromium_src-056211ede394beefca4b2baee05a8fe9574d5302.zip chromium_src-056211ede394beefca4b2baee05a8fe9574d5302.tar.gz chromium_src-056211ede394beefca4b2baee05a8fe9574d5302.tar.bz2 |
Add flag to disable full PAN storage.
currently this flag is not used, but we'll soon flip it to off for desktop linux.
BUG=468045
Review URL: https://codereview.chromium.org/1012223002
Cr-Commit-Position: refs/heads/master@{#322510}
Diffstat (limited to 'build/common.gypi')
-rw-r--r-- | build/common.gypi | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index cfc4d07..bc263e6 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'], }], |