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

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

Issue 2718013004: PaymentApp: Implement respondWith() in PaymentRequestEvent. (content side) (Closed)
Patch Set: PaymentApp: Implement respondWith() in PaymentRequestEvent. (content side) 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
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 } 11 }
12 12
13 mojom("payment_app") { 13 mojom("payment_app") {
14 sources = [ 14 sources = [
15 "payment_app.mojom", 15 "payment_app.mojom",
16 ] 16 ]
17 17
18 public_deps = [ 18 public_deps = [
19 ":payment_request", 19 ":payment_request",
20 "//mojo/common:common_custom_types",
20 "//url/mojo:url_mojom_gurl", 21 "//url/mojo:url_mojom_gurl",
21 ] 22 ]
22 } 23 }
23 24
24 static_library("payment_request_impl") { 25 static_library("payment_request_impl") {
25 sources = [ 26 sources = [
26 "payment_request.cc", 27 "payment_request.cc",
27 "payment_request.h", 28 "payment_request.h",
28 "payment_request_delegate.h", 29 "payment_request_delegate.h",
29 "payment_request_dialog.h", 30 "payment_request_dialog.h",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 ":payment_validation", 83 ":payment_validation",
83 "//base", 84 "//base",
84 "//base/test:test_support", 85 "//base/test:test_support",
85 "//components/autofill/core/browser", 86 "//components/autofill/core/browser",
86 "//components/autofill/core/browser:test_support", 87 "//components/autofill/core/browser:test_support",
87 "//testing/gtest", 88 "//testing/gtest",
88 "//third_party/icu", 89 "//third_party/icu",
89 "//third_party/libaddressinput:test_support", 90 "//third_party/libaddressinput:test_support",
90 ] 91 ]
91 } 92 }
OLDNEW
« no previous file with comments | « no previous file | components/payments/content/payment_app.mojom » ('j') | components/payments/content/payment_app.mojom » ('J')

Powered by Google App Engine
This is Rietveld 408576698