| 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 "PaymentAppManager.cpp", | 13 "PaymentAppManager.cpp", |
| 14 "PaymentAppManager.h", | 14 "PaymentAppManager.h", |
| 15 "PaymentAppRequestDataConversion.cpp", |
| 16 "PaymentAppRequestDataConversion.h", |
| 15 "PaymentAppServiceWorkerGlobalScope.h", | 17 "PaymentAppServiceWorkerGlobalScope.h", |
| 16 "PaymentAppServiceWorkerRegistration.cpp", | 18 "PaymentAppServiceWorkerRegistration.cpp", |
| 17 "PaymentAppServiceWorkerRegistration.h", | 19 "PaymentAppServiceWorkerRegistration.h", |
| 18 "PaymentCompleter.h", | 20 "PaymentCompleter.h", |
| 19 "PaymentRequest.cpp", | 21 "PaymentRequest.cpp", |
| 20 "PaymentRequest.h", | 22 "PaymentRequest.h", |
| 21 "PaymentRequestEvent.cpp", | 23 "PaymentRequestEvent.cpp", |
| 22 "PaymentRequestEvent.h", | 24 "PaymentRequestEvent.h", |
| 23 "PaymentRequestUpdateEvent.cpp", | 25 "PaymentRequestUpdateEvent.cpp", |
| 24 "PaymentRequestUpdateEvent.h", | 26 "PaymentRequestUpdateEvent.h", |
| 25 "PaymentResponse.cpp", | 27 "PaymentResponse.cpp", |
| 26 "PaymentResponse.h", | 28 "PaymentResponse.h", |
| 27 "PaymentUpdater.h", | 29 "PaymentUpdater.h", |
| 28 "PaymentsValidators.cpp", | 30 "PaymentsValidators.cpp", |
| 29 "PaymentsValidators.h", | 31 "PaymentsValidators.h", |
| 30 ] | 32 ] |
| 31 deps = [ | 33 deps = [ |
| 32 "//components/payments:payment_app_blink", | 34 "//components/payments:payment_app_blink", |
| 33 "//components/payments:payment_request_blink", | 35 "//components/payments:payment_request_blink", |
| 34 ] | 36 ] |
| 35 } | 37 } |
| OLD | NEW |