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

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

Issue 2650133002: Add TransitionInterpolation class for CSS Transition refactor (Closed)
Patch Set: lint Created 3 years, 10 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 | « no previous file | third_party/WebKit/Source/core/animation/InterpolableValue.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 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 = [
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "ImageListPropertyFunctions.h", 112 "ImageListPropertyFunctions.h",
113 "ImagePropertyFunctions.h", 113 "ImagePropertyFunctions.h",
114 "ImageSlicePropertyFunctions.h", 114 "ImageSlicePropertyFunctions.h",
115 "InertEffect.cpp", 115 "InertEffect.cpp",
116 "InertEffect.h", 116 "InertEffect.h",
117 "InterpolableValue.cpp", 117 "InterpolableValue.cpp",
118 "InterpolableValue.h", 118 "InterpolableValue.h",
119 "Interpolation.h", 119 "Interpolation.h",
120 "InterpolationEffect.cpp", 120 "InterpolationEffect.cpp",
121 "InterpolationEffect.h", 121 "InterpolationEffect.h",
122 "InterpolationEnvironment.h",
122 "InterpolationType.h", 123 "InterpolationType.h",
123 "InterpolationTypesMap.h", 124 "InterpolationTypesMap.h",
124 "InterpolationValue.h", 125 "InterpolationValue.h",
125 "InvalidatableInterpolation.cpp", 126 "InvalidatableInterpolation.cpp",
126 "InvalidatableInterpolation.h", 127 "InvalidatableInterpolation.h",
127 "Keyframe.cpp", 128 "Keyframe.cpp",
128 "Keyframe.h", 129 "Keyframe.h",
129 "KeyframeEffect.cpp", 130 "KeyframeEffect.cpp",
130 "KeyframeEffect.h", 131 "KeyframeEffect.h",
131 "KeyframeEffectModel.cpp", 132 "KeyframeEffectModel.cpp",
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "SizeInterpolationFunctions.h", 196 "SizeInterpolationFunctions.h",
196 "SizeListPropertyFunctions.cpp", 197 "SizeListPropertyFunctions.cpp",
197 "SizeListPropertyFunctions.h", 198 "SizeListPropertyFunctions.h",
198 "StringKeyframe.cpp", 199 "StringKeyframe.cpp",
199 "StringKeyframe.h", 200 "StringKeyframe.h",
200 "Timing.cpp", 201 "Timing.cpp",
201 "Timing.h", 202 "Timing.h",
202 "TimingCalculations.h", 203 "TimingCalculations.h",
203 "TimingInput.cpp", 204 "TimingInput.cpp",
204 "TimingInput.h", 205 "TimingInput.h",
206 "TransitionInterpolation.cpp",
207 "TransitionInterpolation.h",
205 "TypedInterpolationValue.h", 208 "TypedInterpolationValue.h",
206 "UnderlyingValueOwner.cpp", 209 "UnderlyingValueOwner.cpp",
207 "UnderlyingValueOwner.h", 210 "UnderlyingValueOwner.h",
208 "animatable/AnimatableClipPathOperation.cpp", 211 "animatable/AnimatableClipPathOperation.cpp",
209 "animatable/AnimatableClipPathOperation.h", 212 "animatable/AnimatableClipPathOperation.h",
210 "animatable/AnimatableColor.cpp", 213 "animatable/AnimatableColor.cpp",
211 "animatable/AnimatableColor.h", 214 "animatable/AnimatableColor.h",
212 "animatable/AnimatableDouble.cpp", 215 "animatable/AnimatableDouble.cpp",
213 "animatable/AnimatableDouble.h", 216 "animatable/AnimatableDouble.h",
214 "animatable/AnimatableDoubleAndBool.cpp", 217 "animatable/AnimatableDoubleAndBool.cpp",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 "css/CSSTimingData.h", 265 "css/CSSTimingData.h",
263 "css/CSSTransitionData.cpp", 266 "css/CSSTransitionData.cpp",
264 "css/CSSTransitionData.h", 267 "css/CSSTransitionData.h",
265 ] 268 ]
266 269
267 configs += [ 270 configs += [
268 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 271 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
269 "//build/config/compiler:no_size_t_to_int_warning", 272 "//build/config/compiler:no_size_t_to_int_warning",
270 ] 273 ]
271 } 274 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/animation/InterpolableValue.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698