| 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 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 591 "budget/NavigatorBudget.idl", | 591 "budget/NavigatorBudget.idl", |
| 592 "budget/WorkerNavigatorBudget.idl", | 592 "budget/WorkerNavigatorBudget.idl", |
| 593 "cachestorage/WindowCacheStorage.idl", | 593 "cachestorage/WindowCacheStorage.idl", |
| 594 "cachestorage/WorkerCacheStorage.idl", | 594 "cachestorage/WorkerCacheStorage.idl", |
| 595 "canvas/HTMLCanvasElementModule.idl", | 595 "canvas/HTMLCanvasElementModule.idl", |
| 596 "canvas2d/CanvasPath.idl", | 596 "canvas2d/CanvasPath.idl", |
| 597 "compositorworker/WindowAnimationWorklet.idl", | 597 "compositorworker/WindowAnimationWorklet.idl", |
| 598 "credentialmanager/NavigatorCredentials.idl", | 598 "credentialmanager/NavigatorCredentials.idl", |
| 599 "crypto/WindowCrypto.idl", | 599 "crypto/WindowCrypto.idl", |
| 600 "crypto/WorkerGlobalScopeCrypto.idl", | 600 "crypto/WorkerGlobalScopeCrypto.idl", |
| 601 "csspaint/WindowPaintWorklet.idl", | 601 "csspaint/CSSPaintWorklet.idl", |
| 602 "device_orientation/WindowDeviceMotion.idl", | 602 "device_orientation/WindowDeviceMotion.idl", |
| 603 "device_orientation/WindowDeviceOrientation.idl", | 603 "device_orientation/WindowDeviceOrientation.idl", |
| 604 "donottrack/NavigatorDoNotTrack.idl", | 604 "donottrack/NavigatorDoNotTrack.idl", |
| 605 "encryptedmedia/HTMLMediaElementEncryptedMedia.idl", | 605 "encryptedmedia/HTMLMediaElementEncryptedMedia.idl", |
| 606 "encryptedmedia/NavigatorRequestMediaKeySystemAccess.idl", | 606 "encryptedmedia/NavigatorRequestMediaKeySystemAccess.idl", |
| 607 "fetch/WindowFetch.idl", | 607 "fetch/WindowFetch.idl", |
| 608 "fetch/WorkerFetch.idl", | 608 "fetch/WorkerFetch.idl", |
| 609 "filesystem/DataTransferItemFileSystem.idl", | 609 "filesystem/DataTransferItemFileSystem.idl", |
| 610 "filesystem/DedicatedWorkerGlobalScopeFileSystem.idl", | 610 "filesystem/DedicatedWorkerGlobalScopeFileSystem.idl", |
| 611 "filesystem/DevToolsHostFileSystem.idl", | 611 "filesystem/DevToolsHostFileSystem.idl", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 modules_dependency_idl_files + modules_testing_dependency_idl_files | 694 modules_dependency_idl_files + modules_testing_dependency_idl_files |
| 695 | 695 |
| 696 modules_generated_dependency_idl_files = | 696 modules_generated_dependency_idl_files = |
| 697 modules_core_global_constructors_generated_idl_files + | 697 modules_core_global_constructors_generated_idl_files + |
| 698 modules_global_constructors_generated_idl_files | 698 modules_global_constructors_generated_idl_files |
| 699 | 699 |
| 700 # '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 |
| 701 # collision | 701 # collision |
| 702 modules_all_dependency_idl_files = | 702 modules_all_dependency_idl_files = |
| 703 modules_static_dependency_idl_files + modules_generated_dependency_idl_files | 703 modules_static_dependency_idl_files + modules_generated_dependency_idl_files |
| OLD | NEW |