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 "can_make_payment_query.cc", | 14 "can_make_payment_query.cc", |
15 "can_make_payment_query.h", | 15 "can_make_payment_query.h", |
16 "currency_formatter.cc", | 16 "currency_formatter.cc", |
17 "currency_formatter.h", | 17 "currency_formatter.h", |
18 "journey_logger.cc", | 18 "journey_logger.cc", |
19 "journey_logger.h", | 19 "journey_logger.h", |
20 "payment_address.cc", | 20 "payment_address.cc", |
21 "payment_address.h", | 21 "payment_address.h", |
22 "payment_instrument.cc", | 22 "payment_instrument.cc", |
23 "payment_instrument.h", | 23 "payment_instrument.h", |
24 "payment_method_data.cc", | 24 "payment_method_data.cc", |
25 "payment_method_data.h", | 25 "payment_method_data.h", |
26 "payment_options_provider.h", | 26 "payment_options_provider.h", |
| 27 "payment_prefs.cc", |
| 28 "payment_prefs.h", |
27 "payment_request_data_util.cc", | 29 "payment_request_data_util.cc", |
28 "payment_request_data_util.h", | 30 "payment_request_data_util.h", |
29 "payment_request_delegate.h", | 31 "payment_request_delegate.h", |
30 "payments_profile_comparator.cc", | 32 "payments_profile_comparator.cc", |
31 "payments_profile_comparator.h", | 33 "payments_profile_comparator.h", |
32 "strings_util.cc", | 34 "strings_util.cc", |
33 "strings_util.h", | 35 "strings_util.h", |
34 ] | 36 ] |
35 | 37 |
36 deps = [ | 38 deps = [ |
37 "//base", | 39 "//base", |
38 "//components/autofill/core/browser", | 40 "//components/autofill/core/browser", |
39 "//components/keyed_service/core", | 41 "//components/keyed_service/core", |
| 42 "//components/pref_registry", |
40 "//components/strings:components_strings_grit", | 43 "//components/strings:components_strings_grit", |
41 "//components/ukm", | 44 "//components/ukm", |
42 "//third_party/libphonenumber", | 45 "//third_party/libphonenumber", |
43 "//ui/base", | 46 "//ui/base", |
44 "//url", | 47 "//url", |
45 ] | 48 ] |
46 | 49 |
47 public_deps = [ | 50 public_deps = [ |
48 "//third_party/icu", | 51 "//third_party/icu", |
49 "//third_party/libaddressinput", | 52 "//third_party/libaddressinput", |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 "//components/metrics/proto", | 93 "//components/metrics/proto", |
91 "//components/strings:components_strings_grit", | 94 "//components/strings:components_strings_grit", |
92 "//components/ukm", | 95 "//components/ukm", |
93 "//components/ukm:test_support", | 96 "//components/ukm:test_support", |
94 "//testing/gmock", | 97 "//testing/gmock", |
95 "//testing/gtest", | 98 "//testing/gtest", |
96 "//third_party/libaddressinput:test_support", | 99 "//third_party/libaddressinput:test_support", |
97 "//ui/base", | 100 "//ui/base", |
98 ] | 101 ] |
99 } | 102 } |
OLD | NEW |