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