| OLD | NEW |
| 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 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 "TimingInput.cpp", | 225 "TimingInput.cpp", |
| 226 "TimingInput.h", | 226 "TimingInput.h", |
| 227 "TransitionInterpolation.cpp", | 227 "TransitionInterpolation.cpp", |
| 228 "TransitionInterpolation.h", | 228 "TransitionInterpolation.h", |
| 229 "TransitionKeyframe.cpp", | 229 "TransitionKeyframe.cpp", |
| 230 "TransitionKeyframe.h", | 230 "TransitionKeyframe.h", |
| 231 "TypedInterpolationValue.h", | 231 "TypedInterpolationValue.h", |
| 232 "UnderlyingLengthChecker.h", | 232 "UnderlyingLengthChecker.h", |
| 233 "UnderlyingValueOwner.cpp", | 233 "UnderlyingValueOwner.cpp", |
| 234 "UnderlyingValueOwner.h", | 234 "UnderlyingValueOwner.h", |
| 235 "WorkletAnimationBase.h", |
| 236 "WorkletAnimationController.cpp", |
| 237 "WorkletAnimationController.h", |
| 235 "animatable/AnimatableDouble.cpp", | 238 "animatable/AnimatableDouble.cpp", |
| 236 "animatable/AnimatableDouble.h", | 239 "animatable/AnimatableDouble.h", |
| 237 "animatable/AnimatableFilterOperations.cpp", | 240 "animatable/AnimatableFilterOperations.cpp", |
| 238 "animatable/AnimatableFilterOperations.h", | 241 "animatable/AnimatableFilterOperations.h", |
| 239 "animatable/AnimatableTransform.cpp", | 242 "animatable/AnimatableTransform.cpp", |
| 240 "animatable/AnimatableTransform.h", | 243 "animatable/AnimatableTransform.h", |
| 241 "animatable/AnimatableUnknown.h", | 244 "animatable/AnimatableUnknown.h", |
| 242 "animatable/AnimatableValue.cpp", | 245 "animatable/AnimatableValue.cpp", |
| 243 "animatable/AnimatableValue.h", | 246 "animatable/AnimatableValue.h", |
| 244 "animatable/AnimatableValueKeyframe.cpp", | 247 "animatable/AnimatableValueKeyframe.cpp", |
| 245 "animatable/AnimatableValueKeyframe.h", | 248 "animatable/AnimatableValueKeyframe.h", |
| 246 "css/CSSAnimatableValueFactory.cpp", | 249 "css/CSSAnimatableValueFactory.cpp", |
| 247 "css/CSSAnimatableValueFactory.h", | 250 "css/CSSAnimatableValueFactory.h", |
| 248 "css/CSSAnimationData.cpp", | 251 "css/CSSAnimationData.cpp", |
| 249 "css/CSSAnimationData.h", | 252 "css/CSSAnimationData.h", |
| 250 "css/CSSAnimationUpdate.h", | 253 "css/CSSAnimationUpdate.h", |
| 251 "css/CSSAnimations.cpp", | 254 "css/CSSAnimations.cpp", |
| 252 "css/CSSAnimations.h", | 255 "css/CSSAnimations.h", |
| 253 "css/CSSTimingData.cpp", | 256 "css/CSSTimingData.cpp", |
| 254 "css/CSSTimingData.h", | 257 "css/CSSTimingData.h", |
| 255 "css/CSSTransitionData.cpp", | 258 "css/CSSTransitionData.cpp", |
| 256 "css/CSSTransitionData.h", | 259 "css/CSSTransitionData.h", |
| 257 ] | 260 ] |
| 258 | 261 |
| 259 configs += [ | 262 configs += [ |
| 260 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 263 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 261 "//build/config/compiler:no_size_t_to_int_warning", | 264 "//build/config/compiler:no_size_t_to_int_warning", |
| 262 ] | 265 ] |
| 263 } | 266 } |
| OLD | NEW |