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

Unified Diff: components/autofill/core/browser/BUILD.gn

Issue 1099993002: Actually disable Wallet card saving on Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix pdm tests Created 5 years, 8 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 | « components/autofill.gypi ('k') | components/autofill/core/browser/personal_data_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/BUILD.gn
diff --git a/components/autofill/core/browser/BUILD.gn b/components/autofill/core/browser/BUILD.gn
index 72a5dba01866bd38062506921648273202d216b7..b1c14883c3556bc6973183574d0dcdd483855dfa 100644
--- a/components/autofill/core/browser/BUILD.gn
+++ b/components/autofill/core/browser/BUILD.gn
@@ -142,10 +142,8 @@ static_library("browser") {
sources += get_target_outputs(":regexes")
# Controls whether Wallet cards can be saved to the local instance of chrome.
- if (is_desktop_linux) {
- defines = [ "ENABLE_SAVE_WALLET_CARDS_LOCALLY=0" ]
- } else {
- defines = [ "ENABLE_SAVE_WALLET_CARDS_LOCALLY=1" ]
+ if (!is_desktop_linux) {
+ defines = [ "ENABLE_SAVE_WALLET_CARDS_LOCALLY" ]
}
deps = [
« no previous file with comments | « components/autofill.gypi ('k') | components/autofill/core/browser/personal_data_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698