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