| 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", |
| 8 "address_normalization_manager.h", |
| 7 "address_normalizer.h", | 9 "address_normalizer.h", |
| 8 "address_normalizer_impl.cc", | 10 "address_normalizer_impl.cc", |
| 9 "address_normalizer_impl.h", | 11 "address_normalizer_impl.h", |
| 10 "autofill_payment_instrument.cc", | 12 "autofill_payment_instrument.cc", |
| 11 "autofill_payment_instrument.h", | 13 "autofill_payment_instrument.h", |
| 12 "basic_card_response.cc", | 14 "basic_card_response.cc", |
| 13 "basic_card_response.h", | 15 "basic_card_response.h", |
| 14 "can_make_payment_query.cc", | 16 "can_make_payment_query.cc", |
| 15 "can_make_payment_query.h", | 17 "can_make_payment_query.h", |
| 16 "currency_formatter.cc", | 18 "currency_formatter.cc", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 deps = [ | 67 deps = [ |
| 66 ":core", | 68 ":core", |
| 67 "//base", | 69 "//base", |
| 68 "//components/autofill/core/browser", | 70 "//components/autofill/core/browser", |
| 69 ] | 71 ] |
| 70 } | 72 } |
| 71 | 73 |
| 72 source_set("unit_tests") { | 74 source_set("unit_tests") { |
| 73 testonly = true | 75 testonly = true |
| 74 sources = [ | 76 sources = [ |
| 77 "address_normalization_manager_unittest.cc", |
| 75 "address_normalizer_impl_unittest.cc", | 78 "address_normalizer_impl_unittest.cc", |
| 76 "autofill_payment_instrument_unittest.cc", | 79 "autofill_payment_instrument_unittest.cc", |
| 77 "basic_card_response_unittest.cc", | 80 "basic_card_response_unittest.cc", |
| 78 "currency_formatter_unittest.cc", | 81 "currency_formatter_unittest.cc", |
| 79 "journey_logger_unittest.cc", | 82 "journey_logger_unittest.cc", |
| 80 "payment_address_unittest.cc", | 83 "payment_address_unittest.cc", |
| 81 "payment_method_data_unittest.cc", | 84 "payment_method_data_unittest.cc", |
| 82 "payment_request_data_util_unittest.cc", | 85 "payment_request_data_util_unittest.cc", |
| 83 "payments_profile_comparator_unittest.cc", | 86 "payments_profile_comparator_unittest.cc", |
| 84 ] | 87 ] |
| 85 | 88 |
| 86 deps = [ | 89 deps = [ |
| 87 ":core", | 90 ":core", |
| 88 ":test_support", | 91 ":test_support", |
| 89 "//base", | 92 "//base", |
| 90 "//base/test:test_support", | 93 "//base/test:test_support", |
| 91 "//components/autofill/core/browser", | 94 "//components/autofill/core/browser", |
| 92 "//components/autofill/core/browser:test_support", | 95 "//components/autofill/core/browser:test_support", |
| 93 "//components/metrics/proto", | 96 "//components/metrics/proto", |
| 94 "//components/strings:components_strings_grit", | 97 "//components/strings:components_strings_grit", |
| 95 "//components/ukm", | 98 "//components/ukm", |
| 96 "//components/ukm:test_support", | 99 "//components/ukm:test_support", |
| 97 "//testing/gmock", | 100 "//testing/gmock", |
| 98 "//testing/gtest", | 101 "//testing/gtest", |
| 99 "//third_party/libaddressinput:test_support", | 102 "//third_party/libaddressinput:test_support", |
| 100 "//ui/base", | 103 "//ui/base", |
| 101 ] | 104 ] |
| 102 } | 105 } |
| OLD | NEW |