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

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

Issue 1171543002: Use an enum for Dart bindings for Skia Paint style (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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 | « sky/engine/bindings/scripts/dart_types.py ('k') | 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 846 matching lines...) Expand 10 before | Expand all | Expand 10 after
857 "painting/LayoutRoot.cpp", 857 "painting/LayoutRoot.cpp",
858 "painting/LayoutRoot.h", 858 "painting/LayoutRoot.h",
859 "painting/MaskFilter.cpp", 859 "painting/MaskFilter.cpp",
860 "painting/MaskFilter.h", 860 "painting/MaskFilter.h",
861 "painting/Paint.cpp", 861 "painting/Paint.cpp",
862 "painting/Paint.h", 862 "painting/Paint.h",
863 "painting/PaintingCallback.cpp", 863 "painting/PaintingCallback.cpp",
864 "painting/PaintingCallback.h", 864 "painting/PaintingCallback.h",
865 "painting/PaintingContext.cpp", 865 "painting/PaintingContext.cpp",
866 "painting/PaintingContext.h", 866 "painting/PaintingContext.h",
867 "painting/PaintingStyle.cpp",
868 "painting/PaintingStyle.h",
867 "painting/PaintingTasks.cpp", 869 "painting/PaintingTasks.cpp",
868 "painting/PaintingTasks.h", 870 "painting/PaintingTasks.h",
869 "painting/Picture.cpp", 871 "painting/Picture.cpp",
870 "painting/Picture.h", 872 "painting/Picture.h",
871 "painting/PictureRecorder.cpp", 873 "painting/PictureRecorder.cpp",
872 "painting/PictureRecorder.h", 874 "painting/PictureRecorder.h",
873 "painting/Point.cpp", 875 "painting/Point.cpp",
874 "painting/Point.h", 876 "painting/Point.h",
875 "painting/Rect.cpp", 877 "painting/Rect.cpp",
876 "painting/Rect.h", 878 "painting/Rect.h",
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
1152 "painting/Picture.idl", 1154 "painting/Picture.idl",
1153 "painting/PictureRecorder.idl", 1155 "painting/PictureRecorder.idl",
1154 "view/BeginFrameCallback.idl", 1156 "view/BeginFrameCallback.idl",
1155 "view/EventCallback.idl", 1157 "view/EventCallback.idl",
1156 "view/View.idl", 1158 "view/View.idl",
1157 ], 1159 ],
1158 "abspath") 1160 "abspath")
1159 1161
1160 core_dart_files = get_path_info([ 1162 core_dart_files = get_path_info([
1161 "painting/Color.dart", 1163 "painting/Color.dart",
1164 "painting/PaintingStyle.dart",
1162 "painting/Point.dart", 1165 "painting/Point.dart",
1163 "painting/Rect.dart", 1166 "painting/Rect.dart",
1164 "painting/Size.dart", 1167 "painting/Size.dart",
1165 "painting/TransferMode.dart", 1168 "painting/TransferMode.dart",
1166 ], 1169 ],
1167 "abspath") 1170 "abspath")
1168 1171
1169 # Files for which bindings (.cpp and .h files) will be generated 1172 # Files for which bindings (.cpp and .h files) will be generated
1170 # 'partial interface', target (right side of) 'implements', and 1173 # 'partial interface', target (right side of) 'implements', and
1171 # interfaces with static bindings (in bindings/core/v8/) 1174 # interfaces with static bindings (in bindings/core/v8/)
(...skipping 23 matching lines...) Expand all
1195 "events/HashChangeEvent.idl", 1198 "events/HashChangeEvent.idl",
1196 "events/KeyboardEvent.idl", 1199 "events/KeyboardEvent.idl",
1197 "events/PageTransitionEvent.idl", 1200 "events/PageTransitionEvent.idl",
1198 "events/PointerEvent.idl", 1201 "events/PointerEvent.idl",
1199 "events/TextEvent.idl", 1202 "events/TextEvent.idl",
1200 "events/TransitionEvent.idl", 1203 "events/TransitionEvent.idl",
1201 "events/UIEvent.idl", 1204 "events/UIEvent.idl",
1202 "events/WheelEvent.idl", 1205 "events/WheelEvent.idl",
1203 ], 1206 ],
1204 "abspath") 1207 "abspath")
OLDNEW
« no previous file with comments | « sky/engine/bindings/scripts/dart_types.py ('k') | sky/engine/core/painting/Paint.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698