| 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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 "SVGPointListInterpolationType.cpp", | 198 "SVGPointListInterpolationType.cpp", |
| 199 "SVGPointListInterpolationType.h", | 199 "SVGPointListInterpolationType.h", |
| 200 "SVGRectInterpolationType.cpp", | 200 "SVGRectInterpolationType.cpp", |
| 201 "SVGRectInterpolationType.h", | 201 "SVGRectInterpolationType.h", |
| 202 "SVGTransformListInterpolationType.cpp", | 202 "SVGTransformListInterpolationType.cpp", |
| 203 "SVGTransformListInterpolationType.h", | 203 "SVGTransformListInterpolationType.h", |
| 204 "SVGValueInterpolationType.cpp", | 204 "SVGValueInterpolationType.cpp", |
| 205 "SVGValueInterpolationType.h", | 205 "SVGValueInterpolationType.h", |
| 206 "SampledEffect.cpp", | 206 "SampledEffect.cpp", |
| 207 "SampledEffect.h", | 207 "SampledEffect.h", |
| 208 "ScrollTimeline.cpp", |
| 209 "ScrollTimeline.h", |
| 208 "ShadowInterpolationFunctions.cpp", | 210 "ShadowInterpolationFunctions.cpp", |
| 209 "ShadowInterpolationFunctions.h", | 211 "ShadowInterpolationFunctions.h", |
| 210 "ShadowListPropertyFunctions.h", | 212 "ShadowListPropertyFunctions.h", |
| 211 "SideIndex.h", | 213 "SideIndex.h", |
| 212 "SizeInterpolationFunctions.cpp", | 214 "SizeInterpolationFunctions.cpp", |
| 213 "SizeInterpolationFunctions.h", | 215 "SizeInterpolationFunctions.h", |
| 214 "SizeListPropertyFunctions.cpp", | 216 "SizeListPropertyFunctions.cpp", |
| 215 "SizeListPropertyFunctions.h", | 217 "SizeListPropertyFunctions.h", |
| 216 "StringKeyframe.cpp", | 218 "StringKeyframe.cpp", |
| 217 "StringKeyframe.h", | 219 "StringKeyframe.h", |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "css/CSSTimingData.h", | 252 "css/CSSTimingData.h", |
| 251 "css/CSSTransitionData.cpp", | 253 "css/CSSTransitionData.cpp", |
| 252 "css/CSSTransitionData.h", | 254 "css/CSSTransitionData.h", |
| 253 ] | 255 ] |
| 254 | 256 |
| 255 configs += [ | 257 configs += [ |
| 256 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 258 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 257 "//build/config/compiler:no_size_t_to_int_warning", | 259 "//build/config/compiler:no_size_t_to_int_warning", |
| 258 ] | 260 ] |
| 259 } | 261 } |
| OLD | NEW |