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

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

Issue 1162843003: Add a MaskFilter interface to dart:sky to handle blur. (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
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 838 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/LayerDrawLooperBuilder.cpp", 855 "painting/LayerDrawLooperBuilder.cpp",
856 "painting/LayerDrawLooperBuilder.h", 856 "painting/LayerDrawLooperBuilder.h",
857 "painting/LayoutRoot.cpp", 857 "painting/LayoutRoot.cpp",
858 "painting/LayoutRoot.h", 858 "painting/LayoutRoot.h",
859 "painting/MaskFilter.cpp",
860 "painting/MaskFilter.h",
859 "painting/Paint.cpp", 861 "painting/Paint.cpp",
860 "painting/Paint.h", 862 "painting/Paint.h",
861 "painting/PaintingCallback.cpp", 863 "painting/PaintingCallback.cpp",
862 "painting/PaintingCallback.h", 864 "painting/PaintingCallback.h",
863 "painting/PaintingContext.cpp", 865 "painting/PaintingContext.cpp",
864 "painting/PaintingContext.h", 866 "painting/PaintingContext.h",
865 "painting/PaintingTasks.cpp", 867 "painting/PaintingTasks.cpp",
866 "painting/PaintingTasks.h", 868 "painting/PaintingTasks.h",
867 "painting/Picture.cpp", 869 "painting/Picture.cpp",
868 "painting/Picture.h", 870 "painting/Picture.h",
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 "loader/ImageLoader.idl", 1137 "loader/ImageLoader.idl",
1136 "loader/ImageLoaderCallback.idl", 1138 "loader/ImageLoaderCallback.idl",
1137 "painting/Canvas.idl", 1139 "painting/Canvas.idl",
1138 "painting/ColorFilter.idl", 1140 "painting/ColorFilter.idl",
1139 "painting/DrawLooper.idl", 1141 "painting/DrawLooper.idl",
1140 "painting/DrawLooperAddLayerCallback.idl", 1142 "painting/DrawLooperAddLayerCallback.idl",
1141 "painting/DrawLooperLayerInfo.idl", 1143 "painting/DrawLooperLayerInfo.idl",
1142 "painting/Image.idl", 1144 "painting/Image.idl",
1143 "painting/LayerDrawLooperBuilder.idl", 1145 "painting/LayerDrawLooperBuilder.idl",
1144 "painting/LayoutRoot.idl", 1146 "painting/LayoutRoot.idl",
1147 "painting/MaskFilter.idl",
1145 "painting/Paint.idl", 1148 "painting/Paint.idl",
1146 "painting/PaintingCallback.idl", 1149 "painting/PaintingCallback.idl",
1147 "painting/PaintingContext.idl", 1150 "painting/PaintingContext.idl",
1148 "painting/Path.idl", 1151 "painting/Path.idl",
1149 "painting/Picture.idl", 1152 "painting/Picture.idl",
1150 "painting/PictureRecorder.idl", 1153 "painting/PictureRecorder.idl",
1151 "view/BeginFrameCallback.idl", 1154 "view/BeginFrameCallback.idl",
1152 "view/EventCallback.idl", 1155 "view/EventCallback.idl",
1153 "view/View.idl", 1156 "view/View.idl",
1154 ], 1157 ],
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 "events/HashChangeEvent.idl", 1195 "events/HashChangeEvent.idl",
1193 "events/KeyboardEvent.idl", 1196 "events/KeyboardEvent.idl",
1194 "events/PageTransitionEvent.idl", 1197 "events/PageTransitionEvent.idl",
1195 "events/PointerEvent.idl", 1198 "events/PointerEvent.idl",
1196 "events/TextEvent.idl", 1199 "events/TextEvent.idl",
1197 "events/TransitionEvent.idl", 1200 "events/TransitionEvent.idl",
1198 "events/UIEvent.idl", 1201 "events/UIEvent.idl",
1199 "events/WheelEvent.idl", 1202 "events/WheelEvent.idl",
1200 ], 1203 ],
1201 "abspath") 1204 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698