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