| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 "budget/BudgetState.idl", | 64 "budget/BudgetState.idl", |
| 65 "cachestorage/Cache.idl", | 65 "cachestorage/Cache.idl", |
| 66 "cachestorage/CacheStorage.idl", | 66 "cachestorage/CacheStorage.idl", |
| 67 "canvas2d/CanvasGradient.idl", | 67 "canvas2d/CanvasGradient.idl", |
| 68 "canvas2d/CanvasPattern.idl", | 68 "canvas2d/CanvasPattern.idl", |
| 69 "canvas2d/CanvasRenderingContext2D.idl", | 69 "canvas2d/CanvasRenderingContext2D.idl", |
| 70 "canvas2d/Path2D.idl", | 70 "canvas2d/Path2D.idl", |
| 71 "compositorworker/AnimationWorkletGlobalScope.idl", | 71 "compositorworker/AnimationWorkletGlobalScope.idl", |
| 72 "compositorworker/CompositorWorker.idl", | 72 "compositorworker/CompositorWorker.idl", |
| 73 "compositorworker/CompositorWorkerGlobalScope.idl", | 73 "compositorworker/CompositorWorkerGlobalScope.idl", |
| 74 "compositorworker/WorkletAnimation.idl", |
| 74 "credentialmanager/AuthenticatorAssertionResponse.idl", | 75 "credentialmanager/AuthenticatorAssertionResponse.idl", |
| 75 "credentialmanager/AuthenticatorAttestationResponse.idl", | 76 "credentialmanager/AuthenticatorAttestationResponse.idl", |
| 76 "credentialmanager/AuthenticatorResponse.idl", | 77 "credentialmanager/AuthenticatorResponse.idl", |
| 77 "credentialmanager/Credential.idl", | 78 "credentialmanager/Credential.idl", |
| 78 "credentialmanager/CredentialsContainer.idl", | 79 "credentialmanager/CredentialsContainer.idl", |
| 79 "credentialmanager/FederatedCredential.idl", | 80 "credentialmanager/FederatedCredential.idl", |
| 80 "credentialmanager/PasswordCredential.idl", | 81 "credentialmanager/PasswordCredential.idl", |
| 81 "credentialmanager/PublicKeyCredential.idl", | 82 "credentialmanager/PublicKeyCredential.idl", |
| 82 "crypto/Crypto.idl", | 83 "crypto/Crypto.idl", |
| 83 "crypto/CryptoKey.idl", | 84 "crypto/CryptoKey.idl", |
| (...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 709 modules_dependency_idl_files + modules_testing_dependency_idl_files | 710 modules_dependency_idl_files + modules_testing_dependency_idl_files |
| 710 | 711 |
| 711 modules_generated_dependency_idl_files = | 712 modules_generated_dependency_idl_files = |
| 712 modules_core_global_constructors_generated_idl_files + | 713 modules_core_global_constructors_generated_idl_files + |
| 713 modules_global_constructors_generated_idl_files | 714 modules_global_constructors_generated_idl_files |
| 714 | 715 |
| 715 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid | 716 # 'modules_dependency_idl_files' is already used in Source/modules, so avoid |
| 716 # collision | 717 # collision |
| 717 modules_all_dependency_idl_files = | 718 modules_all_dependency_idl_files = |
| 718 modules_static_dependency_idl_files + modules_generated_dependency_idl_files | 719 modules_static_dependency_idl_files + modules_generated_dependency_idl_files |
| OLD | NEW |