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

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

Issue 2649683002: [Payments] Improve the closing of the PR dialog. (Closed)
Patch Set: addressed comments from sky 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 17 matching lines...) Expand all
28 28
29 # TODO(crbug.com/679381): Create a layered component to that we can remove the 29 # TODO(crbug.com/679381): Create a layered component to that we can remove the
30 # iOS check here (iOS strict DEPS checker doesn't like the //content dependency 30 # iOS check here (iOS strict DEPS checker doesn't like the //content dependency
31 # below). 31 # below).
32 if (!is_ios) { 32 if (!is_ios) {
33 static_library("payment_request_impl") { 33 static_library("payment_request_impl") {
34 sources = [ 34 sources = [
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_dialog.h",
38 "payment_request_web_contents_manager.cc", 39 "payment_request_web_contents_manager.cc",
39 "payment_request_web_contents_manager.h", 40 "payment_request_web_contents_manager.h",
40 ] 41 ]
41 42
42 deps = [ 43 deps = [
43 ":payment_request", 44 ":payment_request",
44 ":payment_validation", 45 ":payment_validation",
45 "//components/autofill/core/browser", 46 "//components/autofill/core/browser",
46 "//content/public/browser", 47 "//content/public/browser",
47 "//mojo/public/cpp/bindings", 48 "//mojo/public/cpp/bindings",
(...skipping 30 matching lines...) Expand all
78 "payments_validators_test.cc", 79 "payments_validators_test.cc",
79 ] 80 ]
80 81
81 deps = [ 82 deps = [
82 ":payment_validation", 83 ":payment_validation",
83 "//base", 84 "//base",
84 "//testing/gtest", 85 "//testing/gtest",
85 "//third_party/icu:icu", 86 "//third_party/icu:icu",
86 ] 87 ]
87 } 88 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/payments/test_chrome_payment_request_delegate.cc ('k') | components/payments/payment_request.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698