| 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", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 public_deps = [ | 38 public_deps = [ |
| 39 "//third_party/icu", | 39 "//third_party/icu", |
| 40 "//third_party/libaddressinput", | 40 "//third_party/libaddressinput", |
| 41 ] | 41 ] |
| 42 } | 42 } |
| 43 | 43 |
| 44 source_set("unit_tests") { | 44 source_set("unit_tests") { |
| 45 testonly = true | 45 testonly = true |
| 46 sources = [ | 46 sources = [ |
| 47 "address_normalizer_unittest.cc", | 47 "address_normalizer_unittest.cc", |
| 48 "autofill_payment_instrument_unittest.cc", |
| 48 "basic_card_response_unittest.cc", | 49 "basic_card_response_unittest.cc", |
| 49 "currency_formatter_unittest.cc", | 50 "currency_formatter_unittest.cc", |
| 50 "payment_address_unittest.cc", | 51 "payment_address_unittest.cc", |
| 51 "payment_method_data_unittest.cc", | 52 "payment_method_data_unittest.cc", |
| 52 "payment_request_data_util_unittest.cc", | 53 "payment_request_data_util_unittest.cc", |
| 53 ] | 54 ] |
| 54 | 55 |
| 55 deps = [ | 56 deps = [ |
| 56 ":core", | 57 ":core", |
| 57 "//base", | 58 "//base", |
| 58 "//base/test:test_support", | 59 "//base/test:test_support", |
| 59 "//components/autofill/core/browser", | 60 "//components/autofill/core/browser", |
| 60 "//components/autofill/core/browser:test_support", | 61 "//components/autofill/core/browser:test_support", |
| 61 "//testing/gtest", | 62 "//testing/gtest", |
| 62 "//third_party/libaddressinput:test_support", | 63 "//third_party/libaddressinput:test_support", |
| 63 ] | 64 ] |
| 64 } | 65 } |
| OLD | NEW |