| 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 = [ |
| 11 "Animation.cpp", | 11 "Animation.cpp", |
| 12 "Animation.h", | 12 "Animation.h", |
| 13 "AnimationClock.cpp", | 13 "AnimationClock.cpp", |
| 14 "AnimationClock.h", | 14 "AnimationClock.h", |
| 15 "AnimationEffectReadOnly.cpp", | 15 "AnimationEffectReadOnly.cpp", |
| 16 "AnimationEffectReadOnly.h", | 16 "AnimationEffectReadOnly.h", |
| 17 "AnimationEffectTiming.cpp", | 17 "AnimationEffectTiming.cpp", |
| 18 "AnimationEffectTiming.h", | 18 "AnimationEffectTiming.h", |
| 19 "AnimationEffectTimingReadOnly.cpp", | 19 "AnimationEffectTimingReadOnly.cpp", |
| 20 "AnimationEffectTimingReadOnly.h", | 20 "AnimationEffectTimingReadOnly.h", |
| 21 "AnimationInputHelpers.cpp", | 21 "AnimationInputHelpers.cpp", |
| 22 "AnimationInputHelpers.h", | 22 "AnimationInputHelpers.h", |
| 23 "AnimationStack.cpp", | |
| 24 "AnimationStack.h", | |
| 25 "AnimationTimeline.cpp", | 23 "AnimationTimeline.cpp", |
| 26 "AnimationTimeline.h", | 24 "AnimationTimeline.h", |
| 27 "BasicShapeInterpolationFunctions.cpp", | 25 "BasicShapeInterpolationFunctions.cpp", |
| 28 "BasicShapeInterpolationFunctions.h", | 26 "BasicShapeInterpolationFunctions.h", |
| 29 "BorderImageLengthBoxPropertyFunctions.h", | 27 "BorderImageLengthBoxPropertyFunctions.h", |
| 30 "CSSBasicShapeInterpolationType.cpp", | 28 "CSSBasicShapeInterpolationType.cpp", |
| 31 "CSSBasicShapeInterpolationType.h", | 29 "CSSBasicShapeInterpolationType.h", |
| 32 "CSSBorderImageLengthBoxInterpolationType.cpp", | 30 "CSSBorderImageLengthBoxInterpolationType.cpp", |
| 33 "CSSBorderImageLengthBoxInterpolationType.h", | 31 "CSSBorderImageLengthBoxInterpolationType.h", |
| 34 "CSSClipInterpolationType.cpp", | 32 "CSSClipInterpolationType.cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 "CustomCompositorAnimationManager.h", | 92 "CustomCompositorAnimationManager.h", |
| 95 "CustomCompositorAnimations.cpp", | 93 "CustomCompositorAnimations.cpp", |
| 96 "CustomCompositorAnimations.h", | 94 "CustomCompositorAnimations.h", |
| 97 "DocumentAnimation.h", | 95 "DocumentAnimation.h", |
| 98 "DocumentAnimations.cpp", | 96 "DocumentAnimations.cpp", |
| 99 "DocumentAnimations.h", | 97 "DocumentAnimations.h", |
| 100 "DocumentTimeline.h", | 98 "DocumentTimeline.h", |
| 101 "EffectInput.cpp", | 99 "EffectInput.cpp", |
| 102 "EffectInput.h", | 100 "EffectInput.h", |
| 103 "EffectModel.h", | 101 "EffectModel.h", |
| 102 "EffectStack.cpp", |
| 103 "EffectStack.h", |
| 104 "ElementAnimation.h", | 104 "ElementAnimation.h", |
| 105 "ElementAnimations.cpp", | 105 "ElementAnimations.cpp", |
| 106 "ElementAnimations.h", | 106 "ElementAnimations.h", |
| 107 "FilterInterpolationFunctions.cpp", | 107 "FilterInterpolationFunctions.cpp", |
| 108 "FilterInterpolationFunctions.h", | 108 "FilterInterpolationFunctions.h", |
| 109 "FilterListPropertyFunctions.h", | 109 "FilterListPropertyFunctions.h", |
| 110 "ImageListPropertyFunctions.h", | 110 "ImageListPropertyFunctions.h", |
| 111 "ImagePropertyFunctions.h", | 111 "ImagePropertyFunctions.h", |
| 112 "ImageSlicePropertyFunctions.h", | 112 "ImageSlicePropertyFunctions.h", |
| 113 "InertEffect.cpp", | 113 "InertEffect.cpp", |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 "css/CSSTimingData.h", | 260 "css/CSSTimingData.h", |
| 261 "css/CSSTransitionData.cpp", | 261 "css/CSSTransitionData.cpp", |
| 262 "css/CSSTransitionData.h", | 262 "css/CSSTransitionData.h", |
| 263 ] | 263 ] |
| 264 | 264 |
| 265 configs += [ | 265 configs += [ |
| 266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 266 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 267 "//build/config/compiler:no_size_t_to_int_warning", | 267 "//build/config/compiler:no_size_t_to_int_warning", |
| 268 ] | 268 ] |
| 269 } | 269 } |
| OLD | NEW |