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

Unified Diff: components/payments/BUILD.gn

Issue 2611253004: [Payment Request] Change the lifetime management of PaymentRequestImpl (Closed)
Patch Set: addressed comments 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 side-by-side diff with in-line comments
Download patch
Index: components/payments/BUILD.gn
diff --git a/components/payments/BUILD.gn b/components/payments/BUILD.gn
index 924122beec489c7c06b64ab14a0aaaeb5601f7d8..9faf3bc9c210c8ca648119934d229deded044302 100644
--- a/components/payments/BUILD.gn
+++ b/components/payments/BUILD.gn
@@ -24,6 +24,23 @@ mojom("payment_app") {
]
}
+static_library("payment_request_impl") {
+ sources = [
+ "payment_request_delegate.h",
+ "payment_request_impl.cc",
+ "payment_request_impl.h",
+ "payment_request_web_contents_manager.cc",
+ "payment_request_web_contents_manager.h",
+ ]
+
+ deps = [
+ ":payment_request",
+ ":payment_validation",
+ "//content/public/browser",
sdefresne 2017/01/09 16:38:47 If components/payments/BUILD.gn is loaded on iOS t
+ "//mojo/public/cpp/bindings",
+ ]
+}
+
static_library("payment_validation") {
sources = [
"payment_details_validation.cc",

Powered by Google App Engine
This is Rietveld 408576698