| 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 "Init.cpp", | 8 "Init.cpp", |
| 9 "Init.h", | 9 "Init.h", |
| 10 "animation/ActiveAnimations.cpp", | 10 "animation/ActiveAnimations.cpp", |
| (...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 908 "script/dart_controller.h", | 908 "script/dart_controller.h", |
| 909 "script/dart_debugger.cc", | 909 "script/dart_debugger.cc", |
| 910 "script/dart_debugger.h", | 910 "script/dart_debugger.h", |
| 911 "script/dart_init.cc", | 911 "script/dart_init.cc", |
| 912 "script/dart_init.h", | 912 "script/dart_init.h", |
| 913 "script/dart_service_isolate.cc", | 913 "script/dart_service_isolate.cc", |
| 914 "script/dart_service_isolate.h", | 914 "script/dart_service_isolate.h", |
| 915 "script/dom_dart_state.cc", | 915 "script/dom_dart_state.cc", |
| 916 "script/dom_dart_state.h", | 916 "script/dom_dart_state.h", |
| 917 "script/monitor.h", | 917 "script/monitor.h", |
| 918 "view/BeginFrameCallback.h", | |
| 919 "view/EventCallback.h", | 918 "view/EventCallback.h", |
| 919 "view/FrameCallback.h", |
| 920 "view/View.cpp", | 920 "view/View.cpp", |
| 921 "view/View.h", | 921 "view/View.h", |
| 922 ] | 922 ] |
| 923 | 923 |
| 924 core_idl_files = get_path_info([ | 924 core_idl_files = get_path_info([ |
| 925 "animation/Animation.idl", | 925 "animation/Animation.idl", |
| 926 "animation/AnimationEffect.idl", | 926 "animation/AnimationEffect.idl", |
| 927 "animation/AnimationNode.idl", | 927 "animation/AnimationNode.idl", |
| 928 "animation/AnimationPlayer.idl", | 928 "animation/AnimationPlayer.idl", |
| 929 "animation/AnimationTimeline.idl", | 929 "animation/AnimationTimeline.idl", |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 992 "painting/Image.idl", | 992 "painting/Image.idl", |
| 993 "painting/LayerDrawLooperBuilder.idl", | 993 "painting/LayerDrawLooperBuilder.idl", |
| 994 "painting/LayoutRoot.idl", | 994 "painting/LayoutRoot.idl", |
| 995 "painting/MaskFilter.idl", | 995 "painting/MaskFilter.idl", |
| 996 "painting/Paint.idl", | 996 "painting/Paint.idl", |
| 997 "painting/Path.idl", | 997 "painting/Path.idl", |
| 998 "painting/Picture.idl", | 998 "painting/Picture.idl", |
| 999 "painting/PictureRecorder.idl", | 999 "painting/PictureRecorder.idl", |
| 1000 "painting/RRect.idl", | 1000 "painting/RRect.idl", |
| 1001 "painting/Shader.idl", | 1001 "painting/Shader.idl", |
| 1002 "view/BeginFrameCallback.idl", | |
| 1003 "view/EventCallback.idl", | 1002 "view/EventCallback.idl", |
| 1003 "view/FrameCallback.idl", |
| 1004 "view/View.idl", | 1004 "view/View.idl", |
| 1005 ], | 1005 ], |
| 1006 "abspath") | 1006 "abspath") |
| 1007 | 1007 |
| 1008 core_dart_files = get_path_info([ | 1008 core_dart_files = get_path_info([ |
| 1009 "painting/Color.dart", | 1009 "painting/Color.dart", |
| 1010 "painting/ColorFilter.dart", | 1010 "painting/ColorFilter.dart", |
| 1011 "painting/DrawLooperLayerInfo.dart", | 1011 "painting/DrawLooperLayerInfo.dart", |
| 1012 "painting/Gradient.dart", | 1012 "painting/Gradient.dart", |
| 1013 "painting/MaskFilter.dart", | 1013 "painting/MaskFilter.dart", |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1048 "events/HashChangeEvent.idl", | 1048 "events/HashChangeEvent.idl", |
| 1049 "events/KeyboardEvent.idl", | 1049 "events/KeyboardEvent.idl", |
| 1050 "events/PageTransitionEvent.idl", | 1050 "events/PageTransitionEvent.idl", |
| 1051 "events/PointerEvent.idl", | 1051 "events/PointerEvent.idl", |
| 1052 "events/TextEvent.idl", | 1052 "events/TextEvent.idl", |
| 1053 "events/TransitionEvent.idl", | 1053 "events/TransitionEvent.idl", |
| 1054 "events/UIEvent.idl", | 1054 "events/UIEvent.idl", |
| 1055 "events/WheelEvent.idl", | 1055 "events/WheelEvent.idl", |
| 1056 ], | 1056 ], |
| 1057 "abspath") | 1057 "abspath") |
| OLD | NEW |