| OLD | NEW |
| 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", | |
| 14 "PaymentAppRequestConversion.h", | |
| 15 "PaymentAppServiceWorkerGlobalScope.h", | 13 "PaymentAppServiceWorkerGlobalScope.h", |
| 16 "PaymentAppServiceWorkerRegistration.cpp", | 14 "PaymentAppServiceWorkerRegistration.cpp", |
| 17 "PaymentAppServiceWorkerRegistration.h", | 15 "PaymentAppServiceWorkerRegistration.h", |
| 18 "PaymentCompleter.h", | 16 "PaymentCompleter.h", |
| 19 "PaymentInstruments.cpp", | 17 "PaymentInstruments.cpp", |
| 20 "PaymentInstruments.h", | 18 "PaymentInstruments.h", |
| 21 "PaymentManager.cpp", | 19 "PaymentManager.cpp", |
| 22 "PaymentManager.h", | 20 "PaymentManager.h", |
| 23 "PaymentRequest.cpp", | 21 "PaymentRequest.cpp", |
| 24 "PaymentRequest.h", | 22 "PaymentRequest.h", |
| 25 "PaymentRequestEvent.cpp", | 23 "PaymentRequestEvent.cpp", |
| 26 "PaymentRequestEvent.h", | 24 "PaymentRequestEvent.h", |
| 25 "PaymentRequestEventDataConversion.cpp", |
| 26 "PaymentRequestEventDataConversion.h", |
| 27 "PaymentRequestRespondWithObserver.cpp", | 27 "PaymentRequestRespondWithObserver.cpp", |
| 28 "PaymentRequestRespondWithObserver.h", | 28 "PaymentRequestRespondWithObserver.h", |
| 29 "PaymentRequestUpdateEvent.cpp", | 29 "PaymentRequestUpdateEvent.cpp", |
| 30 "PaymentRequestUpdateEvent.h", | 30 "PaymentRequestUpdateEvent.h", |
| 31 "PaymentResponse.cpp", | 31 "PaymentResponse.cpp", |
| 32 "PaymentResponse.h", | 32 "PaymentResponse.h", |
| 33 "PaymentUpdater.h", | 33 "PaymentUpdater.h", |
| 34 "PaymentsValidators.cpp", | 34 "PaymentsValidators.cpp", |
| 35 "PaymentsValidators.h", | 35 "PaymentsValidators.h", |
| 36 ] | 36 ] |
| 37 deps = [ | 37 deps = [ |
| 38 "//components/payments/mojom:mojom_blink", | 38 "//components/payments/mojom:mojom_blink", |
| 39 "//components/payments/mojom:mojom_payment_app_blink", | 39 "//components/payments/mojom:mojom_payment_app_blink", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| OLD | NEW |