| 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 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 933 "page/Page.h", | 933 "page/Page.h", |
| 934 "page/PageAnimator.cpp", | 934 "page/PageAnimator.cpp", |
| 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", |
| 944 "painting/Paint.h", |
| 945 "painting/PaintingContext.cpp", |
| 946 "painting/PaintingContext.h", |
| 943 "rendering/BidiRun.h", | 947 "rendering/BidiRun.h", |
| 944 "rendering/BidiRunForLine.cpp", | 948 "rendering/BidiRunForLine.cpp", |
| 945 "rendering/BidiRunForLine.h", | 949 "rendering/BidiRunForLine.h", |
| 946 "rendering/break_lines.cpp", | 950 "rendering/break_lines.cpp", |
| 947 "rendering/break_lines.h", | 951 "rendering/break_lines.h", |
| 948 "rendering/ClipPathOperation.h", | 952 "rendering/ClipPathOperation.h", |
| 949 "rendering/ClipRect.cpp", | 953 "rendering/ClipRect.cpp", |
| 950 "rendering/ClipRect.h", | 954 "rendering/ClipRect.h", |
| 951 "rendering/ClipRects.h", | 955 "rendering/ClipRects.h", |
| 952 "rendering/ClipRectsCache.h", | 956 "rendering/ClipRectsCache.h", |
| (...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1227 "html/HTMLImageElement.idl", | 1231 "html/HTMLImageElement.idl", |
| 1228 "html/HTMLImportElement.idl", | 1232 "html/HTMLImportElement.idl", |
| 1229 "html/HTMLScriptElement.idl", | 1233 "html/HTMLScriptElement.idl", |
| 1230 "html/HTMLStyleElement.idl", | 1234 "html/HTMLStyleElement.idl", |
| 1231 "html/HTMLTemplateElement.idl", | 1235 "html/HTMLTemplateElement.idl", |
| 1232 "html/HTMLTitleElement.idl", | 1236 "html/HTMLTitleElement.idl", |
| 1233 "html/HTMLTElement.idl", | 1237 "html/HTMLTElement.idl", |
| 1234 "html/ImageData.idl", | 1238 "html/ImageData.idl", |
| 1235 "html/TextMetrics.idl", | 1239 "html/TextMetrics.idl", |
| 1236 "html/VoidCallback.idl", | 1240 "html/VoidCallback.idl", |
| 1241 "painting/Paint.idl", |
| 1242 "painting/PaintingContext.idl", |
| 1237 ], | 1243 ], |
| 1238 "abspath") | 1244 "abspath") |
| 1239 | 1245 |
| 1240 # Files for which bindings (.cpp and .h files) will be generated | 1246 # Files for which bindings (.cpp and .h files) will be generated |
| 1241 # 'partial interface', target (right side of) 'implements', and | 1247 # 'partial interface', target (right side of) 'implements', and |
| 1242 # interfaces with static bindings (in bindings/core/v8/) | 1248 # interfaces with static bindings (in bindings/core/v8/) |
| 1243 core_dependency_idl_files = | 1249 core_dependency_idl_files = |
| 1244 get_path_info([ | 1250 get_path_info([ |
| 1245 "animation/DocumentAnimation.idl", | 1251 "animation/DocumentAnimation.idl", |
| 1246 "animation/ElementAnimation.idl", | 1252 "animation/ElementAnimation.idl", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 1272 "events/KeyboardEvent.idl", | 1278 "events/KeyboardEvent.idl", |
| 1273 "events/PageTransitionEvent.idl", | 1279 "events/PageTransitionEvent.idl", |
| 1274 "events/PointerEvent.idl", | 1280 "events/PointerEvent.idl", |
| 1275 "events/TextEvent.idl", | 1281 "events/TextEvent.idl", |
| 1276 "events/TransitionEvent.idl", | 1282 "events/TransitionEvent.idl", |
| 1277 "events/UIEvent.idl", | 1283 "events/UIEvent.idl", |
| 1278 "events/WheelEvent.idl", | 1284 "events/WheelEvent.idl", |
| 1279 "html/canvas/WebGLContextEvent.idl", | 1285 "html/canvas/WebGLContextEvent.idl", |
| 1280 ], | 1286 ], |
| 1281 "abspath") | 1287 "abspath") |
| OLD | NEW |