| 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 import("//third_party/WebKit/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 # The paths in this file are absolute since this file is imported and the | 8 # The paths in this file are absolute since this file is imported and the |
| 9 # file lists must be valid from multple "current directories". | 9 # file lists must be valid from multple "current directories". |
| 10 | 10 |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 "css/FontFace.idl", | 56 "css/FontFace.idl", |
| 57 "css/FontFaceSet.idl", | 57 "css/FontFaceSet.idl", |
| 58 "css/FontFaceSetLoadEvent.idl", | 58 "css/FontFaceSetLoadEvent.idl", |
| 59 "css/MediaList.idl", | 59 "css/MediaList.idl", |
| 60 "css/MediaQueryList.idl", | 60 "css/MediaQueryList.idl", |
| 61 "css/MediaQueryListEvent.idl", | 61 "css/MediaQueryListEvent.idl", |
| 62 "css/StyleMedia.idl", | 62 "css/StyleMedia.idl", |
| 63 "css/StyleSheet.idl", | 63 "css/StyleSheet.idl", |
| 64 "css/StyleSheetList.idl", | 64 "css/StyleSheetList.idl", |
| 65 "css/WebKitCSSMatrix.idl", | 65 "css/WebKitCSSMatrix.idl", |
| 66 "css/cssom/CSSAngleValue.idl", | |
| 67 "css/cssom/CSSCalcLength.idl", | |
| 68 "css/cssom/CSSImageValue.idl", | 66 "css/cssom/CSSImageValue.idl", |
| 69 "css/cssom/CSSKeywordValue.idl", | 67 "css/cssom/CSSKeywordValue.idl", |
| 70 "css/cssom/CSSLengthValue.idl", | |
| 71 "css/cssom/CSSMatrixComponent.idl", | 68 "css/cssom/CSSMatrixComponent.idl", |
| 72 "css/cssom/CSSNumberValue.idl", | |
| 73 "css/cssom/CSSNumericValue.idl", | 69 "css/cssom/CSSNumericValue.idl", |
| 74 "css/cssom/CSSPerspective.idl", | 70 "css/cssom/CSSPerspective.idl", |
| 75 "css/cssom/CSSPositionValue.idl", | 71 "css/cssom/CSSPositionValue.idl", |
| 76 "css/cssom/CSSResourceValue.idl", | 72 "css/cssom/CSSResourceValue.idl", |
| 77 "css/cssom/CSSRotation.idl", | 73 "css/cssom/CSSRotation.idl", |
| 78 "css/cssom/CSSScale.idl", | 74 "css/cssom/CSSScale.idl", |
| 79 "css/cssom/CSSSimpleLength.idl", | |
| 80 "css/cssom/CSSSkew.idl", | 75 "css/cssom/CSSSkew.idl", |
| 81 "css/cssom/CSSStyleValue.idl", | 76 "css/cssom/CSSStyleValue.idl", |
| 82 "css/cssom/CSSTransformComponent.idl", | 77 "css/cssom/CSSTransformComponent.idl", |
| 83 "css/cssom/CSSTransformValue.idl", | 78 "css/cssom/CSSTransformValue.idl", |
| 84 "css/cssom/CSSTranslation.idl", | 79 "css/cssom/CSSTranslation.idl", |
| 85 "css/cssom/CSSURLImageValue.idl", | 80 "css/cssom/CSSURLImageValue.idl", |
| 86 "css/cssom/CSSUnitValue.idl", | 81 "css/cssom/CSSUnitValue.idl", |
| 87 "css/cssom/CSSUnparsedValue.idl", | 82 "css/cssom/CSSUnparsedValue.idl", |
| 88 "css/cssom/CSSVariableReferenceValue.idl", | 83 "css/cssom/CSSVariableReferenceValue.idl", |
| 89 "css/cssom/StylePropertyMap.idl", | 84 "css/cssom/StylePropertyMap.idl", |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 658 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces | 653 core_generated_interface_idl_files = generated_webcore_testing_idl_files # inte
rfaces |
| 659 core_generated_dependency_idl_files = | 654 core_generated_dependency_idl_files = |
| 660 core_global_constructors_generated_idl_files # partial interfaces | 655 core_global_constructors_generated_idl_files # partial interfaces |
| 661 | 656 |
| 662 # Dependency IDL files: don't generate individual bindings, but do process | 657 # Dependency IDL files: don't generate individual bindings, but do process |
| 663 # in IDL dependency computation, and count as build dependencies | 658 # in IDL dependency computation, and count as build dependencies |
| 664 # 'core_dependency_idl_files' is already used in Source/core, so avoid | 659 # 'core_dependency_idl_files' is already used in Source/core, so avoid |
| 665 # collision | 660 # collision |
| 666 core_all_dependency_idl_files = | 661 core_all_dependency_idl_files = |
| 667 core_static_dependency_idl_files + core_generated_dependency_idl_files | 662 core_static_dependency_idl_files + core_generated_dependency_idl_files |
| OLD | NEW |