| OLD | NEW |
| (Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 static_library("core") { |
| 6 sources = [ |
| 7 "address_normalizer.cc", |
| 8 "address_normalizer.h", |
| 9 "currency_formatter.cc", |
| 10 "currency_formatter.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//components/autofill/core/browser", |
| 16 ] |
| 17 |
| 18 public_deps = [ |
| 19 "//third_party/icu", |
| 20 "//third_party/libaddressinput", |
| 21 ] |
| 22 } |
| 23 |
| 24 source_set("unit_tests") { |
| 25 testonly = true |
| 26 sources = [ |
| 27 "address_normalizer_unittest.cc", |
| 28 "currency_formatter_unittest.cc", |
| 29 ] |
| 30 |
| 31 deps = [ |
| 32 ":core", |
| 33 "//base", |
| 34 "//base/test:test_support", |
| 35 "//components/autofill/core/browser", |
| 36 "//testing/gtest", |
| 37 "//third_party/libaddressinput:test_support", |
| 38 ] |
| 39 } |
| OLD | NEW |