| 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 17 matching lines...) Expand all Loading... |
| 28 "profile_util.h", | 28 "profile_util.h", |
| 29 "strings_util.cc", | 29 "strings_util.cc", |
| 30 "strings_util.h", | 30 "strings_util.h", |
| 31 ] | 31 ] |
| 32 | 32 |
| 33 deps = [ | 33 deps = [ |
| 34 "//base", | 34 "//base", |
| 35 "//components/autofill/core/browser", | 35 "//components/autofill/core/browser", |
| 36 "//components/strings:components_strings_grit", | 36 "//components/strings:components_strings_grit", |
| 37 "//components/ukm", | 37 "//components/ukm", |
| 38 "//third_party/libphonenumber", |
| 38 "//ui/base", | 39 "//ui/base", |
| 39 "//url", | 40 "//url", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 public_deps = [ | 43 public_deps = [ |
| 43 "//third_party/icu", | 44 "//third_party/icu", |
| 44 "//third_party/libaddressinput", | 45 "//third_party/libaddressinput", |
| 45 ] | 46 ] |
| 46 } | 47 } |
| 47 | 48 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 66 "//components/autofill/core/browser", | 67 "//components/autofill/core/browser", |
| 67 "//components/autofill/core/browser:test_support", | 68 "//components/autofill/core/browser:test_support", |
| 68 "//components/metrics/proto", | 69 "//components/metrics/proto", |
| 69 "//components/ukm", | 70 "//components/ukm", |
| 70 "//components/ukm:test_support", | 71 "//components/ukm:test_support", |
| 71 "//testing/gmock", | 72 "//testing/gmock", |
| 72 "//testing/gtest", | 73 "//testing/gtest", |
| 73 "//third_party/libaddressinput:test_support", | 74 "//third_party/libaddressinput:test_support", |
| 74 ] | 75 ] |
| 75 } | 76 } |
| OLD | NEW |