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

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

Issue 1017373003: Introduce PaintingContext, which will be used for custom painting (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 9 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/painting/Paint.h » ('j') | no next file with comments »
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 922 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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")
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/painting/Paint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698