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

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

Issue 697873007: Add Module and Application interfaces (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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 "Init.cpp", 8 "Init.cpp",
9 "Init.h", 9 "Init.h",
10 "animation/ActiveAnimations.cpp", 10 "animation/ActiveAnimations.cpp",
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 "animation/css/CSSAnimationData.cpp", 104 "animation/css/CSSAnimationData.cpp",
105 "animation/css/CSSAnimationData.h", 105 "animation/css/CSSAnimationData.h",
106 "animation/css/CSSAnimations.cpp", 106 "animation/css/CSSAnimations.cpp",
107 "animation/css/CSSAnimations.h", 107 "animation/css/CSSAnimations.h",
108 "animation/css/CSSPropertyEquality.cpp", 108 "animation/css/CSSPropertyEquality.cpp",
109 "animation/css/CSSPropertyEquality.h", 109 "animation/css/CSSPropertyEquality.h",
110 "animation/css/CSSTimingData.cpp", 110 "animation/css/CSSTimingData.cpp",
111 "animation/css/CSSTimingData.h", 111 "animation/css/CSSTimingData.h",
112 "animation/css/CSSTransitionData.cpp", 112 "animation/css/CSSTransitionData.cpp",
113 "animation/css/CSSTransitionData.h", 113 "animation/css/CSSTransitionData.h",
114 "app/AbstractModule.cpp",
115 "app/AbstractModule.h",
116 "app/Application.cpp",
117 "app/Application.h",
118 "app/Module.cpp",
119 "app/Module.h",
114 "css/BasicShapeFunctions.cpp", 120 "css/BasicShapeFunctions.cpp",
115 "css/BinaryDataFontFaceSource.cpp", 121 "css/BinaryDataFontFaceSource.cpp",
116 "css/BinaryDataFontFaceSource.h", 122 "css/BinaryDataFontFaceSource.h",
117 "css/CSSAspectRatioValue.cpp", 123 "css/CSSAspectRatioValue.cpp",
118 "css/CSSAspectRatioValue.h", 124 "css/CSSAspectRatioValue.h",
119 "css/CSSBasicShapes.cpp", 125 "css/CSSBasicShapes.cpp",
120 "css/CSSBorderImage.cpp", 126 "css/CSSBorderImage.cpp",
121 "css/CSSBorderImage.h", 127 "css/CSSBorderImage.h",
122 "css/CSSBorderImageSliceValue.cpp", 128 "css/CSSBorderImageSliceValue.cpp",
123 "css/CSSBorderImageSliceValue.h", 129 "css/CSSBorderImageSliceValue.h",
(...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after
1128 "rendering/style/StyleWillChangeData.cpp", 1134 "rendering/style/StyleWillChangeData.cpp",
1129 ] 1135 ]
1130 1136
1131 core_idl_files = get_path_info([ 1137 core_idl_files = get_path_info([
1132 "animation/Animation.idl", 1138 "animation/Animation.idl",
1133 "animation/AnimationEffect.idl", 1139 "animation/AnimationEffect.idl",
1134 "animation/AnimationPlayer.idl", 1140 "animation/AnimationPlayer.idl",
1135 "animation/AnimationNode.idl", 1141 "animation/AnimationNode.idl",
1136 "animation/AnimationTimeline.idl", 1142 "animation/AnimationTimeline.idl",
1137 "animation/Timing.idl", 1143 "animation/Timing.idl",
1144 "app/AbstractModule.idl",
1145 "app/Application.idl",
1146 "app/Module.idl",
1138 "css/CSS.idl", 1147 "css/CSS.idl",
1139 "css/CSSFontFaceRule.idl", 1148 "css/CSSFontFaceRule.idl",
1140 "css/CSSKeyframeRule.idl", 1149 "css/CSSKeyframeRule.idl",
1141 "css/CSSKeyframesRule.idl", 1150 "css/CSSKeyframesRule.idl",
1142 "css/CSSMediaRule.idl", 1151 "css/CSSMediaRule.idl",
1143 "css/CSSPrimitiveValue.idl", 1152 "css/CSSPrimitiveValue.idl",
1144 "css/CSSRule.idl", 1153 "css/CSSRule.idl",
1145 "css/CSSRuleList.idl", 1154 "css/CSSRuleList.idl",
1146 "css/CSSStyleDeclaration.idl", 1155 "css/CSSStyleDeclaration.idl",
1147 "css/CSSStyleRule.idl", 1156 "css/CSSStyleRule.idl",
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
1312 "events/ProgressEvent.idl", 1321 "events/ProgressEvent.idl",
1313 "events/ResourceProgressEvent.idl", 1322 "events/ResourceProgressEvent.idl",
1314 "events/TextEvent.idl", 1323 "events/TextEvent.idl",
1315 "events/TouchEvent.idl", 1324 "events/TouchEvent.idl",
1316 "events/TransitionEvent.idl", 1325 "events/TransitionEvent.idl",
1317 "events/UIEvent.idl", 1326 "events/UIEvent.idl",
1318 "events/AnimationEvent.idl", 1327 "events/AnimationEvent.idl",
1319 "events/WheelEvent.idl", 1328 "events/WheelEvent.idl",
1320 "html/canvas/WebGLContextEvent.idl", 1329 "html/canvas/WebGLContextEvent.idl",
1321 ], "abspath") 1330 ], "abspath")
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698