Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Side by Side Diff: sky/engine/core/core.gni

Issue 1122423009: Make it possible to custom-paint without an Element. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Comment tweak Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sky/engine/core/dom/Document.h » ('j') | sky/engine/core/painting/Canvas.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 815 matching lines...) Expand 10 before | Expand all | Expand 10 after
826 "page/Page.h", 826 "page/Page.h",
827 "page/PageAnimator.cpp", 827 "page/PageAnimator.cpp",
828 "page/PageAnimator.h", 828 "page/PageAnimator.h",
829 "page/PageLifecycleNotifier.cpp", 829 "page/PageLifecycleNotifier.cpp",
830 "page/PageLifecycleNotifier.h", 830 "page/PageLifecycleNotifier.h",
831 "page/PageLifecycleObserver.cpp", 831 "page/PageLifecycleObserver.cpp",
832 "page/PageLifecycleObserver.h", 832 "page/PageLifecycleObserver.h",
833 "page/PageVisibilityState.cpp", 833 "page/PageVisibilityState.cpp",
834 "page/PageVisibilityState.h", 834 "page/PageVisibilityState.h",
835 "page/SpellCheckerClient.h", 835 "page/SpellCheckerClient.h",
836 "painting/Canvas.cpp",
837 "painting/Canvas.h",
836 "painting/Paint.cpp", 838 "painting/Paint.cpp",
837 "painting/Paint.h", 839 "painting/Paint.h",
838 "painting/PaintingCallback.cpp", 840 "painting/PaintingCallback.cpp",
839 "painting/PaintingCallback.h", 841 "painting/PaintingCallback.h",
840 "painting/PaintingContext.cpp", 842 "painting/PaintingContext.cpp",
841 "painting/PaintingContext.h", 843 "painting/PaintingContext.h",
842 "painting/PaintingTasks.cpp", 844 "painting/PaintingTasks.cpp",
843 "painting/PaintingTasks.h", 845 "painting/PaintingTasks.h",
846 "painting/Picture.cpp",
847 "painting/Picture.h",
848 "painting/PictureRecorder.cpp",
849 "painting/PictureRecorder.h",
844 "rendering/BidiRun.h", 850 "rendering/BidiRun.h",
845 "rendering/BidiRunForLine.cpp", 851 "rendering/BidiRunForLine.cpp",
846 "rendering/BidiRunForLine.h", 852 "rendering/BidiRunForLine.h",
847 "rendering/break_lines.cpp", 853 "rendering/break_lines.cpp",
848 "rendering/break_lines.h", 854 "rendering/break_lines.h",
849 "rendering/ClipPathOperation.h", 855 "rendering/ClipPathOperation.h",
850 "rendering/ClipRect.cpp", 856 "rendering/ClipRect.cpp",
851 "rendering/ClipRect.h", 857 "rendering/ClipRect.h",
852 "rendering/ClipRects.h", 858 "rendering/ClipRects.h",
853 "rendering/ClipRectsCache.h", 859 "rendering/ClipRectsCache.h",
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
1088 "html/HTMLImportElement.idl", 1094 "html/HTMLImportElement.idl",
1089 "html/HTMLScriptElement.idl", 1095 "html/HTMLScriptElement.idl",
1090 "html/HTMLStyleElement.idl", 1096 "html/HTMLStyleElement.idl",
1091 "html/HTMLTemplateElement.idl", 1097 "html/HTMLTemplateElement.idl",
1092 "html/HTMLTitleElement.idl", 1098 "html/HTMLTitleElement.idl",
1093 "html/HTMLTElement.idl", 1099 "html/HTMLTElement.idl",
1094 "html/ImageData.idl", 1100 "html/ImageData.idl",
1095 "html/TextMetrics.idl", 1101 "html/TextMetrics.idl",
1096 "html/VoidCallback.idl", 1102 "html/VoidCallback.idl",
1097 "layout/LayoutCallback.idl", 1103 "layout/LayoutCallback.idl",
1104 "painting/Canvas.idl",
1098 "painting/Paint.idl", 1105 "painting/Paint.idl",
1099 "painting/PaintingCallback.idl", 1106 "painting/PaintingCallback.idl",
1100 "painting/PaintingContext.idl", 1107 "painting/PaintingContext.idl",
1108 "painting/Picture.idl",
1109 "painting/PictureRecorder.idl",
1101 ], 1110 ],
1102 "abspath") 1111 "abspath")
1103 1112
1104 # Files for which bindings (.cpp and .h files) will be generated 1113 # Files for which bindings (.cpp and .h files) will be generated
1105 # 'partial interface', target (right side of) 'implements', and 1114 # 'partial interface', target (right side of) 'implements', and
1106 # interfaces with static bindings (in bindings/core/v8/) 1115 # interfaces with static bindings (in bindings/core/v8/)
1107 core_dependency_idl_files = get_path_info([ 1116 core_dependency_idl_files = get_path_info([
1108 "animation/DocumentAnimation.idl", 1117 "animation/DocumentAnimation.idl",
1109 "animation/ElementAnimation.idl", 1118 "animation/ElementAnimation.idl",
1110 "css/DocumentFontFaceSet.idl", 1119 "css/DocumentFontFaceSet.idl",
(...skipping 19 matching lines...) Expand all
1130 "events/HashChangeEvent.idl", 1139 "events/HashChangeEvent.idl",
1131 "events/KeyboardEvent.idl", 1140 "events/KeyboardEvent.idl",
1132 "events/PageTransitionEvent.idl", 1141 "events/PageTransitionEvent.idl",
1133 "events/PointerEvent.idl", 1142 "events/PointerEvent.idl",
1134 "events/TextEvent.idl", 1143 "events/TextEvent.idl",
1135 "events/TransitionEvent.idl", 1144 "events/TransitionEvent.idl",
1136 "events/UIEvent.idl", 1145 "events/UIEvent.idl",
1137 "events/WheelEvent.idl", 1146 "events/WheelEvent.idl",
1138 ], 1147 ],
1139 "abspath") 1148 "abspath")
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/dom/Document.h » ('j') | sky/engine/core/painting/Canvas.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698