| 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", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "payment_options_provider.h", | 26 "payment_options_provider.h", |
| 27 "payment_prefs.cc", | 27 "payment_prefs.cc", |
| 28 "payment_prefs.h", | 28 "payment_prefs.h", |
| 29 "payment_request_data_util.cc", | 29 "payment_request_data_util.cc", |
| 30 "payment_request_data_util.h", | 30 "payment_request_data_util.h", |
| 31 "payment_request_delegate.h", | 31 "payment_request_delegate.h", |
| 32 "payments_profile_comparator.cc", | 32 "payments_profile_comparator.cc", |
| 33 "payments_profile_comparator.h", | 33 "payments_profile_comparator.h", |
| 34 "strings_util.cc", | 34 "strings_util.cc", |
| 35 "strings_util.h", | 35 "strings_util.h", |
| 36 "subkey_requester.cc", |
| 37 "subkey_requester.h", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 deps = [ | 40 deps = [ |
| 39 "//base", | 41 "//base", |
| 40 "//components/autofill/core/browser", | 42 "//components/autofill/core/browser", |
| 41 "//components/keyed_service/core", | 43 "//components/keyed_service/core", |
| 42 "//components/pref_registry", | 44 "//components/pref_registry", |
| 43 "//components/strings:components_strings_grit", | 45 "//components/strings:components_strings_grit", |
| 44 "//components/ukm", | 46 "//components/ukm", |
| 45 "//third_party/libphonenumber", | 47 "//third_party/libphonenumber", |
| (...skipping 28 matching lines...) Expand all Loading... |
| 74 sources = [ | 76 sources = [ |
| 75 "address_normalizer_impl_unittest.cc", | 77 "address_normalizer_impl_unittest.cc", |
| 76 "autofill_payment_instrument_unittest.cc", | 78 "autofill_payment_instrument_unittest.cc", |
| 77 "basic_card_response_unittest.cc", | 79 "basic_card_response_unittest.cc", |
| 78 "currency_formatter_unittest.cc", | 80 "currency_formatter_unittest.cc", |
| 79 "journey_logger_unittest.cc", | 81 "journey_logger_unittest.cc", |
| 80 "payment_address_unittest.cc", | 82 "payment_address_unittest.cc", |
| 81 "payment_method_data_unittest.cc", | 83 "payment_method_data_unittest.cc", |
| 82 "payment_request_data_util_unittest.cc", | 84 "payment_request_data_util_unittest.cc", |
| 83 "payments_profile_comparator_unittest.cc", | 85 "payments_profile_comparator_unittest.cc", |
| 86 "subkey_requester_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 |