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

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

Issue 2621153002: [WebPayments] Add the Payment Method section in the Payment Sheet (Closed)
Patch Set: Fix BUILD.gn deps. Created 3 years, 11 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
« no previous file with comments | « components/autofill_strings.grdp ('k') | components/payments/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 24 matching lines...) Expand all
35 "payment_request.cc", 35 "payment_request.cc",
36 "payment_request.h", 36 "payment_request.h",
37 "payment_request_delegate.h", 37 "payment_request_delegate.h",
38 "payment_request_web_contents_manager.cc", 38 "payment_request_web_contents_manager.cc",
39 "payment_request_web_contents_manager.h", 39 "payment_request_web_contents_manager.h",
40 ] 40 ]
41 41
42 deps = [ 42 deps = [
43 ":payment_request", 43 ":payment_request",
44 ":payment_validation", 44 ":payment_validation",
45 "//components/autofill/core/browser",
45 "//content/public/browser", 46 "//content/public/browser",
46 "//mojo/public/cpp/bindings", 47 "//mojo/public/cpp/bindings",
47 ] 48 ]
48 } 49 }
49 } 50 }
50 51
51 static_library("payment_validation") { 52 static_library("payment_validation") {
52 sources = [ 53 sources = [
53 "currency_formatter.cc", 54 "currency_formatter.cc",
54 "currency_formatter.h", 55 "currency_formatter.h",
(...skipping 22 matching lines...) Expand all
77 "payments_validators_test.cc", 78 "payments_validators_test.cc",
78 ] 79 ]
79 80
80 deps = [ 81 deps = [
81 ":payment_validation", 82 ":payment_validation",
82 "//base", 83 "//base",
83 "//testing/gtest", 84 "//testing/gtest",
84 "//third_party/icu:icu", 85 "//third_party/icu:icu",
85 ] 86 ]
86 } 87 }
OLDNEW
« no previous file with comments | « components/autofill_strings.grdp ('k') | components/payments/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698