| 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 854 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 865 "painting/PaintingTasks.cpp", | 865 "painting/PaintingTasks.cpp", |
| 866 "painting/PaintingTasks.h", | 866 "painting/PaintingTasks.h", |
| 867 "painting/Picture.cpp", | 867 "painting/Picture.cpp", |
| 868 "painting/Picture.h", | 868 "painting/Picture.h", |
| 869 "painting/PictureRecorder.cpp", | 869 "painting/PictureRecorder.cpp", |
| 870 "painting/PictureRecorder.h", | 870 "painting/PictureRecorder.h", |
| 871 "painting/Point.cpp", | 871 "painting/Point.cpp", |
| 872 "painting/Point.h", | 872 "painting/Point.h", |
| 873 "painting/Rect.cpp", | 873 "painting/Rect.cpp", |
| 874 "painting/Rect.h", | 874 "painting/Rect.h", |
| 875 "painting/TransferMode.cpp", |
| 876 "painting/TransferMode.h", |
| 875 "rendering/BidiRun.h", | 877 "rendering/BidiRun.h", |
| 876 "rendering/BidiRunForLine.cpp", | 878 "rendering/BidiRunForLine.cpp", |
| 877 "rendering/BidiRunForLine.h", | 879 "rendering/BidiRunForLine.h", |
| 878 "rendering/break_lines.cpp", | 880 "rendering/break_lines.cpp", |
| 879 "rendering/break_lines.h", | 881 "rendering/break_lines.h", |
| 880 "rendering/ClipPathOperation.h", | 882 "rendering/ClipPathOperation.h", |
| 881 "rendering/ClipRect.cpp", | 883 "rendering/ClipRect.cpp", |
| 882 "rendering/ClipRect.h", | 884 "rendering/ClipRect.h", |
| 883 "rendering/ClipRects.h", | 885 "rendering/ClipRects.h", |
| 884 "rendering/ClipRectsCache.h", | 886 "rendering/ClipRectsCache.h", |
| (...skipping 265 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 "view/EventCallback.idl", | 1152 "view/EventCallback.idl", |
| 1151 "view/View.idl", | 1153 "view/View.idl", |
| 1152 ], | 1154 ], |
| 1153 "abspath") | 1155 "abspath") |
| 1154 | 1156 |
| 1155 core_dart_files = get_path_info([ | 1157 core_dart_files = get_path_info([ |
| 1156 "painting/Color.dart", | 1158 "painting/Color.dart", |
| 1157 "painting/Point.dart", | 1159 "painting/Point.dart", |
| 1158 "painting/Rect.dart", | 1160 "painting/Rect.dart", |
| 1159 "painting/Size.dart", | 1161 "painting/Size.dart", |
| 1162 "painting/TransferMode.dart", |
| 1160 ], | 1163 ], |
| 1161 "abspath") | 1164 "abspath") |
| 1162 | 1165 |
| 1163 # Files for which bindings (.cpp and .h files) will be generated | 1166 # Files for which bindings (.cpp and .h files) will be generated |
| 1164 # 'partial interface', target (right side of) 'implements', and | 1167 # 'partial interface', target (right side of) 'implements', and |
| 1165 # interfaces with static bindings (in bindings/core/v8/) | 1168 # interfaces with static bindings (in bindings/core/v8/) |
| 1166 core_dependency_idl_files = get_path_info([ | 1169 core_dependency_idl_files = get_path_info([ |
| 1167 "animation/DocumentAnimation.idl", | 1170 "animation/DocumentAnimation.idl", |
| 1168 "animation/ElementAnimation.idl", | 1171 "animation/ElementAnimation.idl", |
| 1169 "css/DocumentFontFaceSet.idl", | 1172 "css/DocumentFontFaceSet.idl", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 1189 "events/HashChangeEvent.idl", | 1192 "events/HashChangeEvent.idl", |
| 1190 "events/KeyboardEvent.idl", | 1193 "events/KeyboardEvent.idl", |
| 1191 "events/PageTransitionEvent.idl", | 1194 "events/PageTransitionEvent.idl", |
| 1192 "events/PointerEvent.idl", | 1195 "events/PointerEvent.idl", |
| 1193 "events/TextEvent.idl", | 1196 "events/TextEvent.idl", |
| 1194 "events/TransitionEvent.idl", | 1197 "events/TransitionEvent.idl", |
| 1195 "events/UIEvent.idl", | 1198 "events/UIEvent.idl", |
| 1196 "events/WheelEvent.idl", | 1199 "events/WheelEvent.idl", |
| 1197 ], | 1200 ], |
| 1198 "abspath") | 1201 "abspath") |
| OLD | NEW |