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

Side by Side Diff: components/payments/core/BUILD.gn

Issue 2829903004: Reland: Normalize shipping address for merchant on Desktop. (Closed)
Patch Set: Make android code use the new impl Created 3 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 unified diff | Download patch
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 static_library("core") { 5 static_library("core") {
6 sources = [ 6 sources = [
7 "address_normalizer.cc",
8 "address_normalizer.h", 7 "address_normalizer.h",
8 "address_normalizer_impl.cc",
9 "address_normalizer_impl.h",
9 "autofill_payment_instrument.cc", 10 "autofill_payment_instrument.cc",
10 "autofill_payment_instrument.h", 11 "autofill_payment_instrument.h",
11 "basic_card_response.cc", 12 "basic_card_response.cc",
12 "basic_card_response.h", 13 "basic_card_response.h",
13 "currency_formatter.cc", 14 "currency_formatter.cc",
14 "currency_formatter.h", 15 "currency_formatter.h",
15 "journey_logger.cc", 16 "journey_logger.cc",
16 "journey_logger.h", 17 "journey_logger.h",
17 "payment_address.cc", 18 "payment_address.cc",
18 "payment_address.h", 19 "payment_address.h",
(...skipping 23 matching lines...) Expand all
42 43
43 public_deps = [ 44 public_deps = [
44 "//third_party/icu", 45 "//third_party/icu",
45 "//third_party/libaddressinput", 46 "//third_party/libaddressinput",
46 ] 47 ]
47 } 48 }
48 49
49 source_set("unit_tests") { 50 source_set("unit_tests") {
50 testonly = true 51 testonly = true
51 sources = [ 52 sources = [
52 "address_normalizer_unittest.cc", 53 "address_normalizer_impl_unittest.cc",
53 "autofill_payment_instrument_unittest.cc", 54 "autofill_payment_instrument_unittest.cc",
54 "basic_card_response_unittest.cc", 55 "basic_card_response_unittest.cc",
55 "currency_formatter_unittest.cc", 56 "currency_formatter_unittest.cc",
56 "journey_logger_unittest.cc", 57 "journey_logger_unittest.cc",
57 "payment_address_unittest.cc", 58 "payment_address_unittest.cc",
58 "payment_method_data_unittest.cc", 59 "payment_method_data_unittest.cc",
59 "payment_request_data_util_unittest.cc", 60 "payment_request_data_util_unittest.cc",
60 "profile_util_unittest.cc", 61 "profile_util_unittest.cc",
61 ] 62 ]
62 63
63 deps = [ 64 deps = [
64 ":core", 65 ":core",
65 "//base", 66 "//base",
66 "//base/test:test_support", 67 "//base/test:test_support",
67 "//components/autofill/core/browser", 68 "//components/autofill/core/browser",
68 "//components/autofill/core/browser:test_support", 69 "//components/autofill/core/browser:test_support",
69 "//components/metrics/proto", 70 "//components/metrics/proto",
70 "//components/strings:components_strings_grit", 71 "//components/strings:components_strings_grit",
71 "//components/ukm", 72 "//components/ukm",
72 "//components/ukm:test_support", 73 "//components/ukm:test_support",
73 "//testing/gmock", 74 "//testing/gmock",
74 "//testing/gtest", 75 "//testing/gtest",
75 "//third_party/libaddressinput:test_support", 76 "//third_party/libaddressinput:test_support",
76 "//ui/base", 77 "//ui/base",
77 ] 78 ]
78 } 79 }
OLDNEW
« no previous file with comments | « components/payments/content/payment_response_helper_unittest.cc ('k') | components/payments/core/address_normalizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698