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

Side by Side Diff: third_party/WebKit/Source/core/animation/BUILD.gn

Issue 2345543002: debugging for crbug.com/646539
Patch Set: 3 TUs, 2 .h Created 4 years, 3 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 | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/css/BUILD.gn » ('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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 import("//third_party/WebKit/Source/core/core.gni") 5 import("//third_party/WebKit/Source/core/core.gni")
6 6
7 blink_core_sources("animation") { 7 blink_core_sources("animation") {
8 split_count = 5 8 #split_count = 5
9 9
10 sources = [ 10 sources = [
11 "Animation.cpp",
12 "Animation.h",
13 "AnimationClock.cpp",
14 "AnimationClock.h",
15 "AnimationEffectReadOnly.cpp",
16 "AnimationEffectReadOnly.h",
17 "AnimationEffectTiming.cpp",
18 "AnimationEffectTiming.h",
19 "AnimationInputHelpers.cpp",
20 "AnimationInputHelpers.h",
21 "AnimationStack.cpp",
22 "AnimationStack.h",
23 "AnimationTimeline.cpp",
24 "AnimationTimeline.h",
25 "BasicShapeInterpolationFunctions.cpp",
26 "BasicShapeInterpolationFunctions.h",
27 "BorderImageLengthBoxPropertyFunctions.h",
28 "CSSBasicShapeInterpolationType.cpp",
29 "CSSBasicShapeInterpolationType.h",
30 "CSSBorderImageLengthBoxInterpolationType.cpp",
31 "CSSBorderImageLengthBoxInterpolationType.h",
32 "CSSClipInterpolationType.cpp",
33 "CSSClipInterpolationType.h",
34 "CSSColorInterpolationType.cpp",
35 "CSSColorInterpolationType.h",
36 "CSSFilterListInterpolationType.cpp",
37 "CSSFilterListInterpolationType.h",
38 "CSSFontSizeInterpolationType.cpp",
39 "CSSFontSizeInterpolationType.h",
40 "CSSFontWeightInterpolationType.cpp",
41 "CSSFontWeightInterpolationType.h",
42 "CSSImageInterpolationType.cpp",
43 "CSSImageInterpolationType.h",
44 "CSSImageListInterpolationType.cpp",
45 "CSSImageListInterpolationType.h",
46 "CSSImageSliceInterpolationType.cpp",
47 "CSSImageSliceInterpolationType.h",
48 "CSSInterpolationType.cpp",
49 "CSSInterpolationType.h",
50 "CSSLengthInterpolationType.cpp",
51 "CSSLengthInterpolationType.h",
52 "CSSLengthListInterpolationType.cpp",
53 "CSSLengthListInterpolationType.h",
54 "CSSLengthPairInterpolationType.h",
55 "CSSMotionRotationInterpolationType.cpp",
56 "CSSMotionRotationInterpolationType.h",
57 "CSSNumberInterpolationType.cpp",
58 "CSSNumberInterpolationType.h",
59 "CSSPaintInterpolationType.cpp",
60 "CSSPaintInterpolationType.h",
61 "CSSPathInterpolationType.cpp",
62 "CSSPathInterpolationType.h",
63 "CSSPositionAxisListInterpolationType.cpp",
64 "CSSPositionAxisListInterpolationType.h",
65 "CSSPositionInterpolationType.h",
66 "CSSRotateInterpolationType.cpp",
67 "CSSRotateInterpolationType.h",
68 "CSSScaleInterpolationType.cpp",
69 "CSSScaleInterpolationType.h",
70 "CSSShadowListInterpolationType.cpp",
71 "CSSShadowListInterpolationType.h",
72 "CSSSizeListInterpolationType.cpp",
73 "CSSSizeListInterpolationType.h",
74 "CSSTextIndentInterpolationType.cpp",
75 "CSSTextIndentInterpolationType.h",
76 "CSSTransformInterpolationType.cpp",
77 "CSSTransformInterpolationType.h",
78 "CSSTransformOriginInterpolationType.h",
79 "CSSTranslateInterpolationType.cpp",
80 "CSSTranslateInterpolationType.h",
81 "CSSValueInterpolationType.cpp",
82 "CSSValueInterpolationType.h",
83 "CSSVisibilityInterpolationType.cpp",
84 "CSSVisibilityInterpolationType.h",
85 "ColorPropertyFunctions.cpp",
86 "ColorPropertyFunctions.h",
87 "CompositorAnimations.cpp",
88 "CompositorAnimations.h",
89 "CompositorPendingAnimations.cpp",
90 "CompositorPendingAnimations.h",
91 "CustomCompositorAnimationManager.cpp",
92 "CustomCompositorAnimationManager.h",
93 "CustomCompositorAnimations.cpp",
94 "CustomCompositorAnimations.h",
95 "DocumentAnimation.h",
96 "DocumentAnimations.cpp",
97 "DocumentAnimations.h",
98 "DocumentTimeline.h",
99 "EffectInput.cpp",
100 "EffectInput.h",
101 "EffectModel.h",
102 "ElementAnimation.h",
103 "ElementAnimations.cpp",
104 "ElementAnimations.h",
105 "FilterInterpolationFunctions.cpp",
106 "FilterInterpolationFunctions.h",
107 "FilterListPropertyFunctions.h",
108 "ImageListPropertyFunctions.h",
109 "ImagePropertyFunctions.h",
110 "ImageSlicePropertyFunctions.h",
111 "InertEffect.cpp",
112 "InertEffect.h",
113 "InterpolableValue.cpp",
114 "InterpolableValue.h",
115 "Interpolation.cpp",
116 "Interpolation.h",
117 "InterpolationEffect.cpp",
118 "InterpolationEffect.h",
119 "InterpolationType.h",
120 "InterpolationValue.h",
121 "InvalidatableInterpolation.cpp",
122 "InvalidatableInterpolation.h",
123 "Keyframe.cpp",
124 "Keyframe.h",
125 "KeyframeEffect.cpp",
126 "KeyframeEffect.h",
127 "KeyframeEffectModel.cpp",
128 "KeyframeEffectModel.h",
129 "LegacyStyleInterpolation.h",
130 "LengthInterpolationFunctions.cpp",
131 "LengthInterpolationFunctions.h",
132 "LengthListPropertyFunctions.cpp",
133 "LengthListPropertyFunctions.h",
134 "LengthPropertyFunctions.cpp",
135 "LengthPropertyFunctions.h",
136 "LengthUnitsChecker.h",
137 "ListInterpolationFunctions.cpp",
138 "ListInterpolationFunctions.h",
139 "NonInterpolableValue.h",
140 "NumberAttributeFunctions.h",
141 "NumberPropertyFunctions.cpp",
142 "NumberPropertyFunctions.h",
143 "PaintPropertyFunctions.cpp",
144 "PaintPropertyFunctions.h",
145 "PairwiseInterpolationValue.h",
146 "PathInterpolationFunctions.cpp",
147 "PathInterpolationFunctions.h",
148 "PrimitiveInterpolation.h",
149 "PropertyHandle.cpp",
150 "PropertyHandle.h",
151 "PropertyInterpolationTypesMapping.cpp",
152 "PropertyInterpolationTypesMapping.h",
153 "SVGAngleInterpolationType.cpp",
154 "SVGAngleInterpolationType.h",
155 "SVGIntegerInterpolationType.cpp",
156 "SVGIntegerInterpolationType.h",
157 "SVGIntegerOptionalIntegerInterpolationType.cpp",
158 "SVGIntegerOptionalIntegerInterpolationType.h",
159 "SVGInterpolationType.cpp",
160 "SVGInterpolationType.h",
161 "SVGLengthInterpolationType.cpp",
162 "SVGLengthInterpolationType.h",
163 "SVGLengthListInterpolationType.cpp",
164 "SVGLengthListInterpolationType.h",
165 "SVGNumberInterpolationType.cpp",
166 "SVGNumberInterpolationType.h",
167 "SVGNumberListInterpolationType.cpp",
168 "SVGNumberListInterpolationType.h",
169 "SVGNumberOptionalNumberInterpolationType.cpp",
170 "SVGNumberOptionalNumberInterpolationType.h",
171 "SVGPathInterpolationType.cpp",
172 "SVGPathInterpolationType.h",
173 "SVGPathSegInterpolationFunctions.cpp",
174 "SVGPathSegInterpolationFunctions.h",
175 "SVGPointListInterpolationType.cpp",
176 "SVGPointListInterpolationType.h",
177 "SVGRectInterpolationType.cpp",
178 "SVGRectInterpolationType.h",
179 "SVGTransformListInterpolationType.cpp",
180 "SVGTransformListInterpolationType.h",
181 "SVGValueInterpolationType.cpp",
182 "SVGValueInterpolationType.h",
183 "SampledEffect.cpp",
184 "SampledEffect.h",
185 "ShadowInterpolationFunctions.cpp",
186 "ShadowInterpolationFunctions.h",
187 "SizeInterpolationFunctions.cpp",
188 "SizeInterpolationFunctions.h",
189 "SizeListPropertyFunctions.cpp",
190 "SizeListPropertyFunctions.h",
191 "StringKeyframe.cpp",
192 "StringKeyframe.h",
193 "StyleInterpolation.h",
194 "Timing.cpp",
195 "Timing.h",
196 "TimingCalculations.h",
197 "TimingInput.cpp",
198 "TimingInput.h",
199 "TypedInterpolationValue.h",
200 "UnderlyingValueOwner.cpp",
201 "UnderlyingValueOwner.h",
202 "animatable/AnimatableClipPathOperation.cpp",
203 "animatable/AnimatableClipPathOperation.h",
204 "animatable/AnimatableColor.cpp",
205 "animatable/AnimatableColor.h",
206 "animatable/AnimatableDouble.cpp",
207 "animatable/AnimatableDouble.h",
208 "animatable/AnimatableDoubleAndBool.cpp",
209 "animatable/AnimatableDoubleAndBool.h",
210 "animatable/AnimatableFilterOperations.cpp",
211 "animatable/AnimatableFilterOperations.h",
212 "animatable/AnimatableImage.cpp",
213 "animatable/AnimatableImage.h",
214 "animatable/AnimatableLength.cpp",
215 "animatable/AnimatableLength.h",
216 "animatable/AnimatableLengthBox.cpp",
217 "animatable/AnimatableLengthBox.h",
218 "animatable/AnimatableLengthBoxAndBool.cpp",
219 "animatable/AnimatableLengthBoxAndBool.h",
220 "animatable/AnimatableLengthPoint.cpp",
221 "animatable/AnimatableLengthPoint.h",
222 "animatable/AnimatableLengthPoint3D.cpp",
223 "animatable/AnimatableLengthPoint3D.h",
224 "animatable/AnimatableLengthSize.cpp",
225 "animatable/AnimatableLengthSize.h",
226 "animatable/AnimatableNeutral.h",
227 "animatable/AnimatablePath.cpp",
228 "animatable/AnimatablePath.h",
229 "animatable/AnimatableRepeatable.cpp",
230 "animatable/AnimatableRepeatable.h",
231 "animatable/AnimatableSVGPaint.cpp",
232 "animatable/AnimatableSVGPaint.h",
233 "animatable/AnimatableShadow.cpp",
234 "animatable/AnimatableShadow.h",
235 "animatable/AnimatableShapeValue.cpp",
236 "animatable/AnimatableShapeValue.h",
237 "animatable/AnimatableStrokeDasharrayList.cpp",
238 "animatable/AnimatableStrokeDasharrayList.h",
239 "animatable/AnimatableTransform.cpp",
240 "animatable/AnimatableTransform.h",
241 "animatable/AnimatableUnknown.h",
242 "animatable/AnimatableValue.cpp",
243 "animatable/AnimatableValue.h",
244 "animatable/AnimatableValueKeyframe.cpp",
245 "animatable/AnimatableValueKeyframe.h",
246 "animatable/AnimatableVisibility.cpp",
247 "animatable/AnimatableVisibility.h",
248 "css/CSSAnimatableValueFactory.cpp",
249 "css/CSSAnimatableValueFactory.h",
250 "css/CSSAnimationData.cpp", 11 "css/CSSAnimationData.cpp",
251 "css/CSSAnimationData.h", 12 "css/CSSAnimationData.h",
252 "css/CSSAnimationUpdate.h", 13
253 "css/CSSAnimations.cpp",
254 "css/CSSAnimations.h",
255 "css/CSSTimingData.cpp", 14 "css/CSSTimingData.cpp",
256 "css/CSSTimingData.h", 15 "css/CSSTimingData.h",
16
257 "css/CSSTransitionData.cpp", 17 "css/CSSTransitionData.cpp",
258 "css/CSSTransitionData.h", 18 "css/CSSTransitionData.h",
259 ] 19 ]
260 20
261 configs += [ 21 configs += [
262 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 22 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
263 "//build/config/compiler:no_size_t_to_int_warning", 23 "//build/config/compiler:no_size_t_to_int_warning",
264 ] 24 ]
265 } 25 }
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/BUILD.gn ('k') | third_party/WebKit/Source/core/css/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698