| 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_normalization_manager.cc", | 7 "address_normalization_manager.cc", |
| 8 "address_normalization_manager.h", | 8 "address_normalization_manager.h", |
| 9 "address_normalizer.h", | 9 "address_normalizer.h", |
| 10 "address_normalizer_impl.cc", | 10 "address_normalizer_impl.cc", |
| 11 "address_normalizer_impl.h", | 11 "address_normalizer_impl.h", |
| 12 "autofill_payment_instrument.cc", | 12 "autofill_payment_instrument.cc", |
| 13 "autofill_payment_instrument.h", | 13 "autofill_payment_instrument.h", |
| 14 "basic_card_response.cc", | 14 "basic_card_response.cc", |
| 15 "basic_card_response.h", | 15 "basic_card_response.h", |
| 16 "can_make_payment_query.cc", | 16 "can_make_payment_query.cc", |
| 17 "can_make_payment_query.h", | 17 "can_make_payment_query.h", |
| 18 "currency_formatter.cc", | 18 "currency_formatter.cc", |
| 19 "currency_formatter.h", | 19 "currency_formatter.h", |
| 20 "features.cc", |
| 21 "features.h", |
| 20 "journey_logger.cc", | 22 "journey_logger.cc", |
| 21 "journey_logger.h", | 23 "journey_logger.h", |
| 22 "payment_address.cc", | 24 "payment_address.cc", |
| 23 "payment_address.h", | 25 "payment_address.h", |
| 24 "payment_instrument.cc", | 26 "payment_instrument.cc", |
| 25 "payment_instrument.h", | 27 "payment_instrument.h", |
| 26 "payment_method_data.cc", | 28 "payment_method_data.cc", |
| 27 "payment_method_data.h", | 29 "payment_method_data.h", |
| 28 "payment_options_provider.h", | 30 "payment_options_provider.h", |
| 29 "payment_prefs.cc", | 31 "payment_prefs.cc", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 "//components/metrics/proto", | 108 "//components/metrics/proto", |
| 107 "//components/strings:components_strings_grit", | 109 "//components/strings:components_strings_grit", |
| 108 "//components/ukm", | 110 "//components/ukm", |
| 109 "//components/ukm:test_support", | 111 "//components/ukm:test_support", |
| 110 "//testing/gmock", | 112 "//testing/gmock", |
| 111 "//testing/gtest", | 113 "//testing/gtest", |
| 112 "//third_party/libaddressinput:test_support", | 114 "//third_party/libaddressinput:test_support", |
| 113 "//ui/base", | 115 "//ui/base", |
| 114 ] | 116 ] |
| 115 } | 117 } |
| OLD | NEW |