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

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

Issue 1158843002: Sky: Add a Point class. (Closed) Base URL: git@github.com:/domokit/mojo.git@master
Patch Set: style revert 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/painting/Point.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 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after
1115 "painting/PaintingContext.idl", 1115 "painting/PaintingContext.idl",
1116 "painting/Path.idl", 1116 "painting/Path.idl",
1117 "painting/Picture.idl", 1117 "painting/Picture.idl",
1118 "painting/PictureRecorder.idl", 1118 "painting/PictureRecorder.idl",
1119 "view/BeginFrameCallback.idl", 1119 "view/BeginFrameCallback.idl",
1120 "view/EventCallback.idl", 1120 "view/EventCallback.idl",
1121 "view/View.idl", 1121 "view/View.idl",
1122 ], 1122 ],
1123 "abspath") 1123 "abspath")
1124 1124
1125 core_dart_files = get_path_info([ "painting/Rect.dart" ], "abspath") 1125 core_dart_files = get_path_info([
1126 "painting/Rect.dart",
1127 "painting/Point.dart",
1128 ],
1129 "abspath")
1126 1130
1127 # Files for which bindings (.cpp and .h files) will be generated 1131 # Files for which bindings (.cpp and .h files) will be generated
1128 # 'partial interface', target (right side of) 'implements', and 1132 # 'partial interface', target (right side of) 'implements', and
1129 # interfaces with static bindings (in bindings/core/v8/) 1133 # interfaces with static bindings (in bindings/core/v8/)
1130 core_dependency_idl_files = get_path_info([ 1134 core_dependency_idl_files = get_path_info([
1131 "animation/DocumentAnimation.idl", 1135 "animation/DocumentAnimation.idl",
1132 "animation/ElementAnimation.idl", 1136 "animation/ElementAnimation.idl",
1133 "css/DocumentFontFaceSet.idl", 1137 "css/DocumentFontFaceSet.idl",
1134 "dom/URLUtils.idl", 1138 "dom/URLUtils.idl",
1135 "dom/URLUtilsReadOnly.idl", 1139 "dom/URLUtilsReadOnly.idl",
(...skipping 17 matching lines...) Expand all
1153 "events/HashChangeEvent.idl", 1157 "events/HashChangeEvent.idl",
1154 "events/KeyboardEvent.idl", 1158 "events/KeyboardEvent.idl",
1155 "events/PageTransitionEvent.idl", 1159 "events/PageTransitionEvent.idl",
1156 "events/PointerEvent.idl", 1160 "events/PointerEvent.idl",
1157 "events/TextEvent.idl", 1161 "events/TextEvent.idl",
1158 "events/TransitionEvent.idl", 1162 "events/TransitionEvent.idl",
1159 "events/UIEvent.idl", 1163 "events/UIEvent.idl",
1160 "events/WheelEvent.idl", 1164 "events/WheelEvent.idl",
1161 ], 1165 ],
1162 "abspath") 1166 "abspath")
OLDNEW
« no previous file with comments | « no previous file | sky/engine/core/painting/Point.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698