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

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

Issue 1152963009: Add support for linear gradients, implemented as skia shaders. (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/CanvasColor.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 834 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 "painting/CanvasPath.cpp", 845 "painting/CanvasPath.cpp",
846 "painting/CanvasPath.h", 846 "painting/CanvasPath.h",
847 "painting/ColorFilter.cpp", 847 "painting/ColorFilter.cpp",
848 "painting/ColorFilter.h", 848 "painting/ColorFilter.h",
849 "painting/DrawLooper.cpp", 849 "painting/DrawLooper.cpp",
850 "painting/DrawLooper.h", 850 "painting/DrawLooper.h",
851 "painting/DrawLooperAddLayerCallback.cpp", 851 "painting/DrawLooperAddLayerCallback.cpp",
852 "painting/DrawLooperAddLayerCallback.h", 852 "painting/DrawLooperAddLayerCallback.h",
853 "painting/DrawLooperLayerInfo.cpp", 853 "painting/DrawLooperLayerInfo.cpp",
854 "painting/DrawLooperLayerInfo.h", 854 "painting/DrawLooperLayerInfo.h",
855 "painting/CanvasGradient.cpp",
856 "painting/CanvasGradient.h",
855 "painting/LayerDrawLooperBuilder.cpp", 857 "painting/LayerDrawLooperBuilder.cpp",
856 "painting/LayerDrawLooperBuilder.h", 858 "painting/LayerDrawLooperBuilder.h",
857 "painting/LayoutRoot.cpp", 859 "painting/LayoutRoot.cpp",
858 "painting/LayoutRoot.h", 860 "painting/LayoutRoot.h",
859 "painting/MaskFilter.cpp", 861 "painting/MaskFilter.cpp",
860 "painting/MaskFilter.h", 862 "painting/MaskFilter.h",
861 "painting/Paint.cpp", 863 "painting/Paint.cpp",
862 "painting/Paint.h", 864 "painting/Paint.h",
863 "painting/PaintingCallback.cpp", 865 "painting/PaintingCallback.cpp",
864 "painting/PaintingCallback.h", 866 "painting/PaintingCallback.h",
865 "painting/PaintingContext.cpp", 867 "painting/PaintingContext.cpp",
866 "painting/PaintingContext.h", 868 "painting/PaintingContext.h",
867 "painting/PaintingStyle.cpp", 869 "painting/PaintingStyle.cpp",
868 "painting/PaintingStyle.h", 870 "painting/PaintingStyle.h",
869 "painting/PaintingTasks.cpp", 871 "painting/PaintingTasks.cpp",
870 "painting/PaintingTasks.h", 872 "painting/PaintingTasks.h",
871 "painting/Picture.cpp", 873 "painting/Picture.cpp",
872 "painting/Picture.h", 874 "painting/Picture.h",
873 "painting/PictureRecorder.cpp", 875 "painting/PictureRecorder.cpp",
874 "painting/PictureRecorder.h", 876 "painting/PictureRecorder.h",
875 "painting/Point.cpp", 877 "painting/Point.cpp",
876 "painting/Point.h", 878 "painting/Point.h",
877 "painting/Rect.cpp", 879 "painting/Rect.cpp",
878 "painting/Rect.h", 880 "painting/Rect.h",
879 "painting/RRect.cpp", 881 "painting/RRect.cpp",
880 "painting/RRect.h", 882 "painting/RRect.h",
883 "painting/Shader.cpp",
884 "painting/Shader.h",
881 "painting/TransferMode.cpp", 885 "painting/TransferMode.cpp",
882 "painting/TransferMode.h", 886 "painting/TransferMode.h",
883 "rendering/BidiRun.h", 887 "rendering/BidiRun.h",
884 "rendering/BidiRunForLine.cpp", 888 "rendering/BidiRunForLine.cpp",
885 "rendering/BidiRunForLine.h", 889 "rendering/BidiRunForLine.h",
886 "rendering/break_lines.cpp", 890 "rendering/break_lines.cpp",
887 "rendering/break_lines.h", 891 "rendering/break_lines.h",
888 "rendering/ClipPathOperation.h", 892 "rendering/ClipPathOperation.h",
889 "rendering/ClipRect.cpp", 893 "rendering/ClipRect.cpp",
890 "rendering/ClipRect.h", 894 "rendering/ClipRect.h",
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1138 "html/TextMetrics.idl", 1142 "html/TextMetrics.idl",
1139 "html/VoidCallback.idl", 1143 "html/VoidCallback.idl",
1140 "layout/LayoutCallback.idl", 1144 "layout/LayoutCallback.idl",
1141 "loader/ImageLoader.idl", 1145 "loader/ImageLoader.idl",
1142 "loader/ImageLoaderCallback.idl", 1146 "loader/ImageLoaderCallback.idl",
1143 "painting/Canvas.idl", 1147 "painting/Canvas.idl",
1144 "painting/ColorFilter.idl", 1148 "painting/ColorFilter.idl",
1145 "painting/DrawLooper.idl", 1149 "painting/DrawLooper.idl",
1146 "painting/DrawLooperAddLayerCallback.idl", 1150 "painting/DrawLooperAddLayerCallback.idl",
1147 "painting/DrawLooperLayerInfo.idl", 1151 "painting/DrawLooperLayerInfo.idl",
1152 "painting/Gradient.idl",
1148 "painting/Image.idl", 1153 "painting/Image.idl",
1149 "painting/LayerDrawLooperBuilder.idl", 1154 "painting/LayerDrawLooperBuilder.idl",
1150 "painting/LayoutRoot.idl", 1155 "painting/LayoutRoot.idl",
1151 "painting/MaskFilter.idl", 1156 "painting/MaskFilter.idl",
1152 "painting/Paint.idl", 1157 "painting/Paint.idl",
1153 "painting/PaintingCallback.idl", 1158 "painting/PaintingCallback.idl",
1154 "painting/PaintingContext.idl", 1159 "painting/PaintingContext.idl",
1155 "painting/Path.idl", 1160 "painting/Path.idl",
1156 "painting/Picture.idl", 1161 "painting/Picture.idl",
1157 "painting/PictureRecorder.idl", 1162 "painting/PictureRecorder.idl",
1158 "painting/RRect.idl", 1163 "painting/RRect.idl",
1164 "painting/Shader.idl",
1159 "view/BeginFrameCallback.idl", 1165 "view/BeginFrameCallback.idl",
1160 "view/EventCallback.idl", 1166 "view/EventCallback.idl",
1161 "view/View.idl", 1167 "view/View.idl",
1162 ], 1168 ],
1163 "abspath") 1169 "abspath")
1164 1170
1165 core_dart_files = get_path_info([ 1171 core_dart_files = get_path_info([
1166 "painting/Color.dart", 1172 "painting/Color.dart",
1167 "painting/PaintingStyle.dart", 1173 "painting/PaintingStyle.dart",
1168 "painting/Point.dart", 1174 "painting/Point.dart",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 "events/HashChangeEvent.idl", 1207 "events/HashChangeEvent.idl",
1202 "events/KeyboardEvent.idl", 1208 "events/KeyboardEvent.idl",
1203 "events/PageTransitionEvent.idl", 1209 "events/PageTransitionEvent.idl",
1204 "events/PointerEvent.idl", 1210 "events/PointerEvent.idl",
1205 "events/TextEvent.idl", 1211 "events/TextEvent.idl",
1206 "events/TransitionEvent.idl", 1212 "events/TransitionEvent.idl",
1207 "events/UIEvent.idl", 1213 "events/UIEvent.idl",
1208 "events/WheelEvent.idl", 1214 "events/WheelEvent.idl",
1209 ], 1215 ],
1210 "abspath") 1216 "abspath")
OLDNEW
« no previous file with comments | « sky/engine/bindings/scripts/dart_types.py ('k') | sky/engine/core/painting/CanvasColor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698