OLD | NEW |
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.h", | 7 "address_normalizer.h", |
8 "address_normalizer_impl.cc", | 8 "address_normalizer_impl.cc", |
9 "address_normalizer_impl.h", | 9 "address_normalizer_impl.h", |
10 "autofill_payment_instrument.cc", | 10 "autofill_payment_instrument.cc", |
11 "autofill_payment_instrument.h", | 11 "autofill_payment_instrument.h", |
12 "basic_card_response.cc", | 12 "basic_card_response.cc", |
13 "basic_card_response.h", | 13 "basic_card_response.h", |
14 "currency_formatter.cc", | 14 "currency_formatter.cc", |
15 "currency_formatter.h", | 15 "currency_formatter.h", |
16 "journey_logger.cc", | 16 "journey_logger.cc", |
17 "journey_logger.h", | 17 "journey_logger.h", |
18 "payment_address.cc", | 18 "payment_address.cc", |
19 "payment_address.h", | 19 "payment_address.h", |
20 "payment_instrument.cc", | 20 "payment_instrument.cc", |
21 "payment_instrument.h", | 21 "payment_instrument.h", |
22 "payment_method_data.cc", | 22 "payment_method_data.cc", |
23 "payment_method_data.h", | 23 "payment_method_data.h", |
24 "payment_options_provider.h", | 24 "payment_options_provider.h", |
25 "payment_request_data_util.cc", | 25 "payment_request_data_util.cc", |
26 "payment_request_data_util.h", | 26 "payment_request_data_util.h", |
27 "payment_request_delegate.h", | 27 "payment_request_delegate.h", |
28 "profile_util.cc", | 28 "payments_profile_comparator.cc", |
29 "profile_util.h", | 29 "payments_profile_comparator.h", |
30 "strings_util.cc", | 30 "strings_util.cc", |
31 "strings_util.h", | 31 "strings_util.h", |
32 ] | 32 ] |
33 | 33 |
34 deps = [ | 34 deps = [ |
35 "//base", | 35 "//base", |
36 "//components/autofill/core/browser", | 36 "//components/autofill/core/browser", |
37 "//components/strings:components_strings_grit", | 37 "//components/strings:components_strings_grit", |
38 "//components/ukm", | 38 "//components/ukm", |
39 "//third_party/libphonenumber", | 39 "//third_party/libphonenumber", |
(...skipping 27 matching lines...) Expand all Loading... |
67 testonly = true | 67 testonly = true |
68 sources = [ | 68 sources = [ |
69 "address_normalizer_impl_unittest.cc", | 69 "address_normalizer_impl_unittest.cc", |
70 "autofill_payment_instrument_unittest.cc", | 70 "autofill_payment_instrument_unittest.cc", |
71 "basic_card_response_unittest.cc", | 71 "basic_card_response_unittest.cc", |
72 "currency_formatter_unittest.cc", | 72 "currency_formatter_unittest.cc", |
73 "journey_logger_unittest.cc", | 73 "journey_logger_unittest.cc", |
74 "payment_address_unittest.cc", | 74 "payment_address_unittest.cc", |
75 "payment_method_data_unittest.cc", | 75 "payment_method_data_unittest.cc", |
76 "payment_request_data_util_unittest.cc", | 76 "payment_request_data_util_unittest.cc", |
77 "profile_util_unittest.cc", | 77 "payments_profile_comparator_unittest.cc", |
78 ] | 78 ] |
79 | 79 |
80 deps = [ | 80 deps = [ |
81 ":core", | 81 ":core", |
82 ":test_support", | 82 ":test_support", |
83 "//base", | 83 "//base", |
84 "//base/test:test_support", | 84 "//base/test:test_support", |
85 "//components/autofill/core/browser", | 85 "//components/autofill/core/browser", |
86 "//components/autofill/core/browser:test_support", | 86 "//components/autofill/core/browser:test_support", |
87 "//components/metrics/proto", | 87 "//components/metrics/proto", |
88 "//components/strings:components_strings_grit", | 88 "//components/strings:components_strings_grit", |
89 "//components/ukm", | 89 "//components/ukm", |
90 "//components/ukm:test_support", | 90 "//components/ukm:test_support", |
91 "//testing/gmock", | 91 "//testing/gmock", |
92 "//testing/gtest", | 92 "//testing/gtest", |
93 "//third_party/libaddressinput:test_support", | 93 "//third_party/libaddressinput:test_support", |
94 "//ui/base", | 94 "//ui/base", |
95 ] | 95 ] |
96 } | 96 } |
OLD | NEW |