| 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.cc", | |
| 8 "address_normalizer.h", | 7 "address_normalizer.h", |
| 8 "address_normalizer_impl.cc", |
| 9 "address_normalizer_impl.h", |
| 9 "autofill_payment_instrument.cc", | 10 "autofill_payment_instrument.cc", |
| 10 "autofill_payment_instrument.h", | 11 "autofill_payment_instrument.h", |
| 11 "basic_card_response.cc", | 12 "basic_card_response.cc", |
| 12 "basic_card_response.h", | 13 "basic_card_response.h", |
| 13 "currency_formatter.cc", | 14 "currency_formatter.cc", |
| 14 "currency_formatter.h", | 15 "currency_formatter.h", |
| 15 "journey_logger.cc", | 16 "journey_logger.cc", |
| 16 "journey_logger.h", | 17 "journey_logger.h", |
| 17 "payment_address.cc", | 18 "payment_address.cc", |
| 18 "payment_address.h", | 19 "payment_address.h", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 42 | 43 |
| 43 public_deps = [ | 44 public_deps = [ |
| 44 "//third_party/icu", | 45 "//third_party/icu", |
| 45 "//third_party/libaddressinput", | 46 "//third_party/libaddressinput", |
| 46 ] | 47 ] |
| 47 } | 48 } |
| 48 | 49 |
| 49 source_set("unit_tests") { | 50 source_set("unit_tests") { |
| 50 testonly = true | 51 testonly = true |
| 51 sources = [ | 52 sources = [ |
| 52 "address_normalizer_unittest.cc", | 53 "address_normalizer_impl_unittest.cc", |
| 53 "autofill_payment_instrument_unittest.cc", | 54 "autofill_payment_instrument_unittest.cc", |
| 54 "basic_card_response_unittest.cc", | 55 "basic_card_response_unittest.cc", |
| 55 "currency_formatter_unittest.cc", | 56 "currency_formatter_unittest.cc", |
| 56 "journey_logger_unittest.cc", | 57 "journey_logger_unittest.cc", |
| 57 "payment_address_unittest.cc", | 58 "payment_address_unittest.cc", |
| 58 "payment_method_data_unittest.cc", | 59 "payment_method_data_unittest.cc", |
| 59 "payment_request_data_util_unittest.cc", | 60 "payment_request_data_util_unittest.cc", |
| 60 "profile_util_unittest.cc", | 61 "profile_util_unittest.cc", |
| 61 ] | 62 ] |
| 62 | 63 |
| 63 deps = [ | 64 deps = [ |
| 64 ":core", | 65 ":core", |
| 65 "//base", | 66 "//base", |
| 66 "//base/test:test_support", | 67 "//base/test:test_support", |
| 67 "//components/autofill/core/browser", | 68 "//components/autofill/core/browser", |
| 68 "//components/autofill/core/browser:test_support", | 69 "//components/autofill/core/browser:test_support", |
| 69 "//components/metrics/proto", | 70 "//components/metrics/proto", |
| 70 "//components/strings:components_strings_grit", | 71 "//components/strings:components_strings_grit", |
| 71 "//components/ukm", | 72 "//components/ukm", |
| 72 "//components/ukm:test_support", | 73 "//components/ukm:test_support", |
| 73 "//testing/gmock", | 74 "//testing/gmock", |
| 74 "//testing/gtest", | 75 "//testing/gtest", |
| 75 "//third_party/libaddressinput:test_support", | 76 "//third_party/libaddressinput:test_support", |
| 76 "//ui/base", | 77 "//ui/base", |
| 77 ] | 78 ] |
| 78 } | 79 } |
| OLD | NEW |