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

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

Issue 2808633002: [Payments] Move PaymentResponse logic to PaymentResponseHelper. (Closed)
Patch Set: Moved tests 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 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 static_library("content") { 7 static_library("content") {
8 sources = [ 8 sources = [
9 "payment_request.cc", 9 "payment_request.cc",
10 "payment_request.h", 10 "payment_request.h",
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 "//third_party/libaddressinput", 86 "//third_party/libaddressinput",
87 ] 87 ]
88 } 88 }
89 89
90 source_set("unit_tests") { 90 source_set("unit_tests") {
91 testonly = true 91 testonly = true
92 sources = [ 92 sources = [
93 "payment_manifest_downloader_unittest.cc", 93 "payment_manifest_downloader_unittest.cc",
94 "payment_request_spec_unittest.cc", 94 "payment_request_spec_unittest.cc",
95 "payment_request_state_unittest.cc", 95 "payment_request_state_unittest.cc",
96 "payment_response_helper_unittest.cc",
96 "payments_validators_unittest.cc", 97 "payments_validators_unittest.cc",
97 ] 98 ]
98 99
99 deps = [ 100 deps = [
100 ":content", 101 ":content",
101 ":mojom", 102 ":mojom",
102 ":utils", 103 ":utils",
103 "//base", 104 "//base",
104 "//base/test:test_support", 105 "//base/test:test_support",
105 "//components/autofill/core/browser", 106 "//components/autofill/core/browser",
106 "//components/autofill/core/browser:test_support", 107 "//components/autofill/core/browser:test_support",
107 "//components/payments/core", 108 "//components/payments/core",
108 "//content/test:test_support", 109 "//content/test:test_support",
109 "//net:test_support", 110 "//net:test_support",
110 "//testing/gtest", 111 "//testing/gtest",
111 "//third_party/icu", 112 "//third_party/icu",
112 "//third_party/libaddressinput:test_support", 113 "//third_party/libaddressinput:test_support",
113 ] 114 ]
114 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698