| 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 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1019 "script/dart_debugger.h", | 1019 "script/dart_debugger.h", |
| 1020 "script/dart_dependency_catcher.cc", | 1020 "script/dart_dependency_catcher.cc", |
| 1021 "script/dart_dependency_catcher.h", | 1021 "script/dart_dependency_catcher.h", |
| 1022 "script/dart_loader.cc", | 1022 "script/dart_loader.cc", |
| 1023 "script/dart_loader.h", | 1023 "script/dart_loader.h", |
| 1024 "script/dart_service_isolate.cc", | 1024 "script/dart_service_isolate.cc", |
| 1025 "script/dart_service_isolate.h", | 1025 "script/dart_service_isolate.h", |
| 1026 "script/dom_dart_state.cc", | 1026 "script/dom_dart_state.cc", |
| 1027 "script/dom_dart_state.h", | 1027 "script/dom_dart_state.h", |
| 1028 "script/monitor.h", | 1028 "script/monitor.h", |
| 1029 "view/View.cpp", |
| 1030 "view/View.h", |
| 1029 ] | 1031 ] |
| 1030 | 1032 |
| 1031 core_idl_files = get_path_info([ | 1033 core_idl_files = get_path_info([ |
| 1032 "animation/Animation.idl", | 1034 "animation/Animation.idl", |
| 1033 "animation/AnimationEffect.idl", | 1035 "animation/AnimationEffect.idl", |
| 1034 "animation/AnimationNode.idl", | 1036 "animation/AnimationNode.idl", |
| 1035 "animation/AnimationPlayer.idl", | 1037 "animation/AnimationPlayer.idl", |
| 1036 "animation/AnimationTimeline.idl", | 1038 "animation/AnimationTimeline.idl", |
| 1037 "animation/Timing.idl", | 1039 "animation/Timing.idl", |
| 1038 "css/CSS.idl", | 1040 "css/CSS.idl", |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1100 "html/ImageData.idl", | 1102 "html/ImageData.idl", |
| 1101 "html/TextMetrics.idl", | 1103 "html/TextMetrics.idl", |
| 1102 "html/VoidCallback.idl", | 1104 "html/VoidCallback.idl", |
| 1103 "layout/LayoutCallback.idl", | 1105 "layout/LayoutCallback.idl", |
| 1104 "painting/Canvas.idl", | 1106 "painting/Canvas.idl", |
| 1105 "painting/Paint.idl", | 1107 "painting/Paint.idl", |
| 1106 "painting/PaintingCallback.idl", | 1108 "painting/PaintingCallback.idl", |
| 1107 "painting/PaintingContext.idl", | 1109 "painting/PaintingContext.idl", |
| 1108 "painting/Picture.idl", | 1110 "painting/Picture.idl", |
| 1109 "painting/PictureRecorder.idl", | 1111 "painting/PictureRecorder.idl", |
| 1112 "view/View.idl", |
| 1110 ], | 1113 ], |
| 1111 "abspath") | 1114 "abspath") |
| 1112 | 1115 |
| 1113 # Files for which bindings (.cpp and .h files) will be generated | 1116 # Files for which bindings (.cpp and .h files) will be generated |
| 1114 # 'partial interface', target (right side of) 'implements', and | 1117 # 'partial interface', target (right side of) 'implements', and |
| 1115 # interfaces with static bindings (in bindings/core/v8/) | 1118 # interfaces with static bindings (in bindings/core/v8/) |
| 1116 core_dependency_idl_files = get_path_info([ | 1119 core_dependency_idl_files = get_path_info([ |
| 1117 "animation/DocumentAnimation.idl", | 1120 "animation/DocumentAnimation.idl", |
| 1118 "animation/ElementAnimation.idl", | 1121 "animation/ElementAnimation.idl", |
| 1119 "css/DocumentFontFaceSet.idl", | 1122 "css/DocumentFontFaceSet.idl", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 1139 "events/HashChangeEvent.idl", | 1142 "events/HashChangeEvent.idl", |
| 1140 "events/KeyboardEvent.idl", | 1143 "events/KeyboardEvent.idl", |
| 1141 "events/PageTransitionEvent.idl", | 1144 "events/PageTransitionEvent.idl", |
| 1142 "events/PointerEvent.idl", | 1145 "events/PointerEvent.idl", |
| 1143 "events/TextEvent.idl", | 1146 "events/TextEvent.idl", |
| 1144 "events/TransitionEvent.idl", | 1147 "events/TransitionEvent.idl", |
| 1145 "events/UIEvent.idl", | 1148 "events/UIEvent.idl", |
| 1146 "events/WheelEvent.idl", | 1149 "events/WheelEvent.idl", |
| 1147 ], | 1150 ], |
| 1148 "abspath") | 1151 "abspath") |
| OLD | NEW |