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

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

Issue 2645813006: Download web payment manifests. (Closed)
Patch Set: Rebase Created 3 years, 9 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/payments/DEPS ('k') | components/payments/content/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 ]
11
12 public_deps = [
13 "//mojo/common:common_custom_types",
14 ]
15 } 11 }
16 12
17 mojom("payment_app") { 13 mojom("payment_app") {
18 sources = [ 14 sources = [
19 "payment_app.mojom", 15 "payment_app.mojom",
20 ] 16 ]
21 17
22 public_deps = [ 18 public_deps = [
23 ":payment_request", 19 ":payment_request",
24 "//mojo/common:common_custom_types",
25 "//url/mojo:url_mojom_gurl", 20 "//url/mojo:url_mojom_gurl",
26 ] 21 ]
27 } 22 }
28 23
29 static_library("payment_request_impl") { 24 static_library("payment_request_impl") {
30 sources = [ 25 sources = [
31 "payment_request.cc", 26 "payment_request.cc",
32 "payment_request.h", 27 "payment_request.h",
33 "payment_request_delegate.h", 28 "payment_request_delegate.h",
34 "payment_request_dialog.h", 29 "payment_request_dialog.h",
(...skipping 30 matching lines...) Expand all
65 60
66 public_deps = [ 61 public_deps = [
67 "//third_party/icu", 62 "//third_party/icu",
68 "//third_party/libaddressinput", 63 "//third_party/libaddressinput",
69 ] 64 ]
70 } 65 }
71 66
72 source_set("unit_tests") { 67 source_set("unit_tests") {
73 testonly = true 68 testonly = true
74 sources = [ 69 sources = [
75 "payments_validators_test.cc", 70 "payments_validators_unittest.cc",
76 ] 71 ]
77 72
78 deps = [ 73 deps = [
79 ":payment_validation", 74 ":payment_validation",
80 "//base", 75 "//base",
81 "//base/test:test_support", 76 "//base/test:test_support",
82 "//components/autofill/core/browser", 77 "//components/autofill/core/browser",
83 "//testing/gtest", 78 "//testing/gtest",
84 "//third_party/icu", 79 "//third_party/icu",
85 "//third_party/libaddressinput:test_support", 80 "//third_party/libaddressinput:test_support",
86 ] 81 ]
87 } 82 }
OLDNEW
« no previous file with comments | « components/payments/DEPS ('k') | components/payments/content/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698