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

Unified Diff: chrome/browser/BUILD.gn

Issue 2338283003: [Payments] Normalize addresses before passing them to merchants. (Closed)
Patch Set: Created 4 years, 3 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: chrome/browser/BUILD.gn
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
index a9221f6349bb0f9663d302bf799eaad62ab60610..d5de4d923db7615adc6b06faf5dc81aa44589780 100644
--- a/chrome/browser/BUILD.gn
+++ b/chrome/browser/BUILD.gn
@@ -78,6 +78,8 @@ split_static_library("browser") {
"autofill/personal_data_manager_factory.h",
"autofill/risk_util.cc",
"autofill/risk_util.h",
+ "autofill/validation_rules_storage_factory.cc",
+ "autofill/validation_rules_storage_factory.h",
"background_sync/background_sync_controller_factory.cc",
"background_sync/background_sync_controller_factory.h",
"background_sync/background_sync_controller_impl.cc",
@@ -2512,10 +2514,7 @@ split_static_library("browser") {
"//third_party/libaddressinput:util",
]
- deps -= [
- "//components/storage_monitor",
- "//third_party/libaddressinput",
- ]
+ deps -= [ "//components/storage_monitor" ]
if (use_seccomp_bpf) {
defines += [ "USE_SECCOMP_BPF" ]
deps += [ "//sandbox/linux:seccomp_bpf" ]
@@ -2525,8 +2524,6 @@ split_static_library("browser") {
sources += [
"accessibility/invert_bubble_prefs.cc",
"accessibility/invert_bubble_prefs.h",
- "autofill/validation_rules_storage_factory.cc",
- "autofill/validation_rules_storage_factory.h",
"background/background_contents.cc",
"background/background_contents.h",
"banners/app_banner_infobar_delegate_desktop.cc",
@@ -3194,6 +3191,8 @@ split_static_library("browser") {
"android/webapps/single_tab_mode_tab_helper.h",
"android/webapps/webapp_registry.cc",
"android/webapps/webapp_registry.h",
+ "autofill/android/mock_address_validator.cc",
+ "autofill/android/mock_address_validator.h",
"autofill/android/personal_data_manager_android.cc",
"autofill/android/personal_data_manager_android.h",
"dom_distiller/dom_distiller_service_factory_android.cc",
@@ -3305,6 +3304,7 @@ split_static_library("browser") {
"//components/resources:components_resources",
"//components/toolbar",
"//components/web_contents_delegate_android",
+ "//third_party/libaddressinput",
"//third_party/smhasher:murmurhash2",
]
if (enable_supervised_users) {

Powered by Google App Engine
This is Rietveld 408576698