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

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

Issue 1161273004: Add a Color class to dart:sky. (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 819 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 "page/PageAnimator.h", 830 "page/PageAnimator.h",
831 "page/PageLifecycleNotifier.cpp", 831 "page/PageLifecycleNotifier.cpp",
832 "page/PageLifecycleNotifier.h", 832 "page/PageLifecycleNotifier.h",
833 "page/PageLifecycleObserver.cpp", 833 "page/PageLifecycleObserver.cpp",
834 "page/PageLifecycleObserver.h", 834 "page/PageLifecycleObserver.h",
835 "page/PageVisibilityState.cpp", 835 "page/PageVisibilityState.cpp",
836 "page/PageVisibilityState.h", 836 "page/PageVisibilityState.h",
837 "page/SpellCheckerClient.h", 837 "page/SpellCheckerClient.h",
838 "painting/Canvas.cpp", 838 "painting/Canvas.cpp",
839 "painting/Canvas.h", 839 "painting/Canvas.h",
840 "painting/CanvasColor.cpp",
841 "painting/CanvasColor.h",
840 "painting/CanvasImage.cpp", 842 "painting/CanvasImage.cpp",
841 "painting/CanvasImage.h", 843 "painting/CanvasImage.h",
842 "painting/CanvasPath.cpp", 844 "painting/CanvasPath.cpp",
843 "painting/CanvasPath.h", 845 "painting/CanvasPath.h",
844 "painting/ColorFilter.cpp", 846 "painting/ColorFilter.cpp",
845 "painting/ColorFilter.h", 847 "painting/ColorFilter.h",
846 "painting/DrawLooper.cpp", 848 "painting/DrawLooper.cpp",
847 "painting/DrawLooper.h", 849 "painting/DrawLooper.h",
848 "painting/DrawLooperAddLayerCallback.cpp", 850 "painting/DrawLooperAddLayerCallback.cpp",
849 "painting/DrawLooperAddLayerCallback.h", 851 "painting/DrawLooperAddLayerCallback.h",
(...skipping 291 matching lines...) Expand 10 before | Expand all | Expand 10 after
1141 "painting/Path.idl", 1143 "painting/Path.idl",
1142 "painting/Picture.idl", 1144 "painting/Picture.idl",
1143 "painting/PictureRecorder.idl", 1145 "painting/PictureRecorder.idl",
1144 "view/BeginFrameCallback.idl", 1146 "view/BeginFrameCallback.idl",
1145 "view/EventCallback.idl", 1147 "view/EventCallback.idl",
1146 "view/View.idl", 1148 "view/View.idl",
1147 ], 1149 ],
1148 "abspath") 1150 "abspath")
1149 1151
1150 core_dart_files = get_path_info([ 1152 core_dart_files = get_path_info([
1153 "painting/Color.dart",
1151 "painting/Point.dart", 1154 "painting/Point.dart",
1152 "painting/Rect.dart", 1155 "painting/Rect.dart",
1153 "painting/Size.dart", 1156 "painting/Size.dart",
1154 ], 1157 ],
1155 "abspath") 1158 "abspath")
1156 1159
1157 # Files for which bindings (.cpp and .h files) will be generated 1160 # Files for which bindings (.cpp and .h files) will be generated
1158 # 'partial interface', target (right side of) 'implements', and 1161 # 'partial interface', target (right side of) 'implements', and
1159 # interfaces with static bindings (in bindings/core/v8/) 1162 # interfaces with static bindings (in bindings/core/v8/)
1160 core_dependency_idl_files = get_path_info([ 1163 core_dependency_idl_files = get_path_info([
(...skipping 22 matching lines...) Expand all
1183 "events/HashChangeEvent.idl", 1186 "events/HashChangeEvent.idl",
1184 "events/KeyboardEvent.idl", 1187 "events/KeyboardEvent.idl",
1185 "events/PageTransitionEvent.idl", 1188 "events/PageTransitionEvent.idl",
1186 "events/PointerEvent.idl", 1189 "events/PointerEvent.idl",
1187 "events/TextEvent.idl", 1190 "events/TextEvent.idl",
1188 "events/TransitionEvent.idl", 1191 "events/TransitionEvent.idl",
1189 "events/UIEvent.idl", 1192 "events/UIEvent.idl",
1190 "events/WheelEvent.idl", 1193 "events/WheelEvent.idl",
1191 ], 1194 ],
1192 "abspath") 1195 "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698