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

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

Issue 2708933003: [Payments] Add timeout to the address_normalizer. (Closed)
Patch Set: Updated BUILD file Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 6
7 mojom("payment_request") { 7 mojom("payment_request") {
8 sources = [ 8 sources = [
9 "payment_request.mojom", 9 "payment_request.mojom",
10 ] 10 ]
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 72
73 public_deps = [ 73 public_deps = [
74 "//third_party/icu:icu", 74 "//third_party/icu:icu",
75 "//third_party/libaddressinput", 75 "//third_party/libaddressinput",
76 ] 76 ]
77 } 77 }
78 78
79 source_set("unit_tests") { 79 source_set("unit_tests") {
80 testonly = true 80 testonly = true
81 sources = [ 81 sources = [
82 "address_normalizer_unittest.cc",
82 "currency_formatter_unittest.cc", 83 "currency_formatter_unittest.cc",
83 "payments_validators_test.cc", 84 "payments_validators_test.cc",
84 ] 85 ]
85 86
86 deps = [ 87 deps = [
87 ":payment_validation", 88 ":payment_validation",
88 "//base", 89 "//base",
90 "//base/test:test_support",
91 "//components/autofill/core/browser:browser",
89 "//testing/gtest", 92 "//testing/gtest",
please use gerrit instead 2017/02/21 19:56:16 nit: no need for ":browser", because "//components
sebsg 2017/02/21 22:17:07 Done.
90 "//third_party/icu:icu", 93 "//third_party/icu:icu",
94 "//third_party/libaddressinput:libaddressinput_test_support",
91 ] 95 ]
92 } 96 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698