Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(575)

Side by Side Diff: components/payments/core/BUILD.gn

Issue 2808983003: [Payments] Format shipping and billing phone number in normalizer. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 16 matching lines...) Expand all
27 "profile_util.cc", 27 "profile_util.cc",
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 "//third_party/libphonenumber",
37 "//ui/base", 38 "//ui/base",
38 ] 39 ]
39 40
40 public_deps = [ 41 public_deps = [
41 "//third_party/icu", 42 "//third_party/icu",
42 "//third_party/libaddressinput", 43 "//third_party/libaddressinput",
43 ] 44 ]
44 } 45 }
45 46
46 source_set("unit_tests") { 47 source_set("unit_tests") {
(...skipping 14 matching lines...) Expand all
61 ":core", 62 ":core",
62 "//base", 63 "//base",
63 "//base/test:test_support", 64 "//base/test:test_support",
64 "//components/autofill/core/browser", 65 "//components/autofill/core/browser",
65 "//components/autofill/core/browser:test_support", 66 "//components/autofill/core/browser:test_support",
66 "//testing/gmock", 67 "//testing/gmock",
67 "//testing/gtest", 68 "//testing/gtest",
68 "//third_party/libaddressinput:test_support", 69 "//third_party/libaddressinput:test_support",
69 ] 70 ]
70 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698