| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 sky_core_output_dir = "$root_gen_dir/sky/core" | 5 sky_core_output_dir = "$root_gen_dir/sky/core" |
| 6 | 6 |
| 7 sky_core_files = [ | 7 sky_core_files = [ |
| 8 "animation/ActiveAnimations.cpp", | 8 "animation/ActiveAnimations.cpp", |
| 9 "animation/ActiveAnimations.h", | 9 "animation/ActiveAnimations.h", |
| 10 "animation/animatable/AnimatableClipPathOperation.cpp", | 10 "animation/animatable/AnimatableClipPathOperation.cpp", |
| (...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 "html/ImageData.idl", | 1102 "html/ImageData.idl", |
| 1103 "html/TextMetrics.idl", | 1103 "html/TextMetrics.idl", |
| 1104 "html/VoidCallback.idl", | 1104 "html/VoidCallback.idl", |
| 1105 "layout/LayoutCallback.idl", | 1105 "layout/LayoutCallback.idl", |
| 1106 "painting/Canvas.idl", | 1106 "painting/Canvas.idl", |
| 1107 "painting/Paint.idl", | 1107 "painting/Paint.idl", |
| 1108 "painting/PaintingCallback.idl", | 1108 "painting/PaintingCallback.idl", |
| 1109 "painting/PaintingContext.idl", | 1109 "painting/PaintingContext.idl", |
| 1110 "painting/Picture.idl", | 1110 "painting/Picture.idl", |
| 1111 "painting/PictureRecorder.idl", | 1111 "painting/PictureRecorder.idl", |
| 1112 "view/EventCallback.idl", |
| 1112 "view/View.idl", | 1113 "view/View.idl", |
| 1113 ], | 1114 ], |
| 1114 "abspath") | 1115 "abspath") |
| 1115 | 1116 |
| 1116 # Files for which bindings (.cpp and .h files) will be generated | 1117 # Files for which bindings (.cpp and .h files) will be generated |
| 1117 # 'partial interface', target (right side of) 'implements', and | 1118 # 'partial interface', target (right side of) 'implements', and |
| 1118 # interfaces with static bindings (in bindings/core/v8/) | 1119 # interfaces with static bindings (in bindings/core/v8/) |
| 1119 core_dependency_idl_files = get_path_info([ | 1120 core_dependency_idl_files = get_path_info([ |
| 1120 "animation/DocumentAnimation.idl", | 1121 "animation/DocumentAnimation.idl", |
| 1121 "animation/ElementAnimation.idl", | 1122 "animation/ElementAnimation.idl", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 1142 "events/HashChangeEvent.idl", | 1143 "events/HashChangeEvent.idl", |
| 1143 "events/KeyboardEvent.idl", | 1144 "events/KeyboardEvent.idl", |
| 1144 "events/PageTransitionEvent.idl", | 1145 "events/PageTransitionEvent.idl", |
| 1145 "events/PointerEvent.idl", | 1146 "events/PointerEvent.idl", |
| 1146 "events/TextEvent.idl", | 1147 "events/TextEvent.idl", |
| 1147 "events/TransitionEvent.idl", | 1148 "events/TransitionEvent.idl", |
| 1148 "events/UIEvent.idl", | 1149 "events/UIEvent.idl", |
| 1149 "events/WheelEvent.idl", | 1150 "events/WheelEvent.idl", |
| 1150 ], | 1151 ], |
| 1151 "abspath") | 1152 "abspath") |
| OLD | NEW |