| 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 "AnimationTimeline.cpp", | |
| 24 "AnimationTimeline.h", | |
| 25 "BasicShapeInterpolationFunctions.cpp", | 23 "BasicShapeInterpolationFunctions.cpp", |
| 26 "BasicShapeInterpolationFunctions.h", | 24 "BasicShapeInterpolationFunctions.h", |
| 27 "BasicShapePropertyFunctions.h", | 25 "BasicShapePropertyFunctions.h", |
| 28 "BorderImageLengthBoxPropertyFunctions.h", | 26 "BorderImageLengthBoxPropertyFunctions.h", |
| 29 "CSSAngleInterpolationType.cpp", | 27 "CSSAngleInterpolationType.cpp", |
| 30 "CSSAngleInterpolationType.h", | 28 "CSSAngleInterpolationType.h", |
| 31 "CSSBasicShapeInterpolationType.cpp", | 29 "CSSBasicShapeInterpolationType.cpp", |
| 32 "CSSBasicShapeInterpolationType.h", | 30 "CSSBasicShapeInterpolationType.h", |
| 33 "CSSBorderImageLengthBoxInterpolationType.cpp", | 31 "CSSBorderImageLengthBoxInterpolationType.cpp", |
| 34 "CSSBorderImageLengthBoxInterpolationType.h", | 32 "CSSBorderImageLengthBoxInterpolationType.h", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 "CompositorMutatorImpl.h", | 100 "CompositorMutatorImpl.h", |
| 103 "CompositorPendingAnimations.cpp", | 101 "CompositorPendingAnimations.cpp", |
| 104 "CompositorPendingAnimations.h", | 102 "CompositorPendingAnimations.h", |
| 105 "CustomCompositorAnimationManager.cpp", | 103 "CustomCompositorAnimationManager.cpp", |
| 106 "CustomCompositorAnimationManager.h", | 104 "CustomCompositorAnimationManager.h", |
| 107 "CustomCompositorAnimations.cpp", | 105 "CustomCompositorAnimations.cpp", |
| 108 "CustomCompositorAnimations.h", | 106 "CustomCompositorAnimations.h", |
| 109 "DocumentAnimation.h", | 107 "DocumentAnimation.h", |
| 110 "DocumentAnimations.cpp", | 108 "DocumentAnimations.cpp", |
| 111 "DocumentAnimations.h", | 109 "DocumentAnimations.h", |
| 110 "DocumentTimeline.cpp", |
| 112 "DocumentTimeline.h", | 111 "DocumentTimeline.h", |
| 113 "EffectInput.cpp", | 112 "EffectInput.cpp", |
| 114 "EffectInput.h", | 113 "EffectInput.h", |
| 115 "EffectModel.h", | 114 "EffectModel.h", |
| 116 "EffectStack.cpp", | 115 "EffectStack.cpp", |
| 117 "EffectStack.h", | 116 "EffectStack.h", |
| 118 "ElementAnimation.h", | 117 "ElementAnimation.h", |
| 119 "ElementAnimations.cpp", | 118 "ElementAnimations.cpp", |
| 120 "ElementAnimations.h", | 119 "ElementAnimations.h", |
| 121 "FilterInterpolationFunctions.cpp", | 120 "FilterInterpolationFunctions.cpp", |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 "css/CSSTimingData.h", | 250 "css/CSSTimingData.h", |
| 252 "css/CSSTransitionData.cpp", | 251 "css/CSSTransitionData.cpp", |
| 253 "css/CSSTransitionData.h", | 252 "css/CSSTransitionData.h", |
| 254 ] | 253 ] |
| 255 | 254 |
| 256 configs += [ | 255 configs += [ |
| 257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 256 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 258 "//build/config/compiler:no_size_t_to_int_warning", | 257 "//build/config/compiler:no_size_t_to_int_warning", |
| 259 ] | 258 ] |
| 260 } | 259 } |
| OLD | NEW |