| 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", | 7 "address_normalizer.cc", |
| 8 "address_normalizer.h", | 8 "address_normalizer.h", |
| 9 "autofill_payment_instrument.cc", | 9 "autofill_payment_instrument.cc", |
| 10 "autofill_payment_instrument.h", | 10 "autofill_payment_instrument.h", |
| 11 "basic_card_response.cc", | 11 "basic_card_response.cc", |
| 12 "basic_card_response.h", | 12 "basic_card_response.h", |
| 13 "currency_formatter.cc", | 13 "currency_formatter.cc", |
| 14 "currency_formatter.h", | 14 "currency_formatter.h", |
| 15 "journey_logger.cc", | 15 "journey_logger.cc", |
| 16 "journey_logger.h", | 16 "journey_logger.h", |
| 17 "payment_address.cc", | 17 "payment_address.cc", |
| 18 "payment_address.h", | 18 "payment_address.h", |
| 19 "payment_instrument.cc", | 19 "payment_instrument.cc", |
| 20 "payment_instrument.h", | 20 "payment_instrument.h", |
| 21 "payment_method_data.cc", | 21 "payment_method_data.cc", |
| 22 "payment_method_data.h", | 22 "payment_method_data.h", |
| 23 "payment_options_provider.h", | 23 "payment_options_provider.h", |
| 24 "payment_request_data_util.cc", | 24 "payment_request_data_util.cc", |
| 25 "payment_request_data_util.h", | 25 "payment_request_data_util.h", |
| 26 "payment_request_delegate.h", | 26 "payment_request_delegate.h", |
| 27 "profile_util.cc", |
| 28 "profile_util.h", |
| 27 "strings_util.cc", | 29 "strings_util.cc", |
| 28 "strings_util.h", | 30 "strings_util.h", |
| 29 ] | 31 ] |
| 30 | 32 |
| 31 deps = [ | 33 deps = [ |
| 32 "//base", | 34 "//base", |
| 33 "//components/autofill/core/browser", | 35 "//components/autofill/core/browser", |
| 34 "//components/strings:components_strings_grit", | 36 "//components/strings:components_strings_grit", |
| 35 "//ui/base", | 37 "//ui/base", |
| 36 ] | 38 ] |
| 37 | 39 |
| 38 public_deps = [ | 40 public_deps = [ |
| 39 "//third_party/icu", | 41 "//third_party/icu", |
| 40 "//third_party/libaddressinput", | 42 "//third_party/libaddressinput", |
| 41 ] | 43 ] |
| 42 } | 44 } |
| 43 | 45 |
| 44 source_set("unit_tests") { | 46 source_set("unit_tests") { |
| 45 testonly = true | 47 testonly = true |
| 46 sources = [ | 48 sources = [ |
| 47 "address_normalizer_unittest.cc", | 49 "address_normalizer_unittest.cc", |
| 48 "basic_card_response_unittest.cc", | 50 "basic_card_response_unittest.cc", |
| 49 "currency_formatter_unittest.cc", | 51 "currency_formatter_unittest.cc", |
| 50 "payment_address_unittest.cc", | 52 "payment_address_unittest.cc", |
| 51 "payment_method_data_unittest.cc", | 53 "payment_method_data_unittest.cc", |
| 52 "payment_request_data_util_unittest.cc", | 54 "payment_request_data_util_unittest.cc", |
| 55 "profile_util_unittest.cc", |
| 53 ] | 56 ] |
| 54 | 57 |
| 55 deps = [ | 58 deps = [ |
| 56 ":core", | 59 ":core", |
| 57 "//base", | 60 "//base", |
| 58 "//base/test:test_support", | 61 "//base/test:test_support", |
| 59 "//components/autofill/core/browser", | 62 "//components/autofill/core/browser", |
| 60 "//components/autofill/core/browser:test_support", | 63 "//components/autofill/core/browser:test_support", |
| 61 "//testing/gtest", | 64 "//testing/gtest", |
| 62 "//third_party/libaddressinput:test_support", | 65 "//third_party/libaddressinput:test_support", |
| 63 ] | 66 ] |
| 64 } | 67 } |
| OLD | NEW |