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/bindings/bindings.gni") | 5 import("//third_party/WebKit/Source/bindings/bindings.gni") |
6 | 6 |
7 # The paths in this file are absolute since this file is imported and the | 7 # The paths in this file are absolute since this file is imported and the |
8 # file lists must be valid from multple "current directories". | 8 # file lists must be valid from multple "current directories". |
9 | 9 |
10 bindings_modules_output_dir = "$bindings_output_dir/modules" | 10 bindings_modules_output_dir = "$bindings_output_dir/modules" |
(...skipping 459 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
470 "nfc/NFCPushOptions.idl", | 470 "nfc/NFCPushOptions.idl", |
471 "nfc/NFCRecord.idl", | 471 "nfc/NFCRecord.idl", |
472 "nfc/NFCWatchOptions.idl", | 472 "nfc/NFCWatchOptions.idl", |
473 "notifications/GetNotificationOptions.idl", | 473 "notifications/GetNotificationOptions.idl", |
474 "notifications/NotificationAction.idl", | 474 "notifications/NotificationAction.idl", |
475 "notifications/NotificationEventInit.idl", | 475 "notifications/NotificationEventInit.idl", |
476 "notifications/NotificationOptions.idl", | 476 "notifications/NotificationOptions.idl", |
477 "payments/AndroidPayMethodData.idl", | 477 "payments/AndroidPayMethodData.idl", |
478 "payments/AndroidPayTokenization.idl", | 478 "payments/AndroidPayTokenization.idl", |
479 "payments/BasicCardRequest.idl", | 479 "payments/BasicCardRequest.idl", |
| 480 "payments/ImageObject.idl", |
480 "payments/PaymentAppResponse.idl", | 481 "payments/PaymentAppResponse.idl", |
481 "payments/PaymentRequestEventInit.idl", | 482 "payments/PaymentRequestEventInit.idl", |
482 "payments/PaymentCurrencyAmount.idl", | 483 "payments/PaymentCurrencyAmount.idl", |
483 "payments/PaymentDetailsBase.idl", | 484 "payments/PaymentDetailsBase.idl", |
484 "payments/PaymentDetailsInit.idl", | 485 "payments/PaymentDetailsInit.idl", |
485 "payments/PaymentDetailsModifier.idl", | 486 "payments/PaymentDetailsModifier.idl", |
486 "payments/PaymentDetailsUpdate.idl", | 487 "payments/PaymentDetailsUpdate.idl", |
487 "payments/PaymentItem.idl", | 488 "payments/PaymentItem.idl", |
488 "payments/PaymentMethodData.idl", | 489 "payments/PaymentMethodData.idl", |
489 "payments/PaymentOptions.idl", | 490 "payments/PaymentOptions.idl", |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 modules_dependency_idl_files + modules_testing_dependency_idl_files | 694 modules_dependency_idl_files + modules_testing_dependency_idl_files |
694 | 695 |
695 modules_generated_dependency_idl_files = | 696 modules_generated_dependency_idl_files = |
696 modules_core_global_constructors_generated_idl_files + | 697 modules_core_global_constructors_generated_idl_files + |
697 modules_global_constructors_generated_idl_files | 698 modules_global_constructors_generated_idl_files |
698 | 699 |
699 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid | 700 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid |
700 # collision | 701 # collision |
701 modules_all_dependency_idl_files = | 702 modules_all_dependency_idl_files = |
702 modules_static_dependency_idl_files + modules_generated_dependency_idl_files | 703 modules_static_dependency_idl_files + modules_generated_dependency_idl_files |
OLD | NEW |