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

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

Issue 2476343002: PaymentApp: Initial implementation for PaymentAppManager.setManifest(). (Closed)
Patch Set: fix lint error Created 4 years, 1 month 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 "PaymentAppServiceWorkerRegistration.cpp", 15 "PaymentAppServiceWorkerRegistration.cpp",
16 "PaymentAppServiceWorkerRegistration.h", 16 "PaymentAppServiceWorkerRegistration.h",
17 "PaymentCompleter.h", 17 "PaymentCompleter.h",
18 "PaymentRequest.cpp", 18 "PaymentRequest.cpp",
19 "PaymentRequest.h", 19 "PaymentRequest.h",
20 "PaymentRequestUpdateEvent.cpp", 20 "PaymentRequestUpdateEvent.cpp",
21 "PaymentRequestUpdateEvent.h", 21 "PaymentRequestUpdateEvent.h",
22 "PaymentResponse.cpp", 22 "PaymentResponse.cpp",
23 "PaymentResponse.h", 23 "PaymentResponse.h",
24 "PaymentUpdater.h", 24 "PaymentUpdater.h",
25 "PaymentsValidators.cpp", 25 "PaymentsValidators.cpp",
26 "PaymentsValidators.h", 26 "PaymentsValidators.h",
27 ] 27 ]
28 deps = [ 28 deps = [
29 "//components/payments:payment_app_blink",
29 "//components/payments:payment_request_blink", 30 "//components/payments:payment_request_blink",
30 ] 31 ]
31 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698