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

Side by Side Diff: third_party/WebKit/Source/modules/payments/BUILD.gn

Issue 2775343002: PaymentHandler: Initial implementation for PaymentInstruments. (Closed)
Patch Set: PaymentHandler: Initial implementation for PaymentInstruments. Created 3 years, 8 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("//third_party/WebKit/Source/modules/modules.gni") 5 import("//third_party/WebKit/Source/modules/modules.gni")
6 6
7 blink_modules_sources("payments") { 7 blink_modules_sources("payments") {
8 sources = [ 8 sources = [
9 "HTMLIFrameElementPayments.cpp", 9 "HTMLIFrameElementPayments.cpp",
10 "HTMLIFrameElementPayments.h", 10 "HTMLIFrameElementPayments.h",
11 "PaymentAddress.cpp", 11 "PaymentAddress.cpp",
12 "PaymentAddress.h", 12 "PaymentAddress.h",
13 "PaymentAppRequestConversion.cpp", 13 "PaymentAppRequestConversion.cpp",
14 "PaymentAppRequestConversion.h", 14 "PaymentAppRequestConversion.h",
15 "PaymentAppServiceWorkerGlobalScope.h", 15 "PaymentAppServiceWorkerGlobalScope.h",
16 "PaymentAppServiceWorkerRegistration.cpp", 16 "PaymentAppServiceWorkerRegistration.cpp",
17 "PaymentAppServiceWorkerRegistration.h", 17 "PaymentAppServiceWorkerRegistration.h",
18 "PaymentCompleter.h", 18 "PaymentCompleter.h",
19 "PaymentInstruments.cpp",
20 "PaymentInstruments.h",
19 "PaymentManager.cpp", 21 "PaymentManager.cpp",
20 "PaymentManager.h", 22 "PaymentManager.h",
21 "PaymentRequest.cpp", 23 "PaymentRequest.cpp",
22 "PaymentRequest.h", 24 "PaymentRequest.h",
23 "PaymentRequestEvent.cpp", 25 "PaymentRequestEvent.cpp",
24 "PaymentRequestEvent.h", 26 "PaymentRequestEvent.h",
25 "PaymentRequestRespondWithObserver.cpp", 27 "PaymentRequestRespondWithObserver.cpp",
26 "PaymentRequestRespondWithObserver.h", 28 "PaymentRequestRespondWithObserver.h",
27 "PaymentRequestUpdateEvent.cpp", 29 "PaymentRequestUpdateEvent.cpp",
28 "PaymentRequestUpdateEvent.h", 30 "PaymentRequestUpdateEvent.h",
29 "PaymentResponse.cpp", 31 "PaymentResponse.cpp",
30 "PaymentResponse.h", 32 "PaymentResponse.h",
31 "PaymentUpdater.h", 33 "PaymentUpdater.h",
32 "PaymentsValidators.cpp", 34 "PaymentsValidators.cpp",
33 "PaymentsValidators.h", 35 "PaymentsValidators.h",
34 ] 36 ]
35 deps = [ 37 deps = [
36 "//components/payments/content:mojom_blink", 38 "//components/payments/content:mojom_blink",
37 "//components/payments/content:mojom_payment_app_blink", 39 "//components/payments/content:mojom_payment_app_blink",
38 ] 40 ]
39 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698