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

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

Issue 2705293010: PaymentApp: Implement respondWith() in PaymentRequestEvent. (blink side) (Closed)
Patch Set: PaymentApp: Implement respondWith() in PaymentRequestEvent. (blink 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("//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 "PaymentAppManager.cpp", 13 "PaymentAppManager.cpp",
14 "PaymentAppManager.h", 14 "PaymentAppManager.h",
15 "PaymentAppRequestConversion.cpp", 15 "PaymentAppRequestConversion.cpp",
16 "PaymentAppRequestConversion.h", 16 "PaymentAppRequestConversion.h",
17 "PaymentAppServiceWorkerGlobalScope.h", 17 "PaymentAppServiceWorkerGlobalScope.h",
18 "PaymentAppServiceWorkerRegistration.cpp", 18 "PaymentAppServiceWorkerRegistration.cpp",
19 "PaymentAppServiceWorkerRegistration.h", 19 "PaymentAppServiceWorkerRegistration.h",
20 "PaymentCompleter.h", 20 "PaymentCompleter.h",
21 "PaymentRequest.cpp", 21 "PaymentRequest.cpp",
22 "PaymentRequest.h", 22 "PaymentRequest.h",
23 "PaymentRequestEvent.cpp", 23 "PaymentRequestEvent.cpp",
24 "PaymentRequestEvent.h", 24 "PaymentRequestEvent.h",
25 "PaymentRequestRespondWithObserver.cpp",
26 "PaymentRequestRespondWithObserver.h",
25 "PaymentRequestUpdateEvent.cpp", 27 "PaymentRequestUpdateEvent.cpp",
26 "PaymentRequestUpdateEvent.h", 28 "PaymentRequestUpdateEvent.h",
27 "PaymentResponse.cpp", 29 "PaymentResponse.cpp",
28 "PaymentResponse.h", 30 "PaymentResponse.h",
29 "PaymentUpdater.h", 31 "PaymentUpdater.h",
30 "PaymentsValidators.cpp", 32 "PaymentsValidators.cpp",
31 "PaymentsValidators.h", 33 "PaymentsValidators.h",
32 ] 34 ]
33 deps = [ 35 deps = [
34 "//components/payments/content:payment_app_blink", 36 "//components/payments/content:payment_app_blink",
35 "//components/payments/content:payment_request_blink", 37 "//components/payments/content:payment_request_blink",
36 ] 38 ]
37 } 39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698