| 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 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 935 "page/PageAnimator.h", | 935 "page/PageAnimator.h", |
| 936 "page/PageLifecycleNotifier.cpp", | 936 "page/PageLifecycleNotifier.cpp", |
| 937 "page/PageLifecycleNotifier.h", | 937 "page/PageLifecycleNotifier.h", |
| 938 "page/PageLifecycleObserver.cpp", | 938 "page/PageLifecycleObserver.cpp", |
| 939 "page/PageLifecycleObserver.h", | 939 "page/PageLifecycleObserver.h", |
| 940 "page/PageVisibilityState.cpp", | 940 "page/PageVisibilityState.cpp", |
| 941 "page/PageVisibilityState.h", | 941 "page/PageVisibilityState.h", |
| 942 "page/SpellCheckerClient.h", | 942 "page/SpellCheckerClient.h", |
| 943 "painting/Paint.cpp", | 943 "painting/Paint.cpp", |
| 944 "painting/Paint.h", | 944 "painting/Paint.h", |
| 945 "painting/PaintingCallback.cpp", |
| 946 "painting/PaintingCallback.h", |
| 945 "painting/PaintingContext.cpp", | 947 "painting/PaintingContext.cpp", |
| 946 "painting/PaintingContext.h", | 948 "painting/PaintingContext.h", |
| 947 "rendering/BidiRun.h", | 949 "rendering/BidiRun.h", |
| 948 "rendering/BidiRunForLine.cpp", | 950 "rendering/BidiRunForLine.cpp", |
| 949 "rendering/BidiRunForLine.h", | 951 "rendering/BidiRunForLine.h", |
| 950 "rendering/break_lines.cpp", | 952 "rendering/break_lines.cpp", |
| 951 "rendering/break_lines.h", | 953 "rendering/break_lines.h", |
| 952 "rendering/ClipPathOperation.h", | 954 "rendering/ClipPathOperation.h", |
| 953 "rendering/ClipRect.cpp", | 955 "rendering/ClipRect.cpp", |
| 954 "rendering/ClipRect.h", | 956 "rendering/ClipRect.h", |
| (...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1232 "html/HTMLImportElement.idl", | 1234 "html/HTMLImportElement.idl", |
| 1233 "html/HTMLScriptElement.idl", | 1235 "html/HTMLScriptElement.idl", |
| 1234 "html/HTMLStyleElement.idl", | 1236 "html/HTMLStyleElement.idl", |
| 1235 "html/HTMLTemplateElement.idl", | 1237 "html/HTMLTemplateElement.idl", |
| 1236 "html/HTMLTitleElement.idl", | 1238 "html/HTMLTitleElement.idl", |
| 1237 "html/HTMLTElement.idl", | 1239 "html/HTMLTElement.idl", |
| 1238 "html/ImageData.idl", | 1240 "html/ImageData.idl", |
| 1239 "html/TextMetrics.idl", | 1241 "html/TextMetrics.idl", |
| 1240 "html/VoidCallback.idl", | 1242 "html/VoidCallback.idl", |
| 1241 "painting/Paint.idl", | 1243 "painting/Paint.idl", |
| 1244 "painting/PaintingCallback.idl", |
| 1242 "painting/PaintingContext.idl", | 1245 "painting/PaintingContext.idl", |
| 1243 ], | 1246 ], |
| 1244 "abspath") | 1247 "abspath") |
| 1245 | 1248 |
| 1246 # Files for which bindings (.cpp and .h files) will be generated | 1249 # Files for which bindings (.cpp and .h files) will be generated |
| 1247 # 'partial interface', target (right side of) 'implements', and | 1250 # 'partial interface', target (right side of) 'implements', and |
| 1248 # interfaces with static bindings (in bindings/core/v8/) | 1251 # interfaces with static bindings (in bindings/core/v8/) |
| 1249 core_dependency_idl_files = | 1252 core_dependency_idl_files = |
| 1250 get_path_info([ | 1253 get_path_info([ |
| 1251 "animation/DocumentAnimation.idl", | 1254 "animation/DocumentAnimation.idl", |
| (...skipping 26 matching lines...) Expand all Loading... |
| 1278 "events/KeyboardEvent.idl", | 1281 "events/KeyboardEvent.idl", |
| 1279 "events/PageTransitionEvent.idl", | 1282 "events/PageTransitionEvent.idl", |
| 1280 "events/PointerEvent.idl", | 1283 "events/PointerEvent.idl", |
| 1281 "events/TextEvent.idl", | 1284 "events/TextEvent.idl", |
| 1282 "events/TransitionEvent.idl", | 1285 "events/TransitionEvent.idl", |
| 1283 "events/UIEvent.idl", | 1286 "events/UIEvent.idl", |
| 1284 "events/WheelEvent.idl", | 1287 "events/WheelEvent.idl", |
| 1285 "html/canvas/WebGLContextEvent.idl", | 1288 "html/canvas/WebGLContextEvent.idl", |
| 1286 ], | 1289 ], |
| 1287 "abspath") | 1290 "abspath") |
| OLD | NEW |