| 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "InterpolationValue.h", | 119 "InterpolationValue.h", |
| 120 "InvalidatableInterpolation.cpp", | 120 "InvalidatableInterpolation.cpp", |
| 121 "InvalidatableInterpolation.h", | 121 "InvalidatableInterpolation.h", |
| 122 "Keyframe.cpp", | 122 "Keyframe.cpp", |
| 123 "Keyframe.h", | 123 "Keyframe.h", |
| 124 "KeyframeEffect.cpp", | 124 "KeyframeEffect.cpp", |
| 125 "KeyframeEffect.h", | 125 "KeyframeEffect.h", |
| 126 "KeyframeEffectModel.cpp", | 126 "KeyframeEffectModel.cpp", |
| 127 "KeyframeEffectModel.h", | 127 "KeyframeEffectModel.h", |
| 128 "LegacyStyleInterpolation.h", | 128 "LegacyStyleInterpolation.h", |
| 129 "LengthInterpolationFunctions.cpp", |
| 130 "LengthInterpolationFunctions.h", |
| 129 "LengthListPropertyFunctions.cpp", | 131 "LengthListPropertyFunctions.cpp", |
| 130 "LengthListPropertyFunctions.h", | 132 "LengthListPropertyFunctions.h", |
| 131 "LengthPropertyFunctions.cpp", | 133 "LengthPropertyFunctions.cpp", |
| 132 "LengthPropertyFunctions.h", | 134 "LengthPropertyFunctions.h", |
| 133 "LengthUnitsChecker.h", | 135 "LengthUnitsChecker.h", |
| 134 "ListInterpolationFunctions.cpp", | 136 "ListInterpolationFunctions.cpp", |
| 135 "ListInterpolationFunctions.h", | 137 "ListInterpolationFunctions.h", |
| 136 "NonInterpolableValue.h", | 138 "NonInterpolableValue.h", |
| 137 "NumberAttributeFunctions.h", | 139 "NumberAttributeFunctions.h", |
| 138 "NumberPropertyFunctions.cpp", | 140 "NumberPropertyFunctions.cpp", |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 "css/CSSTimingData.h", | 251 "css/CSSTimingData.h", |
| 250 "css/CSSTransitionData.cpp", | 252 "css/CSSTransitionData.cpp", |
| 251 "css/CSSTransitionData.h", | 253 "css/CSSTransitionData.h", |
| 252 ] | 254 ] |
| 253 | 255 |
| 254 configs += [ | 256 configs += [ |
| 255 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 257 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 256 "//build/config/compiler:no_size_t_to_int_warning", | 258 "//build/config/compiler:no_size_t_to_int_warning", |
| 257 ] | 259 ] |
| 258 } | 260 } |
| OLD | NEW |